SAP DD_DB_INNER_CONVERTER Function Module for
DD_DB_INNER_CONVERTER is a standard dd db inner converter 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 db inner converter FM, simply by entering the name DD_DB_INNER_CONVERTER into the relevant SAP transaction such as SE37 or SE38.
Function Group: SDDD
Program Name: SAPLSDDD
Main Program: SAPLSDDD
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function DD_DB_INNER_CONVERTER 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_DB_INNER_CONVERTER'".
EXPORTING
* PRID = 0 "ID of the error output channel
* PARALLEL = ' ' "or serial process execution
* PRE_DONE = ' ' "
IMPORTING
RC = "=0: OK, otherwise error
TABLES
OBJECT = "Range table
TABNAME = "Range table
INDNAME = "Range table
TGORDER = "Range table
FCT = "Range table
EXECMODE = "Range table
SEVERITY = "Range table
GDATE = "Range table
GUSER = "Range table
EXCEPTIONS
NO_OF_POOLS_EXCEEDED = 1
IMPORTING Parameters details for DD_DB_INNER_CONVERTER
PRID - ID of the error output channel
Data type: SY-TABIXOptional: Yes
Call by Reference: No ( called with pass by value option)
PARALLEL - or serial process execution
Data type: DDREFSTRUC-BOOLDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
PRE_DONE -
Data type: DDREFSTRUC-BOOLDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for DD_DB_INNER_CONVERTER
RC - =0: OK, otherwise error
Data type: SY-SUBRCOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for DD_DB_INNER_CONVERTER
OBJECT - Range table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TABNAME - Range table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INDNAME - Range table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
TGORDER - Range table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
FCT - Range table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXECMODE - Range table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
SEVERITY - Range table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
GDATE - Range table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
GUSER - Range table
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_OF_POOLS_EXCEEDED - Too many subroutine pools
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DD_DB_INNER_CONVERTER 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_rc | TYPE SY-SUBRC, " | |||
| lv_prid | TYPE SY-TABIX, " 0 | |||
| lt_object | TYPE STANDARD TABLE OF SY, " | |||
| lv_no_of_pools_exceeded | TYPE SY, " | |||
| lt_tabname | TYPE STANDARD TABLE OF SY, " | |||
| lv_parallel | TYPE DDREFSTRUC-BOOL, " ' ' | |||
| lt_indname | TYPE STANDARD TABLE OF DDREFSTRUC, " | |||
| lv_pre_done | TYPE DDREFSTRUC-BOOL, " ' ' | |||
| lt_tgorder | TYPE STANDARD TABLE OF DDREFSTRUC, " | |||
| lt_fct | TYPE STANDARD TABLE OF DDREFSTRUC, " | |||
| lt_execmode | TYPE STANDARD TABLE OF DDREFSTRUC, " | |||
| lt_severity | TYPE STANDARD TABLE OF DDREFSTRUC, " | |||
| lt_gdate | TYPE STANDARD TABLE OF DDREFSTRUC, " | |||
| lt_guser | TYPE STANDARD TABLE OF DDREFSTRUC. " |
|   CALL FUNCTION 'DD_DB_INNER_CONVERTER' " |
| EXPORTING | ||
| PRID | = lv_prid | |
| PARALLEL | = lv_parallel | |
| PRE_DONE | = lv_pre_done | |
| IMPORTING | ||
| RC | = lv_rc | |
| TABLES | ||
| OBJECT | = lt_object | |
| TABNAME | = lt_tabname | |
| INDNAME | = lt_indname | |
| TGORDER | = lt_tgorder | |
| FCT | = lt_fct | |
| EXECMODE | = lt_execmode | |
| SEVERITY | = lt_severity | |
| GDATE | = lt_gdate | |
| GUSER | = lt_guser | |
| EXCEPTIONS | ||
| NO_OF_POOLS_EXCEEDED = 1 | ||
| . " DD_DB_INNER_CONVERTER | ||
ABAP code using 7.40 inline data declarations to call FM DD_DB_INNER_CONVERTER
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 SUBRC FROM SY INTO @DATA(ld_rc). | ||||
| "SELECT single TABIX FROM SY INTO @DATA(ld_prid). | ||||
| "SELECT single BOOL FROM DDREFSTRUC INTO @DATA(ld_parallel). | ||||
| DATA(ld_parallel) | = ' '. | |||
| "SELECT single BOOL FROM DDREFSTRUC INTO @DATA(ld_pre_done). | ||||
| DATA(ld_pre_done) | = ' '. | |||
Search for further information about these or an SAP related objects