SAP TB_TR_DEAL_SELECT_DYNAMICALLY Function Module for Dynamic Access to Transactions
TB_TR_DEAL_SELECT_DYNAMICALLY is a standard tb tr deal select dynamically SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Dynamic Access to Transactions 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 tr deal select dynamically FM, simply by entering the name TB_TR_DEAL_SELECT_DYNAMICALLY into the relevant SAP transaction such as SE37 or SE38.
Function Group: TBP1
Program Name: SAPLTBP1
Main Program: SAPLTBP1
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function TB_TR_DEAL_SELECT_DYNAMICALLY 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_TR_DEAL_SELECT_DYNAMICALLY'"Dynamic Access to Transactions.
EXPORTING
* TRANGE = "Freie Selektionsbedingungen pro Tabelle
* TFIELD = "Zu selektierende Felder pro Tabelle
* I_DATE = "Key Date
IMPORTING
TFHA = "Transactions
TFHAZU = "Activities
TFINKO = "Conditions
TFHAPO = "Flows
TAFINKO = "Alternativkonditionen
TSECO = "
EXCEPTIONS
INVALID_SELECTION_FIELDS = 1
IMPORTING Parameters details for TB_TR_DEAL_SELECT_DYNAMICALLY
TRANGE - Freie Selektionsbedingungen pro Tabelle
Data type: RSDS_TRANGEOptional: Yes
Call by Reference: No ( called with pass by value option)
TFIELD - Zu selektierende Felder pro Tabelle
Data type: RSFS_FIELDSOptional: Yes
Call by Reference: No ( called with pass by value option)
I_DATE - Key Date
Data type: SY-DATUMOptional: Yes
Call by Reference: Yes
EXPORTING Parameters details for TB_TR_DEAL_SELECT_DYNAMICALLY
TFHA - Transactions
Data type: TRTB_TFHAOptional: No
Call by Reference: No ( called with pass by value option)
TFHAZU - Activities
Data type: TRTB_TFHAZUOptional: No
Call by Reference: No ( called with pass by value option)
TFINKO - Conditions
Data type: TRTB_TFINKOOptional: No
Call by Reference: No ( called with pass by value option)
TFHAPO - Flows
Data type: TRTB_TFHAPOOptional: No
Call by Reference: No ( called with pass by value option)
TAFINKO - Alternativkonditionen
Data type: TRTB_TAFINKOOptional: No
Call by Reference: No ( called with pass by value option)
TSECO -
Data type: TRTB_SECOOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
INVALID_SELECTION_FIELDS - Invalid selection
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for TB_TR_DEAL_SELECT_DYNAMICALLY 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_tfha | TYPE TRTB_TFHA, " | |||
| lv_trange | TYPE RSDS_TRANGE, " | |||
| lv_invalid_selection_fields | TYPE RSDS_TRANGE, " | |||
| lv_tfhazu | TYPE TRTB_TFHAZU, " | |||
| lv_tfield | TYPE RSFS_FIELDS, " | |||
| lv_i_date | TYPE SY-DATUM, " | |||
| lv_tfinko | TYPE TRTB_TFINKO, " | |||
| lv_tfhapo | TYPE TRTB_TFHAPO, " | |||
| lv_tafinko | TYPE TRTB_TAFINKO, " | |||
| lv_tseco | TYPE TRTB_SECO. " |
|   CALL FUNCTION 'TB_TR_DEAL_SELECT_DYNAMICALLY' "Dynamic Access to Transactions |
| EXPORTING | ||
| TRANGE | = lv_trange | |
| TFIELD | = lv_tfield | |
| I_DATE | = lv_i_date | |
| IMPORTING | ||
| TFHA | = lv_tfha | |
| TFHAZU | = lv_tfhazu | |
| TFINKO | = lv_tfinko | |
| TFHAPO | = lv_tfhapo | |
| TAFINKO | = lv_tafinko | |
| TSECO | = lv_tseco | |
| EXCEPTIONS | ||
| INVALID_SELECTION_FIELDS = 1 | ||
| . " TB_TR_DEAL_SELECT_DYNAMICALLY | ||
ABAP code using 7.40 inline data declarations to call FM TB_TR_DEAL_SELECT_DYNAMICALLY
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 DATUM FROM SY INTO @DATA(ld_i_date). | ||||
Search for further information about these or an SAP related objects