SAP SELECT_COND_TABLES Function Module for NOTRANSL: Liste aller Konditionstabellen/Felder/Namen
SELECT_COND_TABLES is a standard select cond tables SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: Liste aller Konditionstabellen/Felder/Namen 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 select cond tables FM, simply by entering the name SELECT_COND_TABLES into the relevant SAP transaction such as SE37 or SE38.
Function Group: VKOD
Program Name: SAPLVKOD
Main Program:
Appliation area: V
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function SELECT_COND_TABLES 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 'SELECT_COND_TABLES'"NOTRANSL: Liste aller Konditionstabellen/Felder/Namen.
EXPORTING
I_KVEWE = "Usage of the condition table
* I_SPRAS = 'E' "Language Key
TABLES
T_COND_TABLES = "Condition tables
T_COND_TABLES_KEY_FIELDS = "Condition table fields
T_COND_TABLES_DATA_FIELDS = "Condition table fields
EXCEPTIONS
INVALID_USAGE = 1
IMPORTING Parameters details for SELECT_COND_TABLES
I_KVEWE - Usage of the condition table
Data type: T681-KVEWEOptional: No
Call by Reference: No ( called with pass by value option)
I_SPRAS - Language Key
Data type: TMC1T-SPRASDefault: 'E'
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for SELECT_COND_TABLES
T_COND_TABLES - Condition tables
Data type: COND_TABSOptional: No
Call by Reference: No ( called with pass by value option)
T_COND_TABLES_KEY_FIELDS - Condition table fields
Data type: COND_FLDSOptional: No
Call by Reference: No ( called with pass by value option)
T_COND_TABLES_DATA_FIELDS - Condition table fields
Data type: COND_FLDSOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INVALID_USAGE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for SELECT_COND_TABLES 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_i_kvewe | TYPE T681-KVEWE, " | |||
| lv_invalid_usage | TYPE T681, " | |||
| lt_t_cond_tables | TYPE STANDARD TABLE OF COND_TABS, " | |||
| lv_i_spras | TYPE TMC1T-SPRAS, " 'E' | |||
| lt_t_cond_tables_key_fields | TYPE STANDARD TABLE OF COND_FLDS, " | |||
| lt_t_cond_tables_data_fields | TYPE STANDARD TABLE OF COND_FLDS. " |
|   CALL FUNCTION 'SELECT_COND_TABLES' "NOTRANSL: Liste aller Konditionstabellen/Felder/Namen |
| EXPORTING | ||
| I_KVEWE | = lv_i_kvewe | |
| I_SPRAS | = lv_i_spras | |
| TABLES | ||
| T_COND_TABLES | = lt_t_cond_tables | |
| T_COND_TABLES_KEY_FIELDS | = lt_t_cond_tables_key_fields | |
| T_COND_TABLES_DATA_FIELDS | = lt_t_cond_tables_data_fields | |
| EXCEPTIONS | ||
| INVALID_USAGE = 1 | ||
| . " SELECT_COND_TABLES | ||
ABAP code using 7.40 inline data declarations to call FM SELECT_COND_TABLES
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 KVEWE FROM T681 INTO @DATA(ld_i_kvewe). | ||||
| "SELECT single SPRAS FROM TMC1T INTO @DATA(ld_i_spras). | ||||
| DATA(ld_i_spras) | = 'E'. | |||
Search for further information about these or an SAP related objects