SAP SIC_BAS_GET_KEYS Function Module for Reads the Keys from BAS
SIC_BAS_GET_KEYS is a standard sic bas get keys SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Reads the Keys from BAS processing and below is the pattern details for this FM, 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 sic bas get keys FM, simply by entering the name SIC_BAS_GET_KEYS into the relevant SAP transaction such as SE37 or SE38.
Function Group: SIC_BAS_READ_DATA
Program Name: SAPLSIC_BAS_READ_DATA
Main Program: SAPLSIC_BAS_READ_DATA
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SIC_BAS_GET_KEYS 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 'SIC_BAS_GET_KEYS'"Reads the Keys from BAS.
EXPORTING
INDEX_POOL = "Key for logical search pool in duplicate index
* PACKAGE_SIZE = 1000 "
IMPORTING
ADDRESS_IDS = "Initial duplicate index transfer table
LAST_PACKAGE = "Kennzeichen: Letztes Datenpaket wurde gelesen
ET_RETURN = "Table with BAPI Return Information
EXCEPTIONS
PARAMETER_ERROR = 1 INTERNAL_ERROR = 2
IMPORTING Parameters details for SIC_BAS_GET_KEYS
INDEX_POOL - Key for logical search pool in duplicate index
Data type: ADINDXPOOLOptional: No
Call by Reference: No ( called with pass by value option)
PACKAGE_SIZE -
Data type: IDefault: 1000
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for SIC_BAS_GET_KEYS
ADDRESS_IDS - Initial duplicate index transfer table
Data type: ADKEY_INDX_TABOptional: No
Call by Reference: Yes
LAST_PACKAGE - Kennzeichen: Letztes Datenpaket wurde gelesen
Data type: COptional: No
Call by Reference: No ( called with pass by value option)
ET_RETURN - Table with BAPI Return Information
Data type: BAPIRETTABOptional: No
Call by Reference: Yes
EXCEPTIONS details
PARAMETER_ERROR - Ungültige Parameterwerte
Data type:Optional: No
Call by Reference: Yes
INTERNAL_ERROR - Schwerer interner Fehler (MESSAGE A...)
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for SIC_BAS_GET_KEYS 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_index_pool | TYPE ADINDXPOOL, " | |||
| lv_address_ids | TYPE ADKEY_INDX_TAB, " | |||
| lv_parameter_error | TYPE ADKEY_INDX_TAB, " | |||
| lv_last_package | TYPE C, " | |||
| lv_package_size | TYPE I, " 1000 | |||
| lv_internal_error | TYPE I, " | |||
| lv_et_return | TYPE BAPIRETTAB. " |
|   CALL FUNCTION 'SIC_BAS_GET_KEYS' "Reads the Keys from BAS |
| EXPORTING | ||
| INDEX_POOL | = lv_index_pool | |
| PACKAGE_SIZE | = lv_package_size | |
| IMPORTING | ||
| ADDRESS_IDS | = lv_address_ids | |
| LAST_PACKAGE | = lv_last_package | |
| ET_RETURN | = lv_et_return | |
| EXCEPTIONS | ||
| PARAMETER_ERROR = 1 | ||
| INTERNAL_ERROR = 2 | ||
| . " SIC_BAS_GET_KEYS | ||
ABAP code using 7.40 inline data declarations to call FM SIC_BAS_GET_KEYS
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_package_size) | = 1000. | |||
Search for further information about these or an SAP related objects