SAP FOX0_VC_MAINT_RFC_WRAPPER Function Module for









FOX0_VC_MAINT_RFC_WRAPPER is a standard fox0 vc maint rfc wrapper 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 fox0 vc maint rfc wrapper FM, simply by entering the name FOX0_VC_MAINT_RFC_WRAPPER into the relevant SAP transaction such as SE37 or SE38.

Function Group: FOX0_VCLUSTER_DISPATCH
Program Name: SAPLFOX0_VCLUSTER_DISPATCH
Main Program: SAPLFOX0_VCLUSTER_DISPATCH
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function FOX0_VC_MAINT_RFC_WRAPPER 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 'FOX0_VC_MAINT_RFC_WRAPPER'"
EXPORTING
IV_VIEWCLUSTER = "
IV_MAINT_ACTION = "

IMPORTING
EV_CHANGED_DATE = "
EV_CHANGED_TIME = "
EV_PROFILE_STATE = "

TABLES
CT_DBA_SELLIST = "

EXCEPTIONS
CLIENT_REFERENCE = 1 NO_CLIENTINDEP_AUTH = 10 INVALID_ACTION = 11 SAVING_CORRECTION_FAILED = 12 SYSTEM_FAILURE = 13 UNKNOWN_FIELD_IN_DBA_SELLIST = 14 MISSING_CORR_NUMBER = 15 GENERAL_ERROR = 16 FOREIGN_LOCK = 2 VIEWCLUSTER_NOT_FOUND = 3 VIEWCLUSTER_IS_INCONSISTENT = 4 MISSING_GENERATED_FUNCTION = 5 NO_UPD_AUTH = 6 NO_SHOW_AUTH = 7 OBJECT_NOT_FOUND = 8 NO_TVDIR_ENTRY = 9
.



IMPORTING Parameters details for FOX0_VC_MAINT_RFC_WRAPPER

IV_VIEWCLUSTER -

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

IV_MAINT_ACTION -

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

EXPORTING Parameters details for FOX0_VC_MAINT_RFC_WRAPPER

EV_CHANGED_DATE -

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

EV_CHANGED_TIME -

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

EV_PROFILE_STATE -

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

TABLES Parameters details for FOX0_VC_MAINT_RFC_WRAPPER

CT_DBA_SELLIST -

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

EXCEPTIONS details

CLIENT_REFERENCE -

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

NO_CLIENTINDEP_AUTH -

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

INVALID_ACTION -

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

SAVING_CORRECTION_FAILED -

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

SYSTEM_FAILURE -

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

UNKNOWN_FIELD_IN_DBA_SELLIST -

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

MISSING_CORR_NUMBER -

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

GENERAL_ERROR -

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

FOREIGN_LOCK -

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

VIEWCLUSTER_NOT_FOUND -

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

VIEWCLUSTER_IS_INCONSISTENT -

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

MISSING_GENERATED_FUNCTION -

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

NO_UPD_AUTH -

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

NO_SHOW_AUTH -

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

OBJECT_NOT_FOUND -

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

NO_TVDIR_ENTRY -

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

Copy and paste ABAP code example for FOX0_VC_MAINT_RFC_WRAPPER 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:
lt_ct_dba_sellist  TYPE STANDARD TABLE OF VIMSELLIST, "   
lv_iv_viewcluster  TYPE VCL_NAME, "   
lv_ev_changed_date  TYPE SY-DATUM, "   
lv_client_reference  TYPE SY, "   
lv_no_clientindep_auth  TYPE SY, "   
lv_invalid_action  TYPE SY, "   
lv_saving_correction_failed  TYPE SY, "   
lv_system_failure  TYPE SY, "   
lv_unknown_field_in_dba_sellist  TYPE SY, "   
lv_missing_corr_number  TYPE SY, "   
lv_general_error  TYPE SY, "   
lv_foreign_lock  TYPE SY, "   
lv_ev_changed_time  TYPE SY-UZEIT, "   
lv_iv_maint_action  TYPE CHAR1, "   
lv_ev_profile_state  TYPE FOX3_ACTIVE, "   
lv_viewcluster_not_found  TYPE FOX3_ACTIVE, "   
lv_viewcluster_is_inconsistent  TYPE FOX3_ACTIVE, "   
lv_missing_generated_function  TYPE FOX3_ACTIVE, "   
lv_no_upd_auth  TYPE FOX3_ACTIVE, "   
lv_no_show_auth  TYPE FOX3_ACTIVE, "   
lv_object_not_found  TYPE FOX3_ACTIVE, "   
lv_no_tvdir_entry  TYPE FOX3_ACTIVE. "   

  CALL FUNCTION 'FOX0_VC_MAINT_RFC_WRAPPER'  "
    EXPORTING
         IV_VIEWCLUSTER = lv_iv_viewcluster
         IV_MAINT_ACTION = lv_iv_maint_action
    IMPORTING
         EV_CHANGED_DATE = lv_ev_changed_date
         EV_CHANGED_TIME = lv_ev_changed_time
         EV_PROFILE_STATE = lv_ev_profile_state
    TABLES
         CT_DBA_SELLIST = lt_ct_dba_sellist
    EXCEPTIONS
        CLIENT_REFERENCE = 1
        NO_CLIENTINDEP_AUTH = 10
        INVALID_ACTION = 11
        SAVING_CORRECTION_FAILED = 12
        SYSTEM_FAILURE = 13
        UNKNOWN_FIELD_IN_DBA_SELLIST = 14
        MISSING_CORR_NUMBER = 15
        GENERAL_ERROR = 16
        FOREIGN_LOCK = 2
        VIEWCLUSTER_NOT_FOUND = 3
        VIEWCLUSTER_IS_INCONSISTENT = 4
        MISSING_GENERATED_FUNCTION = 5
        NO_UPD_AUTH = 6
        NO_SHOW_AUTH = 7
        OBJECT_NOT_FOUND = 8
        NO_TVDIR_ENTRY = 9
. " FOX0_VC_MAINT_RFC_WRAPPER




ABAP code using 7.40 inline data declarations to call FM FOX0_VC_MAINT_RFC_WRAPPER

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 DATUM FROM SY INTO @DATA(ld_ev_changed_date).
 
 
 
 
 
 
 
 
 
 
"SELECT single UZEIT FROM SY INTO @DATA(ld_ev_changed_time).
 
 
 
 
 
 
 
 
 
 


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!