SAP TB_API_CONDITION_GETLIST Function Module for API: Format Conditions
TB_API_CONDITION_GETLIST is a standard tb api condition getlist SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for API: Format Conditions 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 tb api condition getlist FM, simply by entering the name TB_API_CONDITION_GETLIST into the relevant SAP transaction such as SE37 or SE38.
Function Group: TB12
Program Name: SAPLTB12
Main Program: SAPLTB12
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TB_API_CONDITION_GETLIST 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 'TB_API_CONDITION_GETLIST'"API: Format Conditions.
EXPORTING
I_RANTYP = "Application
I_SGSART = "Product Type
I_SFHAART = "Transaction Type
I_T_EFINKO = "Conditions for Detailed Processing (Table)
I_T_GRKOND = "Control Information for Processing Conditions
IMPORTING
E_T_COND = "Condition: Structure
E_T_COND_FORMULA_VARIABLES = "Condition: Form Components
E_T_COND_SINGLE_DATES = "Condition: Single Dates
IMPORTING Parameters details for TB_API_CONDITION_GETLIST
I_RANTYP - Application
Data type: RANTYPOptional: No
Call by Reference: Yes
I_SGSART - Product Type
Data type: VVSARTOptional: No
Call by Reference: Yes
I_SFHAART - Transaction Type
Data type: TB_SFHAARTOptional: No
Call by Reference: Yes
I_T_EFINKO - Conditions for Detailed Processing (Table)
Data type: VTB_T_EFINKOOptional: No
Call by Reference: Yes
I_T_GRKOND - Control Information for Processing Conditions
Data type: VTB_T_GRKONDOptional: No
Call by Reference: Yes
EXPORTING Parameters details for TB_API_CONDITION_GETLIST
E_T_COND - Condition: Structure
Data type: VTS_TAB_CONDOptional: No
Call by Reference: Yes
E_T_COND_FORMULA_VARIABLES - Condition: Form Components
Data type: VTS_TAB_COND_FORMULA_VARIABLESOptional: No
Call by Reference: Yes
E_T_COND_SINGLE_DATES - Condition: Single Dates
Data type: VTS_TAB_COND_SINGLE_DATESOptional: No
Call by Reference: Yes
Copy and paste ABAP code example for TB_API_CONDITION_GETLIST 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_e_t_cond | TYPE VTS_TAB_COND, " | |||
| lv_i_rantyp | TYPE RANTYP, " | |||
| lv_i_sgsart | TYPE VVSART, " | |||
| lv_e_t_cond_formula_variables | TYPE VTS_TAB_COND_FORMULA_VARIABLES, " | |||
| lv_i_sfhaart | TYPE TB_SFHAART, " | |||
| lv_e_t_cond_single_dates | TYPE VTS_TAB_COND_SINGLE_DATES, " | |||
| lv_i_t_efinko | TYPE VTB_T_EFINKO, " | |||
| lv_i_t_grkond | TYPE VTB_T_GRKOND. " |
|   CALL FUNCTION 'TB_API_CONDITION_GETLIST' "API: Format Conditions |
| EXPORTING | ||
| I_RANTYP | = lv_i_rantyp | |
| I_SGSART | = lv_i_sgsart | |
| I_SFHAART | = lv_i_sfhaart | |
| I_T_EFINKO | = lv_i_t_efinko | |
| I_T_GRKOND | = lv_i_t_grkond | |
| IMPORTING | ||
| E_T_COND | = lv_e_t_cond | |
| E_T_COND_FORMULA_VARIABLES | = lv_e_t_cond_formula_variables | |
| E_T_COND_SINGLE_DATES | = lv_e_t_cond_single_dates | |
| . " TB_API_CONDITION_GETLIST | ||
ABAP code using 7.40 inline data declarations to call FM TB_API_CONDITION_GETLIST
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.Search for further information about these or an SAP related objects