SAP AMDPS2I_ASSET_POSTING_SIMULATE Function Module for
AMDPS2I_ASSET_POSTING_SIMULATE is a standard amdps2i asset posting simulate 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 amdps2i asset posting simulate FM, simply by entering the name AMDPS2I_ASSET_POSTING_SIMULATE into the relevant SAP transaction such as SE37 or SE38.
Function Group: AMDPS2I
Program Name: SAPLAMDPS2I
Main Program: SAPLAMDPS2I
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function AMDPS2I_ASSET_POSTING_SIMULATE 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 'AMDPS2I_ASSET_POSTING_SIMULATE'".
EXPORTING
IS_ANLH = "
IMPORTING
ET_ANEPI = "
EV_UCOMM = "
CHANGING
CS_ANLA = "
CT_ANLB = "
CT_ANLC = "
CT_ANLZ = "
IMPORTING Parameters details for AMDPS2I_ASSET_POSTING_SIMULATE
IS_ANLH -
Data type: ANLHOptional: No
Call by Reference: Yes
EXPORTING Parameters details for AMDPS2I_ASSET_POSTING_SIMULATE
ET_ANEPI -
Data type: IF_FAA_POSTING_CORE_TYPES=>TY_T_ANEPIOptional: No
Call by Reference: Yes
EV_UCOMM -
Data type: SYUCOMMOptional: No
Call by Reference: Yes
CHANGING Parameters details for AMDPS2I_ASSET_POSTING_SIMULATE
CS_ANLA -
Data type: ANLAOptional: No
Call by Reference: Yes
CT_ANLB -
Data type: AA_T_ANLBOptional: No
Call by Reference: Yes
CT_ANLC -
Data type: AA_T_ANLCOptional: No
Call by Reference: Yes
CT_ANLZ -
Data type: AA_T_ANLZOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for AMDPS2I_ASSET_POSTING_SIMULATE 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_cs_anla | TYPE ANLA, " | |||
| lv_is_anlh | TYPE ANLH, " | |||
| lv_et_anepi | TYPE IF_FAA_POSTING_CORE_TYPES=>TY_T_ANEPI, " | |||
| lv_ct_anlb | TYPE AA_T_ANLB, " | |||
| lv_ev_ucomm | TYPE SYUCOMM, " | |||
| lv_ct_anlc | TYPE AA_T_ANLC, " | |||
| lv_ct_anlz | TYPE AA_T_ANLZ. " |
|   CALL FUNCTION 'AMDPS2I_ASSET_POSTING_SIMULATE' " |
| EXPORTING | ||
| IS_ANLH | = lv_is_anlh | |
| IMPORTING | ||
| ET_ANEPI | = lv_et_anepi | |
| EV_UCOMM | = lv_ev_ucomm | |
| CHANGING | ||
| CS_ANLA | = lv_cs_anla | |
| CT_ANLB | = lv_ct_anlb | |
| CT_ANLC | = lv_ct_anlc | |
| CT_ANLZ | = lv_ct_anlz | |
| . " AMDPS2I_ASSET_POSTING_SIMULATE | ||
ABAP code using 7.40 inline data declarations to call FM AMDPS2I_ASSET_POSTING_SIMULATE
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