SAP AICL_COMPRESSION_SETTINGS_GET Function Module for
AICL_COMPRESSION_SETTINGS_GET is a standard aicl compression settings get 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 aicl compression settings get FM, simply by entering the name AICL_COMPRESSION_SETTINGS_GET into the relevant SAP transaction such as SE37 or SE38.
Function Group: AICL
Program Name: SAPLAICL
Main Program:
Appliation area: A
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function AICL_COMPRESSION_SETTINGS_GET 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 'AICL_COMPRESSION_SETTINGS_GET'".
EXPORTING
* I_FLG_READ_LOCAL = 'X' "
* I_FLG_READ_FROM_FILE = ' ' "
* I_FILE = ' ' "
* I_FLG_READ_VIA_RFC = ' ' "
* I_RFCDEST = ' ' "
IMPORTING
ES_ERROR_MESSAGE = "
ET_IGNORE_CHARACT = "
ET_IGNORE_SCALES = "
EXCEPTIONS
NO_FILENAME = 1 NO_RFC_DESTINATION = 2
IMPORTING Parameters details for AICL_COMPRESSION_SETTINGS_GET
I_FLG_READ_LOCAL -
Data type: IMIS_TYPE_FLGDefault: 'X'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FLG_READ_FROM_FILE -
Data type: IMIS_TYPE_FLGDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FILE -
Data type: IMIS_TYPE_FILENAMEDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_FLG_READ_VIA_RFC -
Data type: IMIS_TYPE_FLGDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_RFCDEST -
Data type: RFCDES-RFCDESTDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for AICL_COMPRESSION_SETTINGS_GET
ES_ERROR_MESSAGE -
Data type: IMIS_TYPE_S_MESSAGEOptional: No
Call by Reference: No ( called with pass by value option)
ET_IGNORE_CHARACT -
Data type: IMIS_TYPE_T_BAPI1057CCOptional: No
Call by Reference: No ( called with pass by value option)
ET_IGNORE_SCALES -
Data type: IMIS_TYPE_T_BAPI1057CSOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_FILENAME -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
NO_RFC_DESTINATION -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for AICL_COMPRESSION_SETTINGS_GET 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_no_filename | TYPE STRING, " | |||
| lv_es_error_message | TYPE IMIS_TYPE_S_MESSAGE, " | |||
| lv_i_flg_read_local | TYPE IMIS_TYPE_FLG, " 'X' | |||
| lv_et_ignore_charact | TYPE IMIS_TYPE_T_BAPI1057CC, " | |||
| lv_no_rfc_destination | TYPE IMIS_TYPE_T_BAPI1057CC, " | |||
| lv_i_flg_read_from_file | TYPE IMIS_TYPE_FLG, " ' ' | |||
| lv_i_file | TYPE IMIS_TYPE_FILENAME, " SPACE | |||
| lv_et_ignore_scales | TYPE IMIS_TYPE_T_BAPI1057CS, " | |||
| lv_i_flg_read_via_rfc | TYPE IMIS_TYPE_FLG, " ' ' | |||
| lv_i_rfcdest | TYPE RFCDES-RFCDEST. " SPACE |
|   CALL FUNCTION 'AICL_COMPRESSION_SETTINGS_GET' " |
| EXPORTING | ||
| I_FLG_READ_LOCAL | = lv_i_flg_read_local | |
| I_FLG_READ_FROM_FILE | = lv_i_flg_read_from_file | |
| I_FILE | = lv_i_file | |
| I_FLG_READ_VIA_RFC | = lv_i_flg_read_via_rfc | |
| I_RFCDEST | = lv_i_rfcdest | |
| IMPORTING | ||
| ES_ERROR_MESSAGE | = lv_es_error_message | |
| ET_IGNORE_CHARACT | = lv_et_ignore_charact | |
| ET_IGNORE_SCALES | = lv_et_ignore_scales | |
| EXCEPTIONS | ||
| NO_FILENAME = 1 | ||
| NO_RFC_DESTINATION = 2 | ||
| . " AICL_COMPRESSION_SETTINGS_GET | ||
ABAP code using 7.40 inline data declarations to call FM AICL_COMPRESSION_SETTINGS_GET
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.| DATA(ld_i_flg_read_local) | = 'X'. | |||
| DATA(ld_i_flg_read_from_file) | = ' '. | |||
| DATA(ld_i_file) | = ' '. | |||
| DATA(ld_i_flg_read_via_rfc) | = ' '. | |||
| "SELECT single RFCDEST FROM RFCDES INTO @DATA(ld_i_rfcdest). | ||||
| DATA(ld_i_rfcdest) | = ' '. | |||
Search for further information about these or an SAP related objects