SAP ISSR_OP_GET_AMOUNT_POSITION Function Module for









ISSR_OP_GET_AMOUNT_POSITION is a standard issr op get amount position 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 op get amount position FM, simply by entering the name ISSR_OP_GET_AMOUNT_POSITION into the relevant SAP transaction such as SE37 or SE38.

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



Function ISSR_OP_GET_AMOUNT_POSITION 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_OP_GET_AMOUNT_POSITION'"
EXPORTING
* I_COUNTRY_VAR = "
* I_ABS54AVAG = "
* I_BUKRS = "
* I_SPARTE = "
* I_STOCK = "
* I_RTCUR = "
* I_ASSET_NR = "
* I_BUDAT = "
* I_PRIMANOTA = "
* I_FLOWTYPE = "

IMPORTING
E_ASSET_TSL = "
E_ASSET_HSL = "
E_ASSET_KSL = "
E_ASSET_NSL = "
E_ASSET_MSL = "

EXCEPTIONS
NO_DATA_FOUND = 1
.



IMPORTING Parameters details for ISSR_OP_GET_AMOUNT_POSITION

I_COUNTRY_VAR -

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

I_ABS54AVAG -

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

I_BUKRS -

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

I_SPARTE -

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

I_STOCK -

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

I_RTCUR -

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

I_ASSET_NR -

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

I_BUDAT -

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

I_PRIMANOTA -

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

I_FLOWTYPE -

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

EXPORTING Parameters details for ISSR_OP_GET_AMOUNT_POSITION

E_ASSET_TSL -

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

E_ASSET_HSL -

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

E_ASSET_KSL -

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

E_ASSET_NSL -

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

E_ASSET_MSL -

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

EXCEPTIONS details

NO_DATA_FOUND -

Data type:
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for ISSR_OP_GET_AMOUNT_POSITION 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_asset_tsl  TYPE VTCUR9, "   
lv_i_country_var  TYPE ISSR_REP_COUNTRY, "   
lv_no_data_found  TYPE ISSR_REP_COUNTRY, "   
lv_i_abs54avag  TYPE ISSR_ABS54AVAG, "   
lv_i_bukrs  TYPE BUKRS, "   
lv_e_asset_hsl  TYPE VLCUR9, "   
lv_i_sparte  TYPE ISSR_VERS_SPARTE, "   
lv_e_asset_ksl  TYPE VGCUR9, "   
lv_i_stock  TYPE ISSR_STOCKBAV, "   
lv_e_asset_nsl  TYPE VTCUR9, "   
lv_i_rtcur  TYPE RTCUR, "   
lv_e_asset_msl  TYPE MSLXX, "   
lv_i_asset_nr  TYPE ISSR_ASSET_NR, "   
lv_i_budat  TYPE ISSR_BUDAT, "   
lv_i_primanota  TYPE ISSR_PRIMANOTA, "   
lv_i_flowtype  TYPE ISSR_FLOWTYPE. "   

  CALL FUNCTION 'ISSR_OP_GET_AMOUNT_POSITION'  "
    EXPORTING
         I_COUNTRY_VAR = lv_i_country_var
         I_ABS54AVAG = lv_i_abs54avag
         I_BUKRS = lv_i_bukrs
         I_SPARTE = lv_i_sparte
         I_STOCK = lv_i_stock
         I_RTCUR = lv_i_rtcur
         I_ASSET_NR = lv_i_asset_nr
         I_BUDAT = lv_i_budat
         I_PRIMANOTA = lv_i_primanota
         I_FLOWTYPE = lv_i_flowtype
    IMPORTING
         E_ASSET_TSL = lv_e_asset_tsl
         E_ASSET_HSL = lv_e_asset_hsl
         E_ASSET_KSL = lv_e_asset_ksl
         E_ASSET_NSL = lv_e_asset_nsl
         E_ASSET_MSL = lv_e_asset_msl
    EXCEPTIONS
        NO_DATA_FOUND = 1
. " ISSR_OP_GET_AMOUNT_POSITION




ABAP code using 7.40 inline data declarations to call FM ISSR_OP_GET_AMOUNT_POSITION

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!