DD_ABAP_TO_EXEC_CNV is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name DD_ABAP_TO_EXEC_CNV into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
SDNT
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'DD_ABAP_TO_EXEC_CNV' "Generation of DB statement table from EXEC-SQL statement table
* EXPORTING
* upgrade = SPACE " ddrefstruc-bool
TABLES
statements_in = " Table with SQL statements (EXEC-SQL/ENDEXEC)
statements_out = "
EXCEPTIONS
CONVERSION_ERROR = 1 " If statements have incorrect structure
. " DD_ABAP_TO_EXEC_CNV
The ABAP code below is a full code listing to execute function module DD_ABAP_TO_EXEC_CNV including all data declarations. The code uses 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 original method of declaring data variables up front. 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).
| it_statements_in | TYPE STANDARD TABLE OF STRING,"TABLES PARAM |
| wa_statements_in | LIKE LINE OF it_statements_in , |
| it_statements_out | TYPE STANDARD TABLE OF STRING,"TABLES PARAM |
| wa_statements_out | LIKE LINE OF it_statements_out . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_upgrade | TYPE DDREFSTRUC-BOOL , |
| it_statements_in | TYPE STANDARD TABLE OF STRING , |
| wa_statements_in | LIKE LINE OF it_statements_in, |
| it_statements_out | TYPE STANDARD TABLE OF STRING , |
| wa_statements_out | LIKE LINE OF it_statements_out. |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name DD_ABAP_TO_EXEC_CNV or its description.
DD_ABAP_TO_EXEC_CNV - Generation of DB statement table from EXEC-SQL statement table DDUT_TYPE_TO_LENGTH - DD: Computaton of Char. Length of a Type (Currently only for Data Elem DDUT_TEXT_FOR_VALUE - DD: Define Text of a Value for an ABAP Dictionary Field DDUT_TEXTTABLE_GET - DD: Determine Text Table for a Table of ABAP Dictionary DDUT_OBJECT_COPY - DD:Copy Object DDUT_INPUT_CHECK - DD: Simulation of Input Checks of DYNP for an ABAP Dictionary Field