SAP ISSR_SECURITY_LOAD Function Module for









ISSR_SECURITY_LOAD is a standard issr security load SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.


See here to view full function module documentation and code listing for issr security load FM, simply by entering the name ISSR_SECURITY_LOAD into the relevant SAP transaction such as SE37 or SE38.

Function Group: ISSR4
Program Name: SAPLISSR4
Main Program: SAPLISSR4
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function ISSR_SECURITY_LOAD pattern details

In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.
CALL FUNCTION 'ISSR_SECURITY_LOAD'"
EXPORTING
I_ASSET_NR = "

IMPORTING
E_ANLA = "
E_ANAN = "
E_KOPO = "
E_KOPA = "
E_VZGPO = "
E_SKOKO_PERIODS = "
E_SKOKO_PARTLY = "
E_SHARE_CAPITAL = "
E_AKTI = "
E_ANLE = "
E_TERM = "
E_DERI = "
E_SKOKO = "
E_ZKOKO = "
E_BONO = "
E_TWX2 = "

TABLES
DD07V_TAB = "
DD03P_TAB = "

EXCEPTIONS
ASSET_NR_INITIAL = 1 NO_DEAL_TRANSACTION = 2 NO_DEAL_ACTIVITY = 3 WRONG_PRODUCT_CATEGORY = 4
.



IMPORTING Parameters details for ISSR_SECURITY_LOAD

I_ASSET_NR -

Data type: ISSR4_ASSET_NR
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for ISSR_SECURITY_LOAD

E_ANLA -

Data type: VWPANLA
Optional: No
Call by Reference: Yes

E_ANAN -

Data type: SECURITY_DB_VWPANAN
Optional: No
Call by Reference: Yes

E_KOPO -

Data type: SECURITY_DB_VZZKOPO
Optional: No
Call by Reference: Yes

E_KOPA -

Data type: SECURITY_DB_VZZKOPA
Optional: No
Call by Reference: Yes

E_VZGPO -

Data type: SECURITY_DB_VZGPO
Optional: No
Call by Reference: Yes

E_SKOKO_PERIODS -

Data type: SECURITY_DB_VZSKOKO
Optional: No
Call by Reference: Yes

E_SKOKO_PARTLY -

Data type: SECURITY_DB_VZSKOKO
Optional: No
Call by Reference: Yes

E_SHARE_CAPITAL -

Data type: SECURITY_DB_SHARECAPITAL
Optional: No
Call by Reference: Yes

E_AKTI -

Data type: VWPAKTI
Optional: No
Call by Reference: Yes

E_ANLE -

Data type: VWPANLE
Optional: No
Call by Reference: Yes

E_TERM -

Data type: VWPTERM
Optional: No
Call by Reference: Yes

E_DERI -

Data type: VTIDERI
Optional: No
Call by Reference: Yes

E_SKOKO -

Data type: VZSKOKO
Optional: No
Call by Reference: Yes

E_ZKOKO -

Data type: VZZKOKO
Optional: No
Call by Reference: Yes

E_BONO -

Data type: SECURITY_DB_VWPBONO
Optional: No
Call by Reference: Yes

E_TWX2 -

Data type: SECURITY_DB_TWX2
Optional: No
Call by Reference: Yes

TABLES Parameters details for ISSR_SECURITY_LOAD

DD07V_TAB -

Data type: DD07V
Optional: No
Call by Reference: Yes

DD03P_TAB -

Data type: DD03P
Optional: No
Call by Reference: Yes

EXCEPTIONS details

ASSET_NR_INITIAL -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_DEAL_TRANSACTION -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_DEAL_ACTIVITY -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

WRONG_PRODUCT_CATEGORY -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for ISSR_SECURITY_LOAD Function Module

The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than 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 newer method of declaring data variables on the fly. 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), which i why i have stuck to the origianl for this example.

DATA:
lv_e_anla  TYPE VWPANLA, "   
lt_dd07v_tab  TYPE STANDARD TABLE OF DD07V, "   
lv_i_asset_nr  TYPE ISSR4_ASSET_NR, "   
lv_asset_nr_initial  TYPE ISSR4_ASSET_NR, "   
lv_e_anan  TYPE SECURITY_DB_VWPANAN, "   
lv_e_kopo  TYPE SECURITY_DB_VZZKOPO, "   
lv_e_kopa  TYPE SECURITY_DB_VZZKOPA, "   
lv_e_vzgpo  TYPE SECURITY_DB_VZGPO, "   
lv_e_skoko_periods  TYPE SECURITY_DB_VZSKOKO, "   
lv_e_skoko_partly  TYPE SECURITY_DB_VZSKOKO, "   
lv_e_share_capital  TYPE SECURITY_DB_SHARECAPITAL, "   
lv_e_akti  TYPE VWPAKTI, "   
lt_dd03p_tab  TYPE STANDARD TABLE OF DD03P, "   
lv_no_deal_transaction  TYPE DD03P, "   
lv_e_anle  TYPE VWPANLE, "   
lv_no_deal_activity  TYPE VWPANLE, "   
lv_e_term  TYPE VWPTERM, "   
lv_wrong_product_category  TYPE VWPTERM, "   
lv_e_deri  TYPE VTIDERI, "   
lv_e_skoko  TYPE VZSKOKO, "   
lv_e_zkoko  TYPE VZZKOKO, "   
lv_e_bono  TYPE SECURITY_DB_VWPBONO, "   
lv_e_twx2  TYPE SECURITY_DB_TWX2. "   

  CALL FUNCTION 'ISSR_SECURITY_LOAD'  "
    EXPORTING
         I_ASSET_NR = lv_i_asset_nr
    IMPORTING
         E_ANLA = lv_e_anla
         E_ANAN = lv_e_anan
         E_KOPO = lv_e_kopo
         E_KOPA = lv_e_kopa
         E_VZGPO = lv_e_vzgpo
         E_SKOKO_PERIODS = lv_e_skoko_periods
         E_SKOKO_PARTLY = lv_e_skoko_partly
         E_SHARE_CAPITAL = lv_e_share_capital
         E_AKTI = lv_e_akti
         E_ANLE = lv_e_anle
         E_TERM = lv_e_term
         E_DERI = lv_e_deri
         E_SKOKO = lv_e_skoko
         E_ZKOKO = lv_e_zkoko
         E_BONO = lv_e_bono
         E_TWX2 = lv_e_twx2
    TABLES
         DD07V_TAB = lt_dd07v_tab
         DD03P_TAB = lt_dd03p_tab
    EXCEPTIONS
        ASSET_NR_INITIAL = 1
        NO_DEAL_TRANSACTION = 2
        NO_DEAL_ACTIVITY = 3
        WRONG_PRODUCT_CATEGORY = 4
. " ISSR_SECURITY_LOAD




ABAP code using 7.40 inline data declarations to call FM ISSR_SECURITY_LOAD

The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!