SAP CV130_ADDITIONAL_DATA_REMOVE Function Module for NOTRANSL: DVS: Zusatzdaten für eine Verknüpfung löschen









CV130_ADDITIONAL_DATA_REMOVE is a standard cv130 additional data remove 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: Zusatzdaten für eine Verknüpfung löschen 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 cv130 additional data remove FM, simply by entering the name CV130_ADDITIONAL_DATA_REMOVE into the relevant SAP transaction such as SE37 or SE38.

Function Group: CV130
Program Name: SAPLCV130
Main Program: SAPLCV130
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function CV130_ADDITIONAL_DATA_REMOVE 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 'CV130_ADDITIONAL_DATA_REMOVE'"NOTRANSL: DVS: Zusatzdaten für eine Verknüpfung löschen
EXPORTING
* PF_SELECT_DATA = '' "Generic Type
* PF_CHECK = 'X' "Generic Type
* PF_DEL_CLASS = "Generic Type
* PF_DEL_TEXT = "Generic Type
* PF_DEL_VALUATION = "Generic Type
* PF_SAVE_DIRECT = '' "Generic Type

IMPORTING
PF_CHECK_CLASS = "Generic Type
PF_CHECK_TEXT = "Generic Type
PF_CHECK_VALUATION = "Generic Type
PF_CLASS_OBJECT = "Generic Type
PF_TEXT_OBJECT = "Generic Type

CHANGING
PS_DRAD = "DE-EN-LANG-SWITCH-NO-TRANSLATION

EXCEPTIONS
ERROR_CLASS = 1 NO_SELECT = 2 ERROR_TEXT = 3
.



IMPORTING Parameters details for CV130_ADDITIONAL_DATA_REMOVE

PF_SELECT_DATA - Generic Type

Data type: C
Default: ''
Optional: Yes
Call by Reference: No ( called with pass by value option)

PF_CHECK - Generic Type

Data type: C
Default: 'X'
Optional: Yes
Call by Reference: Yes

PF_DEL_CLASS - Generic Type

Data type: C
Optional: Yes
Call by Reference: Yes

PF_DEL_TEXT - Generic Type

Data type: C
Optional: Yes
Call by Reference: Yes

PF_DEL_VALUATION - Generic Type

Data type: C
Optional: Yes
Call by Reference: Yes

PF_SAVE_DIRECT - Generic Type

Data type: C
Default: ''
Optional: Yes
Call by Reference: Yes

EXPORTING Parameters details for CV130_ADDITIONAL_DATA_REMOVE

PF_CHECK_CLASS - Generic Type

Data type: C
Optional: No
Call by Reference: Yes

PF_CHECK_TEXT - Generic Type

Data type: C
Optional: No
Call by Reference: Yes

PF_CHECK_VALUATION - Generic Type

Data type: C
Optional: No
Call by Reference: Yes

PF_CLASS_OBJECT - Generic Type

Data type: C
Optional: No
Call by Reference: Yes

PF_TEXT_OBJECT - Generic Type

Data type: C
Optional: No
Call by Reference: Yes

CHANGING Parameters details for CV130_ADDITIONAL_DATA_REMOVE

PS_DRAD - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: Yes

EXCEPTIONS details

ERROR_CLASS - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

NO_SELECT - DE-EN-LANG-SWITCH-NO-TRANSLATION

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

ERROR_TEXT -

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for CV130_ADDITIONAL_DATA_REMOVE 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_ps_drad  TYPE STRING, "   
lv_error_class  TYPE STRING, "   
lv_pf_check_class  TYPE C, "   
lv_pf_select_data  TYPE C, "   ''
lv_pf_check  TYPE C, "   'X'
lv_no_select  TYPE C, "   
lv_pf_check_text  TYPE C, "   
lv_error_text  TYPE C, "   
lv_pf_del_class  TYPE C, "   
lv_pf_check_valuation  TYPE C, "   
lv_pf_del_text  TYPE C, "   
lv_pf_class_object  TYPE C, "   
lv_pf_text_object  TYPE C, "   
lv_pf_del_valuation  TYPE C, "   
lv_pf_save_direct  TYPE C. "   ''

  CALL FUNCTION 'CV130_ADDITIONAL_DATA_REMOVE'  "NOTRANSL: DVS: Zusatzdaten für eine Verknüpfung löschen
    EXPORTING
         PF_SELECT_DATA = lv_pf_select_data
         PF_CHECK = lv_pf_check
         PF_DEL_CLASS = lv_pf_del_class
         PF_DEL_TEXT = lv_pf_del_text
         PF_DEL_VALUATION = lv_pf_del_valuation
         PF_SAVE_DIRECT = lv_pf_save_direct
    IMPORTING
         PF_CHECK_CLASS = lv_pf_check_class
         PF_CHECK_TEXT = lv_pf_check_text
         PF_CHECK_VALUATION = lv_pf_check_valuation
         PF_CLASS_OBJECT = lv_pf_class_object
         PF_TEXT_OBJECT = lv_pf_text_object
    CHANGING
         PS_DRAD = lv_ps_drad
    EXCEPTIONS
        ERROR_CLASS = 1
        NO_SELECT = 2
        ERROR_TEXT = 3
. " CV130_ADDITIONAL_DATA_REMOVE




ABAP code using 7.40 inline data declarations to call FM CV130_ADDITIONAL_DATA_REMOVE

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_pf_select_data) = ''.
 
DATA(ld_pf_check) = 'X'.
 
 
 
 
 
 
 
 
 
 
DATA(ld_pf_save_direct) = ''.
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!