ICL_SUBROGATION_CREATE 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 ICL_SUBROGATION_CREATE into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
ICL_CF_EXT_SBR1
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'ICL_SUBROGATION_CREATE' "Generates New Subrogation Entry
* EXPORTING
* i_active = ISCM_ACTIVE " icl_active Table Entry Is Active (A) or in Suspense (S)
* i_claim = SPACE " icl_claim Claim Number
* i_subclaim = SPACE " icl_subcl Subclaim
* i_subro = SPACE " icl_payment Claim Payment
* i_subsal = SPACE " icl_subsal
* i_curr = SPACE " icl_paymentcur
* i_status = ISCM_PSTAT_CREATED " icl_payment12
* i_method = SPACE " icl_payment01
* i_liabrate = 0 " icl_liabrate_neg Negotiated liability rate in percent
* i_guiltrate = 100 " icl_guiltrate Liability Rate
* i_xintracompany = SPACE " icl_intracompany
* i_subrostatus = SPACE " icl_subrostatus Legal Status of Subrogation
* i_xnoins = SPACE " icl_xnoins
* i_duedate = SY-DATUM " icl_duedatenet Due Date for Net Payment
IMPORTING
es_subrogation_header = " iicl_subrogation_header Subrogation/Recovery Money Request: Header Data
. " ICL_SUBROGATION_CREATE
The ABAP code below is a full code listing to execute function module ICL_SUBROGATION_CREATE 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).
| ld_es_subrogation_header | TYPE IICL_SUBROGATION_HEADER . |
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_es_subrogation_header | TYPE IICL_SUBROGATION_HEADER , |
| ld_i_active | TYPE ICL_ACTIVE , |
| ld_i_claim | TYPE ICL_CLAIM , |
| ld_i_subclaim | TYPE ICL_SUBCL , |
| ld_i_subro | TYPE ICL_PAYMENT , |
| ld_i_subsal | TYPE ICL_SUBSAL , |
| ld_i_curr | TYPE ICL_PAYMENTCUR , |
| ld_i_status | TYPE ICL_PAYMENT12 , |
| ld_i_method | TYPE ICL_PAYMENT01 , |
| ld_i_liabrate | TYPE ICL_LIABRATE_NEG , |
| ld_i_guiltrate | TYPE ICL_GUILTRATE , |
| ld_i_xintracompany | TYPE ICL_INTRACOMPANY , |
| ld_i_subrostatus | TYPE ICL_SUBROSTATUS , |
| ld_i_xnoins | TYPE ICL_XNOINS , |
| ld_i_duedate | TYPE ICL_DUEDATENET . |
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 ICL_SUBROGATION_CREATE or its description.
ICL_SUBROGATION_CREATE - Generates New Subrogation Entry ICL_SUBOBJ_TEXTWITHTASK_BRF - Checks from BRF: Is a Text Module with Task Assigned to Subobject? ICL_SUBOBJ_ADD_FCODES_GET - FCodes for Creating Subobjects ICL_SUBOBJECT_POV - F4 Values for Subobject ICL_SUBOBJECT_GET - Determine Possible Claim Subobjects for Parameter ICL_SUBOBJECT_EXIT - Search Help Exit for Search Help ICL_SUBOBJECT