Entering content frameProcedure documentation Call the view cluster maintenance dialog Locate the document in its SAP Library structure

You can call the generated maintenance dialogs in different ways:

 

CALL FUNCTION 'VIEW CLUSTER_MAINTENANCE_CALL'

     EXPORTING

          VIEWCLUSTER_NAME =

* START_OBJECT = ' '

          MAINTENANCE_ACTION =

* READ_KIND = ' '

* SHOW_SELECTION_POPUP = ' '

* CORR_NUMBER = ' '

* NO_WARNING_FOR_CLIENTINDEP = ' '

* TABLES

* DBA_SELLIST =

* DBA_SELLIST_CLUSTER =

* EXCL_CUA_FUNCT_ALL_OBJECTS =

* EXCL_CUA_FUNCT_CLUSTER =

     EXCEPTIONS

          CLIENT_REFERENCE = 1

          FOREIGN_LOCK = 2

          VIEW CLUSTER_NOT_FOUND = 3

          VIEW CLUSTER_IS_INCONSISTENT = 4

          MISSING_GENERATED_FUNCTION = 5

          NO_UPD_AUTH = 6

          NO_SHOW_AUTH = 7

          OBJECT_NOT_FOUND = 8

          NO_TVDIR_ENTRY = 9

          NO_CLIENTINDEP_AUTH = 10

          INVALID_ACTION = 11

          SAVING_CORRECTION_FAILED = 12

          SYSTEM_FAILURE = 13

          UNKNOWN_FIELD_IN_DBA_SELLIST = 14

          MISSING_CORR_NUMBER = 15

          OTHERS = 16.

With this call, you must pass the following parameters to the function module:

Parameter

contains

VIEW CLUSTER_NAME

view cluster name

START_OBJECT

initial object for the view cluster maintenance (optional)

MAINTANANCE_ACTION

the action to be performed: display (S), maintain (U), transport (T)

READ_KIND

Read type: (optional)

‘ ‘: read all view cluster objects

‘T’: read, starting at the header entry, only for one branch of the hierarchy

SHOW_SELECTION_POPUP

whether to display the dialog box for entering selection conditions (optional)

CORR_NUMBER

correction number for changes made (optional)

NO_WARNING_FOR_CLIENTINDEP

whether to suppress the warning. The table is client-independent (optional)

DBA_SELLIST

the selection conditions for the initial object (optional)

DBA_SELLIST_CLUSTER

the selection conditions for any view cluster objects (optional)

EXCL_CUA_FUNCT_ALL_OBJECTS

table of all GUI functions you want to deactivate for all view cluster objects (optional)

EXCL_CUA_FUNCT_CLUSTER

table with all GUI functions you want to deactivate for any view cluster objects (optional)

For more information on export parameters, see the function module documentation.

 

 

Leaving content frame