SAP DD_TMPNTAB_CRE Function Module for Generation of run time objects of temporary tables
DD_TMPNTAB_CRE is a standard dd tmpntab cre SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Generation of run time objects of temporary tables 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 dd tmpntab cre FM, simply by entering the name DD_TMPNTAB_CRE into the relevant SAP transaction such as SE37 or SE38.
Function Group: SDB6
Program Name: SAPLSDB6
Main Program: SAPLSDB6
Appliation area: S
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DD_TMPNTAB_CRE 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 'DD_TMPNTAB_CRE'"Generation of run time objects of temporary tables.
EXPORTING
X030L_WA = "
TABNAME_TMP = "
* TABFORM = 'T' "
* TABTYPE = 'T' "
IMPORTING
X030L_WA_MOD = "
TABLES
X031L_TAB = "
* X031L_TAB_MOD = "
EXCEPTIONS
OP_FAILURE = 1 ILLEGAL_VALUE = 2
IMPORTING Parameters details for DD_TMPNTAB_CRE
X030L_WA -
Data type: X030LOptional: No
Call by Reference: No ( called with pass by value option)
TABNAME_TMP -
Data type: DD02L-TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
TABFORM -
Data type:Default: 'T'
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABTYPE -
Data type:Default: 'T'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for DD_TMPNTAB_CRE
X030L_WA_MOD -
Data type: X030LOptional: No
Call by Reference: Yes
TABLES Parameters details for DD_TMPNTAB_CRE
X031L_TAB -
Data type: X031LOptional: No
Call by Reference: No ( called with pass by value option)
X031L_TAB_MOD -
Data type: X031LOptional: Yes
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
OP_FAILURE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
ILLEGAL_VALUE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DD_TMPNTAB_CRE 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_x030l_wa | TYPE X030L, " | |||
| lt_x031l_tab | TYPE STANDARD TABLE OF X031L, " | |||
| lv_op_failure | TYPE X031L, " | |||
| lv_x030l_wa_mod | TYPE X030L, " | |||
| lv_tabname_tmp | TYPE DD02L-TABNAME, " | |||
| lv_illegal_value | TYPE DD02L, " | |||
| lt_x031l_tab_mod | TYPE STANDARD TABLE OF X031L, " | |||
| lv_tabform | TYPE X031L, " 'T' | |||
| lv_tabtype | TYPE X031L. " 'T' |
|   CALL FUNCTION 'DD_TMPNTAB_CRE' "Generation of run time objects of temporary tables |
| EXPORTING | ||
| X030L_WA | = lv_x030l_wa | |
| TABNAME_TMP | = lv_tabname_tmp | |
| TABFORM | = lv_tabform | |
| TABTYPE | = lv_tabtype | |
| IMPORTING | ||
| X030L_WA_MOD | = lv_x030l_wa_mod | |
| TABLES | ||
| X031L_TAB | = lt_x031l_tab | |
| X031L_TAB_MOD | = lt_x031l_tab_mod | |
| EXCEPTIONS | ||
| OP_FAILURE = 1 | ||
| ILLEGAL_VALUE = 2 | ||
| . " DD_TMPNTAB_CRE | ||
ABAP code using 7.40 inline data declarations to call FM DD_TMPNTAB_CRE
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 TABNAME FROM DD02L INTO @DATA(ld_tabname_tmp). | ||||
| DATA(ld_tabform) | = 'T'. | |||
| DATA(ld_tabtype) | = 'T'. | |||
Search for further information about these or an SAP related objects