SAP VALUE_CURVE_CHAR_SYNC Function Module for NOTRANSL: Abgleich mit den Merkmalsdaten im Klassensystem
VALUE_CURVE_CHAR_SYNC is a standard value curve char sync 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: Abgleich mit den Merkmalsdaten im Klassensystem 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 value curve char sync FM, simply by entering the name VALUE_CURVE_CHAR_SYNC into the relevant SAP transaction such as SE37 or SE38.
Function Group: WMVC
Program Name: SAPLWMVC
Main Program: SAPLWMVC
Appliation area: W
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function VALUE_CURVE_CHAR_SYNC 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 'VALUE_CURVE_CHAR_SYNC'"NOTRANSL: Abgleich mit den Merkmalsdaten im Klassensystem.
EXPORTING
I_ATINN = "Characteristic Number
I_ATNAM = "Characteristic Name
I_ATBEZ = "Characteristic Description
I_WRLST = "DE-EN-LANG-SWITCH-NO-TRANSLATION
I_WL_BEZEI = "Description of the value scale
I_SUPPRESS_DIALOG = "DE-EN-LANG-SWITCH-NO-TRANSLATION
IMPORTING
CANCEL_FLAG = "DE-EN-LANG-SWITCH-NO-TRANSLATION
EXCEPTIONS
NO_ENTRY_FOUND = 1 INTERNAL_ERROR = 2
Customer Function user exits
Below is a list of CUSTOMER FUNCTION exit user exits that are available within this program and maybe relevant for this FM.EXIT_SAPLWMVC_001 User Exit for Selecting a Quota Scale
EXIT_SAPLWMVC_002 User Exit for Automatic Maintenance of Quota Scales
IMPORTING Parameters details for VALUE_CURVE_CHAR_SYNC
I_ATINN - Characteristic Number
Data type: CABN-ATINNOptional: No
Call by Reference: No ( called with pass by value option)
I_ATNAM - Characteristic Name
Data type: CABN-ATNAMOptional: No
Call by Reference: No ( called with pass by value option)
I_ATBEZ - Characteristic Description
Data type: CABNT-ATBEZOptional: No
Call by Reference: No ( called with pass by value option)
I_WRLST - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: WMWK-WRLSTOptional: No
Call by Reference: No ( called with pass by value option)
I_WL_BEZEI - Description of the value scale
Data type: WMWKT-BEZEIOptional: No
Call by Reference: No ( called with pass by value option)
I_SUPPRESS_DIALOG - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: WMQK-DEFAUOptional: No
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for VALUE_CURVE_CHAR_SYNC
CANCEL_FLAG - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type: WMQK-DEFAUOptional: No
Call by Reference: No ( called with pass by value option)
EXCEPTIONS details
NO_ENTRY_FOUND - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
INTERNAL_ERROR - DE-EN-LANG-SWITCH-NO-TRANSLATION
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for VALUE_CURVE_CHAR_SYNC 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_i_atinn | TYPE CABN-ATINN, " | |||
| lv_cancel_flag | TYPE WMQK-DEFAU, " | |||
| lv_no_entry_found | TYPE WMQK, " | |||
| lv_i_atnam | TYPE CABN-ATNAM, " | |||
| lv_internal_error | TYPE CABN, " | |||
| lv_i_atbez | TYPE CABNT-ATBEZ, " | |||
| lv_i_wrlst | TYPE WMWK-WRLST, " | |||
| lv_i_wl_bezei | TYPE WMWKT-BEZEI, " | |||
| lv_i_suppress_dialog | TYPE WMQK-DEFAU. " |
|   CALL FUNCTION 'VALUE_CURVE_CHAR_SYNC' "NOTRANSL: Abgleich mit den Merkmalsdaten im Klassensystem |
| EXPORTING | ||
| I_ATINN | = lv_i_atinn | |
| I_ATNAM | = lv_i_atnam | |
| I_ATBEZ | = lv_i_atbez | |
| I_WRLST | = lv_i_wrlst | |
| I_WL_BEZEI | = lv_i_wl_bezei | |
| I_SUPPRESS_DIALOG | = lv_i_suppress_dialog | |
| IMPORTING | ||
| CANCEL_FLAG | = lv_cancel_flag | |
| EXCEPTIONS | ||
| NO_ENTRY_FOUND = 1 | ||
| INTERNAL_ERROR = 2 | ||
| . " VALUE_CURVE_CHAR_SYNC | ||
ABAP code using 7.40 inline data declarations to call FM VALUE_CURVE_CHAR_SYNC
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 ATINN FROM CABN INTO @DATA(ld_i_atinn). | ||||
| "SELECT single DEFAU FROM WMQK INTO @DATA(ld_cancel_flag). | ||||
| "SELECT single ATNAM FROM CABN INTO @DATA(ld_i_atnam). | ||||
| "SELECT single ATBEZ FROM CABNT INTO @DATA(ld_i_atbez). | ||||
| "SELECT single WRLST FROM WMWK INTO @DATA(ld_i_wrlst). | ||||
| "SELECT single BEZEI FROM WMWKT INTO @DATA(ld_i_wl_bezei). | ||||
| "SELECT single DEFAU FROM WMQK INTO @DATA(ld_i_suppress_dialog). | ||||
Search for further information about these or an SAP related objects