Hello everyone,
I met a dump when I run SPAM.
I would like to update the version of the SPAM. It takes long time during importing process. so I stop the transaction to run again and then this dump shows up.
I have update the kernel to release 7.2.1 and tried to fix it. But it still can not work. It is a little depressing. I am in the middle of the EHP6 upgrade by SUM. I don't want to re-install the system.:( please have a look at the attachment to see if you have any ideas about it. Thank you in advance
MORE info:
I checked SPAM by SE80 and I found the IV_BUFFERED parameter which has been mentioned in dump is missing in Export tab.
Runtime Errors CALL_FUNCTION_PARM_UNKNOWN
Except. CX_SY_DYN_CALL_PARAM_NOT_FOUND
Date and Time 23.07.2013 10:18:19
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Short text |
| Function parameter "IV_BUFFERED" is unknown. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|What happened? |
| Error in the ABAP Application Program |
| |
| The current ABAP program "CL_OCS_ENVIRONMENT============CP" had to be |
| terminated because it has |
| come across a statement that unfortunately cannot be executed. |
| |
| Function module "OCS_GET_INSTALLED_COMPS" was called |
| with the parameter "IV_BUFFERED". |
| This parameter is not defined. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Error analysis |
| An exception occurred that is explained in detail below. |
| The exception, which is assigned to class 'CX_SY_DYN_CALL_PARAM_NOT_FOUND', was |
| not caught in |
| procedure "SET_CURRENT_ENVIRONMENT" "(METHOD)", nor was it propagated by a |
| RAISING clause. |
| Since the caller of the procedure could not have anticipated that the |
| exception would occur, the current program is terminated. |
| The reason for the exception is: |
| Function module "OCS_GET_INSTALLED_COMPS" was called |
| with the parameter "IV_BUFFERED". |
| This parameter is not defined. |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Missing RAISING Clause in Interface |
| Program CL_OCS_ENVIRONMENT============CP |
| Include CL_OCS_ENVIRONMENT============CM002 |
| Row 1 |
| Module type (METHOD) |
| Module Name SET_CURRENT_ENVIRONMENT |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Trigger Location of Exception |
| Program CL_OCS_ENVIRONMENT============CP |
| Include CL_OCS_ENVIRONMENT============CM002 |
| Row 44 |
| Module type (METHOD) |
| Module Name SET_CURRENT_ENVIRONMENT |
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------
|Source Code Extract |
----------------------------------------------------------------------------------------------------
|Line |SourceCde |
----------------------------------------------------------------------------------------------------
| 14| |
| 15| FIELD-SYMBOLS: <fs_component> TYPE comp_props. |
| 16| |
| 17| CLEAR: lv_upgdate, lv_upgtime. |
| 18| |
| 19| REFRESH t_saprl_sel. |
| 20| saprl = sy-saprl. |
| 21| ls_saprl_sel-sign = 'I'. |
| 22| ls_saprl_sel-option = 'EQ'. |
| 23| ls_saprl_sel-low = saprl. |
| 24| APPEND ls_saprl_sel TO t_saprl_sel. |
| 25| |
| 26| valid_maint_cert = on. |
| 27| |
| 28| CALL FUNCTION 'UPG_IS_SHADOW_SYSTEM' |
| 29| IMPORTING |
| 30| ev_shadow = is_shd_sys. |
| 31| |
| 32| CALL FUNCTION 'SPAM_VERSION' |
| 33| EXPORTING |
| 34| iv_current_system = on |
| 35| IMPORTING |
| 36| version = spam_version. |
| 37| |
| 38| REFRESH t_pat06. |
| 39| SELECT * FROM pat06 INTO TABLE t_pat06. |
| 40| SORT t_pat06 BY component patch_type. |
| 41| DELETE ADJACENT DUPLICATES FROM t_pat06 COMPARING component. |
| 42| |
| 43|* software component description |
|>>>>>| CALL FUNCTION 'OCS_GET_INSTALLED_COMPS' |
| 45| EXPORTING |
| 46| iv_buffered = iv_buffered |
| 47| TABLES |
| 48| tt_comptab = t_cvers |
| 49| et_components = t_components |
| 50| et_complayer = t_comp_layer |
| 51| et_cvers_sub = t_cvers_sub |
| 52| EXCEPTIONS |
| 53| no_release_found = 1 |
| 54| wrong_release = 2 |
| 55| OTHERS = 99. |
| 56| IF sy-subrc <> 0 AND |
| 57| iv_ignore_errors <> on. |
| 58| MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno |
| 59| WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 |
| 60| RAISING internal_error. |
| 61| ENDIF. |
| 62| |
| 63|* Software components which are controlled by SWF |
----------------------------------------------------------------------------------------------------