ICL_LITIGATION_LIB is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter ICL_LITIGATION_LIB into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
INCLUDE EMSG.
INCLUDE IEFGMAC3.
No SAP DATABASE tables are accessed within this REPORT code!
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING e_claim = wa_claim e_loss_address = ls_loss_address.
ADDR_COMPOSE_STREET_LINE CALL FUNCTION 'ADDR_COMPOSE_STREET_LINE' EXPORTING street = ls_loss_address-street house_number = ls_loss_address-house_num1 house_number2 = ls_loss_address-house_num2 country = ls_loss_address-country language = ls_loss_address-langu IMPORTING street_line = ls_loss_address-street.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' TABLES t_litheader = yt_litheader.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' TABLES t_subcl = lt_subclaim t_claimassign = lt_claimassign.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING E_SUBOBJCAT = lv_subobjcat E_SUBOBJECT = lv_SUBOBJECT TABLES t_lititem = yt_lititem.
ICL_PARTNER_GET CALL FUNCTION 'ICL_PARTNER_GET' EXPORTING i_partner = gv_recipient IMPORTING e_but000 = ls_recipient e_but000_address = ls_address EXCEPTIONS not_found = 1 OTHERS = 2.
ADDR_COMPOSE_STREET_LINE CALL FUNCTION 'ADDR_COMPOSE_STREET_LINE' EXPORTING street = ls_address-street house_number = ls_address-house_num1 house_number2 = ls_address-house_num2 country = ls_address-country language = ls_address-langu IMPORTING street_line = ls_address-street.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' TABLES t_participants = lt_partici.
ICL_PART_GET_SELS CALL FUNCTION 'ICL_PART_GET_SELS' EXPORTING i_participant = gv_recipient IMPORTING e_part = ls_part EXCEPTIONS OTHERS = 0.
ICL_PARTNER_GET CALL FUNCTION 'ICL_PARTNER_GET' EXPORTING i_partner = xt_partici-bpartner IMPORTING * E_BUT000 = e_but000_address = ls_partner * E_DESCRIPTION = * E_DESCRIPTION_NAME = * E_DESCRIPTION_ADDR = EXCEPTIONS not_found = 1 OTHERS = 2.
ICL_CORR_GET CALL FUNCTION 'ICL_CORR_GET' IMPORTING et_rbp = lt_rbp.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.