SAP DD_NTAB_DB_CMP Function Module for
DD_NTAB_DB_CMP is a standard dd ntab db cmp SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, 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 ntab db cmp FM, simply by entering the name DD_NTAB_DB_CMP into the relevant SAP transaction such as SE37 or SE38.
Function Group: SDB3
Program Name: SAPLSDB3
Main Program: SAPLSDB3
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DD_NTAB_DB_CMP 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_NTAB_DB_CMP'".
EXPORTING
* PRID = 0 "
TABNAME = "
X030L_WA_OWN = "
* WHICH_NTAB = 'A' "
IMPORTING
SUBRC = "
TABLES
NAMETAB_DB_TAB = "
X031L_TAB_OWN = "
EXCEPTIONS
TABLE_NOT_ON_DATABASE = 1 MAPPING_ERROR = 2
IMPORTING Parameters details for DD_NTAB_DB_CMP
PRID -
Data type: SY-TABIXOptional: Yes
Call by Reference: No ( called with pass by value option)
TABNAME -
Data type: DD02L-TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
X030L_WA_OWN -
Data type: X030LOptional: No
Call by Reference: No ( called with pass by value option)
WHICH_NTAB -
Data type:Default: 'A'
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for DD_NTAB_DB_CMP
SUBRC -
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for DD_NTAB_DB_CMP
NAMETAB_DB_TAB -
Data type: DBNTABOptional: No
Call by Reference: No ( called with pass by value option)
X031L_TAB_OWN -
Data type: X031LOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
TABLE_NOT_ON_DATABASE -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
MAPPING_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DD_NTAB_DB_CMP 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_prid | TYPE SY-TABIX, " 0 | |||
| lv_subrc | TYPE SY-SUBRC, " | |||
| lt_nametab_db_tab | TYPE STANDARD TABLE OF DBNTAB, " | |||
| lv_table_not_on_database | TYPE DBNTAB, " | |||
| lv_tabname | TYPE DD02L-TABNAME, " | |||
| lv_mapping_error | TYPE DD02L, " | |||
| lt_x031l_tab_own | TYPE STANDARD TABLE OF X031L, " | |||
| lv_x030l_wa_own | TYPE X030L, " | |||
| lv_which_ntab | TYPE X030L. " 'A' |
|   CALL FUNCTION 'DD_NTAB_DB_CMP' " |
| EXPORTING | ||
| PRID | = lv_prid | |
| TABNAME | = lv_tabname | |
| X030L_WA_OWN | = lv_x030l_wa_own | |
| WHICH_NTAB | = lv_which_ntab | |
| IMPORTING | ||
| SUBRC | = lv_subrc | |
| TABLES | ||
| NAMETAB_DB_TAB | = lt_nametab_db_tab | |
| X031L_TAB_OWN | = lt_x031l_tab_own | |
| EXCEPTIONS | ||
| TABLE_NOT_ON_DATABASE = 1 | ||
| MAPPING_ERROR = 2 | ||
| . " DD_NTAB_DB_CMP | ||
ABAP code using 7.40 inline data declarations to call FM DD_NTAB_DB_CMP
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 TABIX FROM SY INTO @DATA(ld_prid). | ||||
| "SELECT single SUBRC FROM SY INTO @DATA(ld_subrc). | ||||
| "SELECT single TABNAME FROM DD02L INTO @DATA(ld_tabname). | ||||
| DATA(ld_which_ntab) | = 'A'. | |||
Search for further information about these or an SAP related objects