SAP AM_DOCUMENT_RECEIVER_LIST_SHOW Function Module for
AM_DOCUMENT_RECEIVER_LIST_SHOW is a standard am document receiver list show 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 document receiver list show FM, simply by entering the name AM_DOCUMENT_RECEIVER_LIST_SHOW into the relevant SAP transaction such as SE37 or SE38.
Function Group: AMDC
Program Name: SAPLAMDC
Main Program: SAPLAMDC
Appliation area: A
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function AM_DOCUMENT_RECEIVER_LIST_SHOW 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_DOCUMENT_RECEIVER_LIST_SHOW'".
EXPORTING
I_GJAHR = "
I_PERID = "
I_BUDAT = "
I_BLDAT = "
I_BZDAT = "Asset Value Date
TABLES
T_RECE = "
T_AUAA = "
IMPORTING Parameters details for AM_DOCUMENT_RECEIVER_LIST_SHOW
I_GJAHR -
Data type: ANEK-GJAHROptional: No
Call by Reference: No ( called with pass by value option)
I_PERID -
Data type: ANBZ-PERIDOptional: No
Call by Reference: No ( called with pass by value option)
I_BUDAT -
Data type: ANEK-BUDATOptional: No
Call by Reference: No ( called with pass by value option)
I_BLDAT -
Data type: BKPF-BLDATOptional: No
Call by Reference: No ( called with pass by value option)
I_BZDAT - Asset Value Date
Data type: ANEP-BZDATOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for AM_DOCUMENT_RECEIVER_LIST_SHOW
T_RECE -
Data type: AIM_RECEOptional: No
Call by Reference: No ( called with pass by value option)
T_AUAA -
Data type: AUAAOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for AM_DOCUMENT_RECEIVER_LIST_SHOW 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: | ||||
| lt_t_rece | TYPE STANDARD TABLE OF AIM_RECE, " | |||
| lv_i_gjahr | TYPE ANEK-GJAHR, " | |||
| lt_t_auaa | TYPE STANDARD TABLE OF AUAA, " | |||
| lv_i_perid | TYPE ANBZ-PERID, " | |||
| lv_i_budat | TYPE ANEK-BUDAT, " | |||
| lv_i_bldat | TYPE BKPF-BLDAT, " | |||
| lv_i_bzdat | TYPE ANEP-BZDAT. " |
|   CALL FUNCTION 'AM_DOCUMENT_RECEIVER_LIST_SHOW' " |
| EXPORTING | ||
| I_GJAHR | = lv_i_gjahr | |
| I_PERID | = lv_i_perid | |
| I_BUDAT | = lv_i_budat | |
| I_BLDAT | = lv_i_bldat | |
| I_BZDAT | = lv_i_bzdat | |
| TABLES | ||
| T_RECE | = lt_t_rece | |
| T_AUAA | = lt_t_auaa | |
| . " AM_DOCUMENT_RECEIVER_LIST_SHOW | ||
ABAP code using 7.40 inline data declarations to call FM AM_DOCUMENT_RECEIVER_LIST_SHOW
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 GJAHR FROM ANEK INTO @DATA(ld_i_gjahr). | ||||
| "SELECT single PERID FROM ANBZ INTO @DATA(ld_i_perid). | ||||
| "SELECT single BUDAT FROM ANEK INTO @DATA(ld_i_budat). | ||||
| "SELECT single BLDAT FROM BKPF INTO @DATA(ld_i_bldat). | ||||
| "SELECT single BZDAT FROM ANEP INTO @DATA(ld_i_bzdat). | ||||
Search for further information about these or an SAP related objects