SAP ISSR_SELECT_ASSETS_ANL01 Function Module for









ISSR_SELECT_ASSETS_ANL01 is a standard issr select assets anl01 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 select assets anl01 FM, simply by entering the name ISSR_SELECT_ASSETS_ANL01 into the relevant SAP transaction such as SE37 or SE38.

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



Function ISSR_SELECT_ASSETS_ANL01 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_SELECT_ASSETS_ANL01'"
EXPORTING
I_ABS54AVAG = "
I_NSL = "
I_PARTNER = "
I_POSTING_TYPE = "
I_PRIMANOTA = "
I_PRODUCT_CAT = "
I_PRODUCT_TYPE = "
I_RANTYP = "
I_RFLOWTYPE = "
I_SEC_ACCOUNT = "
I_STOCKBAV = "
I_ASSET_NR = "
I_TABLE_TYPE = "
I_TSL = "
I_VAL_AREA = "
I_BUKRS = "
I_COUNTRY_VAR = "
I_DATUM = "
I_HSL = "
I_KSL = "
I_LISTTYP = "
I_MSL = "

IMPORTING
E_ASSET_ANL01 = "
.



IMPORTING Parameters details for ISSR_SELECT_ASSETS_ANL01

I_ABS54AVAG -

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

I_NSL -

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

I_PARTNER -

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

I_POSTING_TYPE -

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

I_PRIMANOTA -

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

I_PRODUCT_CAT -

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

I_PRODUCT_TYPE -

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

I_RANTYP -

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

I_RFLOWTYPE -

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

I_SEC_ACCOUNT -

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

I_STOCKBAV -

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

I_ASSET_NR -

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

I_TABLE_TYPE -

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

I_TSL -

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

I_VAL_AREA -

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

I_BUKRS -

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

I_COUNTRY_VAR -

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

I_DATUM -

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

I_HSL -

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

I_KSL -

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

I_LISTTYP -

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

I_MSL -

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

EXPORTING Parameters details for ISSR_SELECT_ASSETS_ANL01

E_ASSET_ANL01 -

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

Copy and paste ABAP code example for ISSR_SELECT_ASSETS_ANL01 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_i_abs54avag  TYPE ISSR_ABS54AVAG, "   
lv_e_asset_anl01  TYPE VLCUR9, "   
lv_i_nsl  TYPE ISSR_NSL, "   
lv_i_partner  TYPE BU_PARTNER, "   
lv_i_posting_type  TYPE ISSR_LEDGERTYPE, "   
lv_i_primanota  TYPE ISSR_PRIMANOTA, "   
lv_i_product_cat  TYPE ISSR_PRODUCT_CATEGORY, "   
lv_i_product_type  TYPE ISSR_PRODUCT_TYPE, "   
lv_i_rantyp  TYPE ISSR_RANTYP, "   
lv_i_rflowtype  TYPE ISSR_FLOWTYPE, "   
lv_i_sec_account  TYPE ISSR_SECURITY_ACCOUNT, "   
lv_i_stockbav  TYPE ISSR_STOCKBAV, "   
lv_i_asset_nr  TYPE ISSR_ASSET_NR, "   
lv_i_table_type  TYPE ISSR_TABLE_TYP, "   
lv_i_tsl  TYPE TSLXX9, "   
lv_i_val_area  TYPE ISSR_VAL_AREA, "   
lv_i_bukrs  TYPE BUKRS, "   
lv_i_country_var  TYPE ISSR_REP_COUNTRY, "   
lv_i_datum  TYPE BUDAT, "   
lv_i_hsl  TYPE HSLXX9, "   
lv_i_ksl  TYPE KSLXX9, "   
lv_i_listtyp  TYPE ISSRLISTTYP, "   
lv_i_msl  TYPE MSLXX. "   

  CALL FUNCTION 'ISSR_SELECT_ASSETS_ANL01'  "
    EXPORTING
         I_ABS54AVAG = lv_i_abs54avag
         I_NSL = lv_i_nsl
         I_PARTNER = lv_i_partner
         I_POSTING_TYPE = lv_i_posting_type
         I_PRIMANOTA = lv_i_primanota
         I_PRODUCT_CAT = lv_i_product_cat
         I_PRODUCT_TYPE = lv_i_product_type
         I_RANTYP = lv_i_rantyp
         I_RFLOWTYPE = lv_i_rflowtype
         I_SEC_ACCOUNT = lv_i_sec_account
         I_STOCKBAV = lv_i_stockbav
         I_ASSET_NR = lv_i_asset_nr
         I_TABLE_TYPE = lv_i_table_type
         I_TSL = lv_i_tsl
         I_VAL_AREA = lv_i_val_area
         I_BUKRS = lv_i_bukrs
         I_COUNTRY_VAR = lv_i_country_var
         I_DATUM = lv_i_datum
         I_HSL = lv_i_hsl
         I_KSL = lv_i_ksl
         I_LISTTYP = lv_i_listtyp
         I_MSL = lv_i_msl
    IMPORTING
         E_ASSET_ANL01 = lv_e_asset_anl01
. " ISSR_SELECT_ASSETS_ANL01




ABAP code using 7.40 inline data declarations to call FM ISSR_SELECT_ASSETS_ANL01

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!