SAP CV222_WEB_SET_TEXTS Function Module for NOTRANSL: DVS: Texte für Dialoge im ActiveX für Up/Download vorbelegen
CV222_WEB_SET_TEXTS is a standard cv222 web set texts 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: DVS: Texte für Dialoge im ActiveX für Up/Download vorbelegen 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 cv222 web set texts FM, simply by entering the name CV222_WEB_SET_TEXTS into the relevant SAP transaction such as SE37 or SE38.
Function Group: CV222
Program Name: SAPLCV222
Main Program:
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function CV222_WEB_SET_TEXTS 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 'CV222_WEB_SET_TEXTS'"NOTRANSL: DVS: Texte für Dialoge im ActiveX für Up/Download vorbelegen.
EXPORTING
* TITLE = ' ' "Heading
* WARN_TEXT1 = ' ' "Generic Type
* WARN_TEXT2 = ' ' "Generic Type
* EXPLAIN_TEXT1 = ' ' "Generic Type
* EXPLAIN_TEXT2 = ' ' "Generic Type
* SHOW_NO_MORE = ' ' "Never Display Again
* TEMPLATE_TEXT = ' ' "Generic Type
IMPORTING Parameters details for CV222_WEB_SET_TEXTS
TITLE - Heading
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
WARN_TEXT1 - Generic Type
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
WARN_TEXT2 - Generic Type
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPLAIN_TEXT1 - Generic Type
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPLAIN_TEXT2 - Generic Type
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
SHOW_NO_MORE - Never Display Again
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
TEMPLATE_TEXT - Generic Type
Data type: CDefault: ' '
Optional: Yes
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for CV222_WEB_SET_TEXTS 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_title | TYPE C, " ' ' | |||
| lv_warn_text1 | TYPE C, " ' ' | |||
| lv_warn_text2 | TYPE C, " ' ' | |||
| lv_explain_text1 | TYPE C, " ' ' | |||
| lv_explain_text2 | TYPE C, " ' ' | |||
| lv_show_no_more | TYPE C, " ' ' | |||
| lv_template_text | TYPE C. " ' ' |
|   CALL FUNCTION 'CV222_WEB_SET_TEXTS' "NOTRANSL: DVS: Texte für Dialoge im ActiveX für Up/Download vorbelegen |
| EXPORTING | ||
| TITLE | = lv_title | |
| WARN_TEXT1 | = lv_warn_text1 | |
| WARN_TEXT2 | = lv_warn_text2 | |
| EXPLAIN_TEXT1 | = lv_explain_text1 | |
| EXPLAIN_TEXT2 | = lv_explain_text2 | |
| SHOW_NO_MORE | = lv_show_no_more | |
| TEMPLATE_TEXT | = lv_template_text | |
| . " CV222_WEB_SET_TEXTS | ||
ABAP code using 7.40 inline data declarations to call FM CV222_WEB_SET_TEXTS
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.| DATA(ld_title) | = ' '. | |||
| DATA(ld_warn_text1) | = ' '. | |||
| DATA(ld_warn_text2) | = ' '. | |||
| DATA(ld_explain_text1) | = ' '. | |||
| DATA(ld_explain_text2) | = ' '. | |||
| DATA(ld_show_no_more) | = ' '. | |||
| DATA(ld_template_text) | = ' '. | |||
Search for further information about these or an SAP related objects