SAP ARCHIVE_REMOTE_ALDL_GET_LINKS Function Module for
ARCHIVE_REMOTE_ALDL_GET_LINKS is a standard archive remote aldl get links 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 archive remote aldl get links FM, simply by entering the name ARCHIVE_REMOTE_ALDL_GET_LINKS into the relevant SAP transaction such as SE37 or SE38.
Function Group: AADM
Program Name: SAPLAADM
Main Program: SAPLAADM
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function ARCHIVE_REMOTE_ALDL_GET_LINKS 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 'ARCHIVE_REMOTE_ALDL_GET_LINKS'".
EXPORTING
* IV_STATISTICS_ONLY = 'X' "
* IV_ATTACHEMENTS = 'X' "
* IV_PRINT_LISTS = 'X' "
IMPORTING
EV_SYSID = "
EV_MANDT = "
TABLES
* IT_INPUT_LINES = "
* IT_SELECTIONS = "
* ET_AL_CONNECTIONS = "
* ET_DL_CONNECTIONS = "
* ET_AL_STATISTICS = "
* ET_DL_STATISTICS = "
IMPORTING Parameters details for ARCHIVE_REMOTE_ALDL_GET_LINKS
IV_STATISTICS_ONLY -
Data type: BOOLE_DDefault: 'X'
Optional: No
Call by Reference: No ( called with pass by value option)
IV_ATTACHEMENTS -
Data type: BOOLE_DDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
IV_PRINT_LISTS -
Data type: BOOLE_DDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for ARCHIVE_REMOTE_ALDL_GET_LINKS
EV_SYSID -
Data type: RFCDISPLAY-RFCSYSIDOptional: No
Call by Reference: No ( called with pass by value option)
EV_MANDT -
Data type: ADMI_RUN-CLIENTOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for ARCHIVE_REMOTE_ALDL_GET_LINKS
IT_INPUT_LINES -
Data type: ARC_ALSTATOptional: Yes
Call by Reference: Yes
IT_SELECTIONS -
Data type: RSPARAMSOptional: Yes
Call by Reference: Yes
ET_AL_CONNECTIONS -
Data type: ARC_ALTRANOptional: Yes
Call by Reference: Yes
ET_DL_CONNECTIONS -
Data type: ARC_ALTRANOptional: Yes
Call by Reference: Yes
ET_AL_STATISTICS -
Data type: ARC_ALSTATOptional: Yes
Call by Reference: Yes
ET_DL_STATISTICS -
Data type: ARC_ALSTATOptional: Yes
Call by Reference: Yes
Copy and paste ABAP code example for ARCHIVE_REMOTE_ALDL_GET_LINKS 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_ev_sysid | TYPE RFCDISPLAY-RFCSYSID, " | |||
| lt_it_input_lines | TYPE STANDARD TABLE OF ARC_ALSTAT, " | |||
| lv_iv_statistics_only | TYPE BOOLE_D, " 'X' | |||
| lv_ev_mandt | TYPE ADMI_RUN-CLIENT, " | |||
| lt_it_selections | TYPE STANDARD TABLE OF RSPARAMS, " | |||
| lv_iv_attachements | TYPE BOOLE_D, " 'X' | |||
| lv_iv_print_lists | TYPE BOOLE_D, " 'X' | |||
| lt_et_al_connections | TYPE STANDARD TABLE OF ARC_ALTRAN, " | |||
| lt_et_dl_connections | TYPE STANDARD TABLE OF ARC_ALTRAN, " | |||
| lt_et_al_statistics | TYPE STANDARD TABLE OF ARC_ALSTAT, " | |||
| lt_et_dl_statistics | TYPE STANDARD TABLE OF ARC_ALSTAT. " |
|   CALL FUNCTION 'ARCHIVE_REMOTE_ALDL_GET_LINKS' " |
| EXPORTING | ||
| IV_STATISTICS_ONLY | = lv_iv_statistics_only | |
| IV_ATTACHEMENTS | = lv_iv_attachements | |
| IV_PRINT_LISTS | = lv_iv_print_lists | |
| IMPORTING | ||
| EV_SYSID | = lv_ev_sysid | |
| EV_MANDT | = lv_ev_mandt | |
| TABLES | ||
| IT_INPUT_LINES | = lt_it_input_lines | |
| IT_SELECTIONS | = lt_it_selections | |
| ET_AL_CONNECTIONS | = lt_et_al_connections | |
| ET_DL_CONNECTIONS | = lt_et_dl_connections | |
| ET_AL_STATISTICS | = lt_et_al_statistics | |
| ET_DL_STATISTICS | = lt_et_dl_statistics | |
| . " ARCHIVE_REMOTE_ALDL_GET_LINKS | ||
ABAP code using 7.40 inline data declarations to call FM ARCHIVE_REMOTE_ALDL_GET_LINKS
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 RFCSYSID FROM RFCDISPLAY INTO @DATA(ld_ev_sysid). | ||||
| DATA(ld_iv_statistics_only) | = 'X'. | |||
| "SELECT single CLIENT FROM ADMI_RUN INTO @DATA(ld_ev_mandt). | ||||
| DATA(ld_iv_attachements) | = 'X'. | |||
| DATA(ld_iv_print_lists) | = 'X'. | |||
Search for further information about these or an SAP related objects