IEKSECURITY_GUARANTOR 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 IEKSECURITY_GUARANTOR 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.
Title: INTERNAL: Form Class Library
INCLUDE EMSG.
INCLUDE IEFGMAC3.
No SAP DATABASE tables are accessed within this REPORT code!
ISU_DB_EKUN_FORALL CALL FUNCTION 'ISU_DB_EKUN_FORALL' TABLES t_ekun = yt_guarantor EXCEPTIONS not_found = 1 system_error = 2 invalid_interval = 3 OTHERS = 4.
ISU_ADDRESS_PROVIDE CALL FUNCTION 'ISU_ADDRESS_PROVIDE' EXPORTING x_address_type = 'B' x_ekun_ext = t_guarantor IMPORTING y_eadrdat = yt_bp_address EXCEPTIONS not_found = 1 parameter_error = 2 object_not_given = 3 address_inconsistency = 4 installation_inconsistency = 5 OTHERS = 6.
ISU_MOVE_BUSPART_ADDRESS CALL FUNCTION 'ISU_MOVE_BUSPART_ADDRESS' EXPORTING x_buspart = t_guarantor x_address = yt_bp_address IMPORTING y_address = yt_bp_address EXCEPTIONS not_qualified = 1 OTHERS = 2.
ISU_ACTORS_SET_CONTAINER CALL FUNCTION 'ISU_ACTORS_SET_CONTAINER' EXPORTING x_partner = t_guarantor-partner x_regiogroup = t_bp_address-regiogroup x_bukrs = space TABLES yt_cont = t_cont.
ISU_ACTORS_PRINT_PROVIDE CALL FUNCTION 'ISU_ACTORS_PRINT_PROVIDE' EXPORTING x_task = 'TS20500117' x_number = 1 x_langu = c-langu IMPORTING y_actor = y_clerk1 TABLES xt_cont = t_cont EXCEPTIONS no_actor_found = 1 internal_error = 2 OTHERS = 3.
ISU_ACTORS_PRINT_PROVIDE CALL FUNCTION 'ISU_ACTORS_PRINT_PROVIDE' EXPORTING x_task = 'TS20500117' x_number = 2 x_langu = c-langu IMPORTING y_actor = y_clerk2 TABLES xt_cont = t_cont EXCEPTIONS no_actor_found = 1 internal_error = 2 OTHERS = 3.
FKK_DB_SECURITY_FOR_GUARANTOR CALL FUNCTION 'FKK_DB_SECURITY_FOR_GUARANTOR' * EXPORTING * X_ACTUAL = * X_KEYDATE = * IMPORTING * Y_COUNT = TABLES ty_sec = t_sec txy_sec_n = t_sec_n ty_sec_c = t_cont_data EXCEPTIONS not_found = 1 OTHERS = 2.
FKK_DB_FKKVKP1_FORALL CALL FUNCTION 'FKK_DB_FKKVKP1_FORALL' TABLES t_fkkvkp1 = yt_cont_acct EXCEPTIONS not_found = 1 system_error = 2 OTHERS = 3.
ISU_DB_EKUN_FORALL CALL FUNCTION 'ISU_DB_EKUN_FORALL' TABLES t_ekun = yt_bus_part EXCEPTIONS not_found = 1 system_error = 2 invalid_interval = 3 OTHERS = 4.
ISU_ADDRESS_PROVIDE CALL FUNCTION 'ISU_ADDRESS_PROVIDE' EXPORTING x_address_type = 'B' x_ekun_ext = t_bus_part x_read_adrc_regio = 'X' IMPORTING y_eadrdat = yt_bs_address * y_adrc_regio = t_adrc_regio EXCEPTIONS not_found = 1 parameter_error = 2 object_not_given = 3 address_inconsistency = 4 installation_inconsistency = 5 OTHERS = 6.
ISU_MOVE_BUSPART_ADDRESS CALL FUNCTION 'ISU_MOVE_BUSPART_ADDRESS' EXPORTING x_buspart = t_bus_part x_address = yt_bs_address IMPORTING y_address = yt_bs_address EXCEPTIONS not_qualified = 1 OTHERS = 2.
ISU_INTERNAL_VTREF_TO_VERTRAG CALL FUNCTION 'ISU_INTERNAL_VTREF_TO_VERTRAG' EXPORTING i_vtref = xt_cont_data-vtref IMPORTING e_vertrag = yt_contract-vertrag.
ISU_DB_EVER_SELECT CALL FUNCTION 'ISU_DB_EVER_SELECT' TABLES txy_ever = yt_contract EXCEPTIONS not_found = 1 system_error = 2 OTHERS = 3.
ISU_INTERNAL_VTREF_TO_VERTRAG CALL FUNCTION 'ISU_INTERNAL_VTREF_TO_VERTRAG' EXPORTING i_vtref = x_cont_data-vtref IMPORTING e_vertrag = t_contract-vertrag.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.