SAP AM_ASSET_CLASS_READ Function Module for









AM_ASSET_CLASS_READ is a standard am asset class read 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 am asset class read FM, simply by entering the name AM_ASSET_CLASS_READ into the relevant SAP transaction such as SE37 or SE38.

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



Function AM_ASSET_CLASS_READ 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 'AM_ASSET_CLASS_READ'"
EXPORTING
I_ANLKL = "Asset Class
* I_AFAPL = ' ' "Chart of Depreciation
* I_LANGU = SY-LANGU "

IMPORTING
E_ANKA = "
E_ANKT = "
E_ANKAZ = "
E_LAYOUT = "

TABLES
T_ANKB = "
T_ANKV = "

EXCEPTIONS
KLASSE_NICHT_VORHANDEN = 1 I_ANLKL_FEHLT = 2
.




Customer Function user exits

Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.
EXIT_SAPLAIST_001 Exchange Number Range
EXIT_SAPLAIST_002 Transfer Data for User Subscreens
EXIT_SAPLAIST_003 Transfer of User-Defined Fields to SAP Master Data Transactions

IMPORTING Parameters details for AM_ASSET_CLASS_READ

I_ANLKL - Asset Class

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

I_AFAPL - Chart of Depreciation

Data type: ANKB-AFAPL
Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)

I_LANGU -

Data type: SY-LANGU
Default: SY-LANGU
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for AM_ASSET_CLASS_READ

E_ANKA -

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

E_ANKT -

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

E_ANKAZ -

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

E_LAYOUT -

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

TABLES Parameters details for AM_ASSET_CLASS_READ

T_ANKB -

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

T_ANKV -

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

EXCEPTIONS details

KLASSE_NICHT_VORHANDEN -

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

I_ANLKL_FEHLT -

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

Copy and paste ABAP code example for AM_ASSET_CLASS_READ 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_anka  TYPE ANKA, "   
lt_t_ankb  TYPE STANDARD TABLE OF ANKB, "   
lv_i_anlkl  TYPE ANKA-ANLKL, "   
lv_klasse_nicht_vorhanden  TYPE ANKA, "   
lv_e_ankt  TYPE ANKT, "   
lt_t_ankv  TYPE STANDARD TABLE OF ANKV, "   
lv_i_afapl  TYPE ANKB-AFAPL, "   SPACE
lv_i_anlkl_fehlt  TYPE ANKB, "   
lv_e_ankaz  TYPE ANKAZ, "   
lv_i_langu  TYPE SY-LANGU, "   SY-LANGU
lv_e_layout  TYPE TAMLAY0-LAYOUT. "   

  CALL FUNCTION 'AM_ASSET_CLASS_READ'  "
    EXPORTING
         I_ANLKL = lv_i_anlkl
         I_AFAPL = lv_i_afapl
         I_LANGU = lv_i_langu
    IMPORTING
         E_ANKA = lv_e_anka
         E_ANKT = lv_e_ankt
         E_ANKAZ = lv_e_ankaz
         E_LAYOUT = lv_e_layout
    TABLES
         T_ANKB = lt_t_ankb
         T_ANKV = lt_t_ankv
    EXCEPTIONS
        KLASSE_NICHT_VORHANDEN = 1
        I_ANLKL_FEHLT = 2
. " AM_ASSET_CLASS_READ




ABAP code using 7.40 inline data declarations to call FM AM_ASSET_CLASS_READ

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.

 
 
"SELECT single ANLKL FROM ANKA INTO @DATA(ld_i_anlkl).
 
 
 
 
"SELECT single AFAPL FROM ANKB INTO @DATA(ld_i_afapl).
DATA(ld_i_afapl) = ' '.
 
 
 
"SELECT single LANGU FROM SY INTO @DATA(ld_i_langu).
DATA(ld_i_langu) = SY-LANGU.
 
"SELECT single LAYOUT FROM TAMLAY0 INTO @DATA(ld_e_layout).
 


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!