SAP VIEWCLUSTER_DIRECT_ADJUST Function Module for









VIEWCLUSTER_DIRECT_ADJUST is a standard viewcluster direct adjust 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 viewcluster direct adjust FM, simply by entering the name VIEWCLUSTER_DIRECT_ADJUST into the relevant SAP transaction such as SE37 or SE38.

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



Function VIEWCLUSTER_DIRECT_ADJUST 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 'VIEWCLUSTER_DIRECT_ADJUST'"
EXPORTING
VIEWCLUSTER_NAME = "View Cluster Name
MAINTENANCE_ACTION = "
* CORR_NUMBER = ' ' "Correction Number for Changes Made
* NO_WARNING_FOR_CLIENTINDEP = ' ' "Flag: no warning for client-indep. objects
* RFC_DESTINATION = ' ' "RFC Dest. of System for Comparison/Adjustment

TABLES
* TT_TABLES_KEYS = "

EXCEPTIONS
CLIENT_REFERENCE = 1 NO_CLIENTINDEP_AUTH = 10 INVALID_ACTION = 11 SAVING_CORRECTION_FAILED = 12 UNKNOWN_FIELD_IN_DBA_SELLIST = 13 MISSING_CORR_NUMBER = 14 ENQ_SYSTEM_FAILURE = 15 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 VIEWCLUSTER_DIRECT_ADJUST

VIEWCLUSTER_NAME - View Cluster Name

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

MAINTENANCE_ACTION -

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

CORR_NUMBER - Correction Number for Changes Made

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

NO_WARNING_FOR_CLIENTINDEP - Flag: no warning for client-indep. objects

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

RFC_DESTINATION - RFC Dest. of System for Comparison/Adjustment

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

TABLES Parameters details for VIEWCLUSTER_DIRECT_ADJUST

TT_TABLES_KEYS -

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

EXCEPTIONS details

CLIENT_REFERENCE - Object Chained in Another Client

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

NO_CLIENTINDEP_AUTH - No Maint. Auth. for Client-Indep. Objects

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

INVALID_ACTION - MAINTENANCE_ACTION Contains Invalid Value

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

SAVING_CORRECTION_FAILED - Correction Entries Save Error

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

UNKNOWN_FIELD_IN_DBA_SELLIST - Selection Table Contains Unknown Fields

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

MISSING_CORR_NUMBER - Correction Number Missing

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

ENQ_SYSTEM_FAILURE - System Lock Error

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

FOREIGN_LOCK - Object is Locked by Another User

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

VIEWCLUSTER_NOT_FOUND - View Cluster Does Not Exist

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

VIEWCLUSTER_IS_INCONSISTENT - View Cluster Definition is Inconsistent

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

MISSING_GENERATED_FUNCTION - Generated View maintenance Modules Missing

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

NO_UPD_AUTH - No Maintenance Authorization

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

NO_SHOW_AUTH - No Display Authorization

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

OBJECT_NOT_FOUND - Object Not Found in DDIC

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

NO_TVDIR_ENTRY - Object not entered in TVDIR

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

Copy and paste ABAP code example for VIEWCLUSTER_DIRECT_ADJUST 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_tt_tables_keys  TYPE STANDARD TABLE OF SLCTR_TABLES_KEYS, "   
lv_client_reference  TYPE SLCTR_TABLES_KEYS, "   
lv_viewcluster_name  TYPE VCLDIR-VCLNAME, "   
lv_no_clientindep_auth  TYPE VCLDIR, "   
lv_invalid_action  TYPE VCLDIR, "   
lv_saving_correction_failed  TYPE VCLDIR, "   
lv_unknown_field_in_dba_sellist  TYPE VCLDIR, "   
lv_missing_corr_number  TYPE VCLDIR, "   
lv_enq_system_failure  TYPE VCLDIR, "   
lv_foreign_lock  TYPE VCLDIR, "   
lv_maintenance_action  TYPE VCLDIR, "   
lv_corr_number  TYPE E070-TRKORR, "   ' '
lv_viewcluster_not_found  TYPE E070, "   
lv_no_warning_for_clientindep  TYPE E070, "   ' '
lv_viewcluster_is_inconsistent  TYPE E070, "   
lv_rfc_destination  TYPE RFCDES-RFCDEST, "   ' '
lv_missing_generated_function  TYPE RFCDES, "   
lv_no_upd_auth  TYPE RFCDES, "   
lv_no_show_auth  TYPE RFCDES, "   
lv_object_not_found  TYPE RFCDES, "   
lv_no_tvdir_entry  TYPE RFCDES. "   

  CALL FUNCTION 'VIEWCLUSTER_DIRECT_ADJUST'  "
    EXPORTING
         VIEWCLUSTER_NAME = lv_viewcluster_name
         MAINTENANCE_ACTION = lv_maintenance_action
         CORR_NUMBER = lv_corr_number
         NO_WARNING_FOR_CLIENTINDEP = lv_no_warning_for_clientindep
         RFC_DESTINATION = lv_rfc_destination
    TABLES
         TT_TABLES_KEYS = lt_tt_tables_keys
    EXCEPTIONS
        CLIENT_REFERENCE = 1
        NO_CLIENTINDEP_AUTH = 10
        INVALID_ACTION = 11
        SAVING_CORRECTION_FAILED = 12
        UNKNOWN_FIELD_IN_DBA_SELLIST = 13
        MISSING_CORR_NUMBER = 14
        ENQ_SYSTEM_FAILURE = 15
        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
. " VIEWCLUSTER_DIRECT_ADJUST




ABAP code using 7.40 inline data declarations to call FM VIEWCLUSTER_DIRECT_ADJUST

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 VCLNAME FROM VCLDIR INTO @DATA(ld_viewcluster_name).
 
 
 
 
 
 
 
 
 
"SELECT single TRKORR FROM E070 INTO @DATA(ld_corr_number).
DATA(ld_corr_number) = ' '.
 
 
DATA(ld_no_warning_for_clientindep) = ' '.
 
 
"SELECT single RFCDEST FROM RFCDES INTO @DATA(ld_rfc_destination).
DATA(ld_rfc_destination) = ' '.
 
 
 
 
 
 


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!