I need a specialist for the FUBA VIEWCLUSTER_MAINTENANCE_CALL

HI
I have to call via VIEWCLUSTER_MAINTENANCE_CALL a view which is part of a viewcluster.
I already called a view on objectlevel 2 with successfully with additional selection-criteria.
Coding:
TYPES: BEGIN OF vclty_sellist_for_object,
         object  LIKE vclstruc-object, "Viewname
         sellist LIKE vimsellist OCCURS 1,
       END OF vclty_sellist_for_object.
DATA dba_sellist_cluster TYPE TABLE OF vclty_sellist_for_object.
DATA wa_dba_sellist_cluster TYPE vclty_sellist_for_object.
DATA wa_dba_sellist TYPE vimsellist.
DATA dba_sellist TYPE TABLE OF vimsellist.
wa_dba_sellist-viewfield = 'FIELD_CONTROL'.
wa_dba_sellist-operator = 'EQ'.
wa_dba_sellist-value = '0SAP'.
APPEND wa_dba_sellist to dba_sellist.
wa_dba_sellist_cluster-sellist = dba_sellist.
wa_dba_sellist_cluster-object = 'V_DPR_FC'.   "level 1 and default startobj
APPEND wa_dba_sellist_cluster TO dba_sellist_cluster.
CALL FUNCTION 'VIEWCLUSTER_MAINTENANCE_CALL'
  EXPORTING
    viewcluster_name                   = 'VC_DPR_FC'
    start_object                       = 'V_DPR_FC_FC_OBJT'   "level 2
    maintenance_action                 = 'S'
    suppress_wa_popup                  = 'X'
TABLES
     dba_sellist_cluster                = dba_sellist_cluster.
But here comes the problem.
I have to call a view which is on objectlevel 3 in the viewcluster.
This view is successor of the first one.
An additional selectioncriteria for "objecttype" has to be made.
I thought it would be logical if i only add a new line in dba_sellist_cluster with the new selection criteria.
Like Coding: (past in front of the fuba-call)
CLEAR dba_sellist.
wa_dba_sellist-viewfield = 'OBJECT_TYPE'.
wa_dba_sellist-operator = 'EQ'.
wa_dba_sellist-value = 'TTO'.
APPEND wa_dba_sellist to dba_sellist.
wa_dba_sellist_cluster-sellist = dba_sellist.
wa_dba_sellist_cluster-object = 'V_DPR_FC_FC_OBJT'.
APPEND wa_dba_sellist_cluster TO dba_sellist_cluster.
and call the FUBA than with start_object   = 'V_DPR_FC_CI'  "(level 3)
But this doesn't work.
The selection-screen for the object_type field pops up.
Thereby the previous set field_control is set to the correct value, but the object_type value is initial.
I tried many combinations but with no success.
Could someone please help me with my problem?

It's not listed here?
Printer and Scanner software available for download:
http://support.apple.com/kb/HT3669?viewlocale=en_US

Similar Messages

Maybe you are looking for