SAP CL_GUI_ECATT_BROWSER OO Class - Browser for eCATT Objects and Test Catalogs in Hierarchies









CL_GUI_ECATT_BROWSER is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class CL_GUI_ECATT_BROWSER including details of:

  • Interface class implementations
  • Inheritance details
  • Methods defined within class ( including link to full details )
  • Attributes ( including initial values )
  • Class Events



Method list of CL_GUI_ECATT_BROWSER SAP class


A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD. Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...


Method NameDescriptionVisability
BROWSER_PAIPAI Processing for BrowserPublic
CALL METHOD cl_gui_ecatt_browser=>BROWSER_PAI...more details

BROWSER_PBOPBO Processing for BrowserPublic
CALL METHOD cl_gui_ecatt_browser=>BROWSER_PBO...more details

CONSTRUCTORConstructorPublic
CALL METHOD cl_gui_ecatt_browser=>CONSTRUCTOR...more details

CREATE_BROWSER_STRUCTUREGenerate eCATT Browser Structure with Customizing LinkPrivate
CALL METHOD cl_gui_ecatt_browser=>CREATE_BROWSER_STRUCTURE...more details

FINISH_BROWSERRelease HierarchiesPrivate
CALL METHOD cl_gui_ecatt_browser=>FINISH_BROWSER...more details

GET_BROWSER_IDGet GUIID of eCATT Browser StructurePrivate
CALL METHOD cl_gui_ecatt_browser=>GET_BROWSER_ID...more details

GET_BROWSER_VISIBILITYGet Browser VisibilityPublic
CALL METHOD cl_gui_ecatt_browser=>GET_BROWSER_VISIBILITY...more details

ON_BUTTON_LIBRARY_SELECTEDLibrary Button SelectedPrivate
CALL METHOD cl_gui_ecatt_browser=>ON_BUTTON_LIBRARY_SELECTED...more details

ON_BUTTON_OBJFIL_SELECTEDObject Filter Button SelectedPrivate
CALL METHOD cl_gui_ecatt_browser=>ON_BUTTON_OBJFIL_SELECTED...more details

ON_BUTTON_SEARCH_SELECTEDSearch Button SelectedPrivate
CALL METHOD cl_gui_ecatt_browser=>ON_BUTTON_SEARCH_SELECTED...more details

READ_OBJECT_REFERENCES_TO_NODEReads Object References for NodePrivate
CALL METHOD cl_gui_ecatt_browser=>READ_OBJECT_REFERENCES_TO_NODE...more details

REGISTER_EVENTSRegister GUI Element EventsPrivate
CALL METHOD cl_gui_ecatt_browser=>REGISTER_EVENTS...more details

SEARCH_STRUCTURESearch in eCATT Browser StructurePrivate
CALL METHOD cl_gui_ecatt_browser=>SEARCH_STRUCTURE...more details

SET_BROWSER_VISIBILITYSet Browser VisibilityPublic
CALL METHOD cl_gui_ecatt_browser=>SET_BROWSER_VISIBILITY...more details

SET_HIERARCHYSet Hierarchies for Browser DisplayPrivate
CALL METHOD cl_gui_ecatt_browser=>SET_HIERARCHY...more details

SET_INPUT_FIELDSInput and Selection Fields for Search, Filter,...Public
CALL METHOD cl_gui_ecatt_browser=>SET_INPUT_FIELDS...more details

SET_OBJECT_FILTERSets Hierarchy FilterPrivate
CALL METHOD cl_gui_ecatt_browser=>SET_OBJECT_FILTER...more details

SET_TEST_ALV_GRID_OLDFill Test ALV GridPublic
CALL METHOD cl_gui_ecatt_browser=>SET_TEST_ALV_GRID_OLD...more details

START_BROWSERInitialize HierarchiesPublic
CALL METHOD cl_gui_ecatt_browser=>START_BROWSER...more details



CL_GUI_ECATT_BROWSER attributes

List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.

NameLevelDescriptionInitial ValueTypeVisability
ACTUAL_NODEInstance AttributeNode Selected in HierarchyLIKE
HIER_IFACE
Public
ACTUAL_OBJECTInstance AttributeObject Selected from OBJECT_REFERENCESLIKE
ECBR_NODER
Public
BROWSER_VISIBLEInstance AttributeBrowser Visibility, 'X' = VisibleLIKE
ETBROW_VIS
Private
BROWSER_VISIBLE_ECSCInstance AttributeBrowser Visibility for eCATT Script, 'X' = VisibleLIKE
ETBROW_VIS
Private
BUTTON_LIBRARYInstance AttributeButton for Library SelectionLIKE
CL_DD_BUTTON_ELEMENT
Private
BUTTON_OBJECT_FILTERInstance AttributeFilter ButtonLIKE
CL_DD_BUTTON_ELEMENT
Private
BUTTON_SEARCHInstance AttributeSearch ButtonLIKE
CL_DD_BUTTON_ELEMENT
Private
DOC1Instance AttributeDocument for Input ElementsLIKE
CL_DD_DOCUMENT
Private
EX_ECATTInstance AttributeBasis Class for eCATT - ExceptionsLIKE
CX_ECATT
Private
FILTER_LISTInstance AttributeFilter TableLIKE
SDYDO_OPTION_TAB
Private
FORM1Instance AttributeForm for Input ElementsLIKE
CL_DD_FORM_AREA
Private
INPUT_SEARCHInstance AttributeInput Line for Search String 1LIKE
CL_DD_INPUT_ELEMENT
Private
OBJECT_REFERENCESInstance AttributeReferences: Objects on NodesLIKE
ECBR_NODER_TABTYPE
Public
PARENT_CONTAINERInstance AttributeParent Container for CL_GUI_ECATT_BROWSER Graphical ElementsLIKE
CL_GUI_OBJECT
Public
RESULTInstance AttributeResult Help Variable for ControlsLIKE
I
Private
SPLITTER1Instance AttributeSplitter for Input, Functions and HierarchyLIKE
CL_GUI_SPLITTER_CONTAINER
Public
SPLITTER1_CONT1Instance AttributeContainer for Splitter Area 1LIKE
CL_GUI_CONTAINER
Private
SPLITTER1_CONT2Instance AttributeContainer for Splitter Area 2LIKE
CL_GUI_CONTAINER
Private
SPLITTER1_CONT3Instance AttributeContainer for Splitter Area 3LIKE
CL_GUI_CONTAINER
Public
STRUCTURE_IDInstance AttributeGUID for StructureLIKE
TTREE-ID
Public
TEST_ALVGRIDInstance AttributeALV List ViewerLIKE
CL_GUI_ALV_GRID
Public
TOOLBARInstance AttributeTree Control Toolbar ButtonsLIKE
ETSTREETOOLB_TABTYPE
Private


Events of Class CL_GUI_ECATT_BROWSER

Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... EV_BROWSER_VISIBILITY_CHANGED - Browser Visibility Changed

Links to Related Class(s)

CL_GUI_E...
Full list of available SAP object classes

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!