ISM_MAP2I_008_CONTRACT_ASS2ASS is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name ISM_MAP2I_008_CONTRACT_ASS2ASS into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
JHWA2
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ISM_MAP2I_008_CONTRACT_ASS2ASS' "IS-M: bapibusism008_contract_ass -> rjhvabruf
EXPORTING
bapibusism008_contract_ass = " bapibusism008_contract_ass
CHANGING
rjhvabruf_plus_tmp_key = " rjhvabruf_plus_tmp_key
EXCEPTIONS
ERROR_CONVERTING_ISO_CODE = 1 "
ERROR_CONVERTING_CURR_AMOUNT = 2 "
. " ISM_MAP2I_008_CONTRACT_ASS2ASS
The ABAP code below is a full code listing to execute function module ISM_MAP2I_008_CONTRACT_ASS2ASS including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
DATA(ld_rjhvabruf_plus_tmp_key) = 'Check type of data required'.
DATA(ld_bapibusism008_contract_ass) = 'Check type of data required'. . CALL FUNCTION 'ISM_MAP2I_008_CONTRACT_ASS2ASS' EXPORTING bapibusism008_contract_ass = ld_bapibusism008_contract_ass CHANGING rjhvabruf_plus_tmp_key = ld_rjhvabruf_plus_tmp_key EXCEPTIONS ERROR_CONVERTING_ISO_CODE = 1 ERROR_CONVERTING_CURR_AMOUNT = 2 . " ISM_MAP2I_008_CONTRACT_ASS2ASS
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ELSEIF SY-SUBRC EQ 2. "Exception "Add code for exception here ENDIF.
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_rjhvabruf_plus_tmp_key | TYPE RJHVABRUF_PLUS_TMP_KEY , |
| ld_bapibusism008_contract_ass | TYPE BAPIBUSISM008_CONTRACT_ASS . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name ISM_MAP2I_008_CONTRACT_ASS2ASS or its description.
ISM_MAP2I_008_CONTRACT_ASS2ASS - IS-M: bapibusism008_contract_ass -> rjhvabruf ISM_MAP2I_008_CONTCOMP_ASS2IKZ - IS-M: Mapp. bapibusism008_contcomp_ass -> rjhaikz ISM_MAP2I_008_COMPLAINT2RKLTMP - bapibusism008_complaint -> rjharekl_plus_tmp_key ISM_MAP2I_008_BU2BPZ - IS-M: Mapping bapibusism008_bu_ass -> rjhabpz ISM_MAP2I_008_BP_ASS2GPZ_TMP - IS-M: bapibusism008_bp_ass -> rjhagpz_plus_tmp_key ISM_MAP2I_008_BP_ASS2GPZ - IS-M: Mapping bapibusism008_bp_ass -> rjhagpz