SAP CVV3_DDOC_SET_ALL_READY Function Module for NOTRANSL: DDS: Abschluß der Bearbeitung mehrerer DDOC-Komponenten
CVV3_DDOC_SET_ALL_READY is a standard cvv3 ddoc set all ready SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: DDS: Abschluß der Bearbeitung mehrerer DDOC-Komponenten 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 cvv3 ddoc set all ready FM, simply by entering the name CVV3_DDOC_SET_ALL_READY into the relevant SAP transaction such as SE37 or SE38.
Function Group: CVV3
Program Name: SAPLCVV3
Main Program:
Appliation area: C
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CVV3_DDOC_SET_ALL_READY 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 'CVV3_DDOC_SET_ALL_READY'"NOTRANSL: DDS: Abschluß der Bearbeitung mehrerer DDOC-Komponenten.
EXPORTING
I_STATUS = "Status
* I_MSGTY = 'I' "Error Description
* I_MSGID = '25' "DE-EN-LANG-SWITCH-NO-TRANSLATION
I_MSGNO = "
* I_MSGV1 = ' ' "
* I_MSGV2 = ' ' "
* I_MSGV3 = ' ' "
* I_MSGV4 = ' ' "
* I_EXIT = ' ' "
TABLES
DDOC_TAB = "DE-EN-LANG-SWITCH-NO-TRANSLATION
EXCEPTIONS
ERROR = 1 WRONG_STATUS = 2
IMPORTING Parameters details for CVV3_DDOC_SET_ALL_READY
I_STATUS - Status
Data type: DRZOC-STATUSOptional: No
Call by Reference: No ( called with pass by value option)
I_MSGTY - Error Description
Data type: SY-MSGTYDefault: 'I'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGID - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: SY-MSGIDDefault: '25'
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGNO -
Data type: SY-MSGNOOptional: No
Call by Reference: No ( called with pass by value option)
I_MSGV1 -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGV2 -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGV3 -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_MSGV4 -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_EXIT -
Data type:Default: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for CVV3_DDOC_SET_ALL_READY
DDOC_TAB - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: CVIORDERCOMPOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
WRONG_STATUS -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CVV3_DDOC_SET_ALL_READY 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_error | TYPE STRING, " | |||
| lt_ddoc_tab | TYPE STANDARD TABLE OF CVIORDERCOMP, " | |||
| lv_i_status | TYPE DRZOC-STATUS, " | |||
| lv_i_msgty | TYPE SY-MSGTY, " 'I' | |||
| lv_wrong_status | TYPE SY, " | |||
| lv_i_msgid | TYPE SY-MSGID, " '25' | |||
| lv_i_msgno | TYPE SY-MSGNO, " | |||
| lv_i_msgv1 | TYPE SY, " SPACE | |||
| lv_i_msgv2 | TYPE SY, " SPACE | |||
| lv_i_msgv3 | TYPE SY, " SPACE | |||
| lv_i_msgv4 | TYPE SY, " SPACE | |||
| lv_i_exit | TYPE SY. " SPACE |
|   CALL FUNCTION 'CVV3_DDOC_SET_ALL_READY' "NOTRANSL: DDS: Abschluß der Bearbeitung mehrerer DDOC-Komponenten |
| EXPORTING | ||
| I_STATUS | = lv_i_status | |
| I_MSGTY | = lv_i_msgty | |
| I_MSGID | = lv_i_msgid | |
| I_MSGNO | = lv_i_msgno | |
| I_MSGV1 | = lv_i_msgv1 | |
| I_MSGV2 | = lv_i_msgv2 | |
| I_MSGV3 | = lv_i_msgv3 | |
| I_MSGV4 | = lv_i_msgv4 | |
| I_EXIT | = lv_i_exit | |
| TABLES | ||
| DDOC_TAB | = lt_ddoc_tab | |
| EXCEPTIONS | ||
| ERROR = 1 | ||
| WRONG_STATUS = 2 | ||
| . " CVV3_DDOC_SET_ALL_READY | ||
ABAP code using 7.40 inline data declarations to call FM CVV3_DDOC_SET_ALL_READY
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 STATUS FROM DRZOC INTO @DATA(ld_i_status). | ||||
| "SELECT single MSGTY FROM SY INTO @DATA(ld_i_msgty). | ||||
| DATA(ld_i_msgty) | = 'I'. | |||
| "SELECT single MSGID FROM SY INTO @DATA(ld_i_msgid). | ||||
| DATA(ld_i_msgid) | = '25'. | |||
| "SELECT single MSGNO FROM SY INTO @DATA(ld_i_msgno). | ||||
| DATA(ld_i_msgv1) | = ' '. | |||
| DATA(ld_i_msgv2) | = ' '. | |||
| DATA(ld_i_msgv3) | = ' '. | |||
| DATA(ld_i_msgv4) | = ' '. | |||
| DATA(ld_i_exit) | = ' '. | |||
Search for further information about these or an SAP related objects