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

Function DD_TABL_ACTIVATE_CV 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_TABL_ACTIVATE_CV'".
EXPORTING
* OBJ_TYPE = 'TABL' "
PRID = "
* STATUS = ' ' "
TABNAME = "
X030L_WA = "
IMPORTING
DD02V_WA = "
TABLES
X031L_TAB = "
EXCEPTIONS
ACTIVATION_NOT_SUCCESSFULL = 1
IMPORTING Parameters details for DD_TABL_ACTIVATE_CV
OBJ_TYPE -
Data type: TBATG-OBJECTDefault: 'TABL'
Optional: Yes
Call by Reference: No ( called with pass by value option)
PRID -
Data type: SY-TABIXOptional: No
Call by Reference: No ( called with pass by value option)
STATUS -
Data type: DDXTT-MODEFLAGDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABNAME -
Data type: TBATG-TABNAMEOptional: No
Call by Reference: No ( called with pass by value option)
X030L_WA -
Data type: X030LOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for DD_TABL_ACTIVATE_CV
DD02V_WA -
Data type: DD02VOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for DD_TABL_ACTIVATE_CV
X031L_TAB -
Data type: X031LOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ACTIVATION_NOT_SUCCESSFULL -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for DD_TABL_ACTIVATE_CV 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_dd02v_wa | TYPE DD02V, " | |||
| lv_obj_type | TYPE TBATG-OBJECT, " 'TABL' | |||
| lt_x031l_tab | TYPE STANDARD TABLE OF X031L, " | |||
| lv_activation_not_successfull | TYPE X031L, " | |||
| lv_prid | TYPE SY-TABIX, " | |||
| lv_status | TYPE DDXTT-MODEFLAG, " SPACE | |||
| lv_tabname | TYPE TBATG-TABNAME, " | |||
| lv_x030l_wa | TYPE X030L. " |
|   CALL FUNCTION 'DD_TABL_ACTIVATE_CV' " |
| EXPORTING | ||
| OBJ_TYPE | = lv_obj_type | |
| PRID | = lv_prid | |
| STATUS | = lv_status | |
| TABNAME | = lv_tabname | |
| X030L_WA | = lv_x030l_wa | |
| IMPORTING | ||
| DD02V_WA | = lv_dd02v_wa | |
| TABLES | ||
| X031L_TAB | = lt_x031l_tab | |
| EXCEPTIONS | ||
| ACTIVATION_NOT_SUCCESSFULL = 1 | ||
| . " DD_TABL_ACTIVATE_CV | ||
ABAP code using 7.40 inline data declarations to call FM DD_TABL_ACTIVATE_CV
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 OBJECT FROM TBATG INTO @DATA(ld_obj_type). | ||||
| DATA(ld_obj_type) | = 'TABL'. | |||
| "SELECT single TABIX FROM SY INTO @DATA(ld_prid). | ||||
| "SELECT single MODEFLAG FROM DDXTT INTO @DATA(ld_status). | ||||
| DATA(ld_status) | = ' '. | |||
| "SELECT single TABNAME FROM TBATG INTO @DATA(ld_tabname). | ||||
Search for further information about these or an SAP related objects