REPOSITORY_BROWSER SAP Method Repository Browser









Below is documentation, parameters and attributes of ABAP Method REPOSITORY_BROWSER within SAP class IF_RSO_REPOSITORY_BROWSER. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_RSO_REPOSITORY_BROWSER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Instance

This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.

The following technical details of method REPOSITORY_BROWSER can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method REPOSITORY_BROWSER

.

NameTypeData TypeDescriptionDefault Value
I_COLLECT_GROUPINGImportingTYPE
RSO_COLLECT_GROUPING
Grouping when Collecting
I_DD_HANDLEImportingTYPE
I
Drag & Drop Handle
I_DISPLAY_MODEImportingTYPE
CHAR1
Display in the Tree
I_OBJLOGSYSImportingTYPE
LOGSYS
Original System
I_OBJVERSImportingTYPE
RS_OBJVERS
Object Version
I_R_DATA_TREEImportingTYPE REF TO
CL_RSO_DATA_TREE
GUI Tree Control Wrapping
I_R_OBJECT_NETImportingTYPE REF TO
IF_RSO_OBJECT_NETWORK
Display Objects as Network
I_SEARCH_LEVELImportingTYPE
I
Search Depth
I_TH_ASC_TYPE_LOCALImportingTYPE
RSO_TH_ASSOCIATION
Local List of Associations
I_TH_SEARCH_PATHImportingTYPE
RSO_TH_SEARCH_PATH
Search Path
I_T_FILTER_LSYSImportingTYPE
RSO_T_TLOGO
Source System to be Found
I_T_OBJECTImportingTYPE
RSO_T_TLOGO
Type and Name of the Objects
I_WITH_PROGRESS_INDICATORImportingTYPE
RS_BOOL
Display Progress
E_OBJECTS_MISSINGExportingTYPE
RS_BOOL
Objects Missing
E_TH_ASSOCIATIONExportingTYPE
RSO_TH_ASSOCIATION
Associations
E_TH_NODE_RELExportingTYPE
RSO_TH_NODE_REL
Tree for Collected Objects
E_TH_TLOGO_LEVELExportingTYPE
RSO_TH_TLOGO_LEVEL
List of Collected Objects (with level)



Exceptions of Method REPOSITORY_BROWSER

E_OBJECTS_MISSINGExportingTYPE
RS_BOOLObjects MissingE_TH_ASSOCIATIONExportingTYPE
RSO_TH_ASSOCIATIONAssociationsE_TH_NODE_RELExportingTYPE
RSO_TH_NODE_RELTree for Collected ObjectsE_TH_TLOGO_LEVELExportingTYPE
RSO_TH_TLOGO_LEVELList of Collected Objects (with level)OBJECT_NOT_FOUND - Object Could Not Be Found

Example ABAP coding


DATA: lo_class TYPE REF TO IF_RSO_REPOSITORY_BROWSER.
DATA: lv_E_OBJECTS_MISSING TYPE RS_BOOL,
lv_E_TH_ASSOCIATION TYPE RSO_TH_ASSOCIATION,
lv_E_TH_NODE_REL TYPE RSO_TH_NODE_REL,
lv_E_TH_TLOGO_LEVEL TYPE RSO_TH_TLOGO_LEVEL,
lv_I_COLLECT_GROUPING TYPE RSO_COLLECT_GROUPING,
lv_I_DD_HANDLE TYPE I,
lv_I_DISPLAY_MODE TYPE CHAR1,
lv_I_OBJLOGSYS TYPE LOGSYS,
lv_I_OBJVERS TYPE RS_OBJVERS,
lv_I_R_DATA_TREE TYPE CL_RSO_DATA_TREE,
lv_I_R_OBJECT_NET TYPE IF_RSO_OBJECT_NETWORK,
lv_I_SEARCH_LEVEL TYPE I,
lv_I_TH_ASC_TYPE_LOCAL TYPE RSO_TH_ASSOCIATION,
lv_I_TH_SEARCH_PATH TYPE RSO_TH_SEARCH_PATH,
lv_I_T_FILTER_LSYS TYPE RSO_T_TLOGO,
lv_I_T_OBJECT TYPE RSO_T_TLOGO,
lv_I_WITH_PROGRESS_INDICATOR TYPE RS_BOOL,
lv_other TYPE c.

CALL METHOD lo_class=>REPOSITORY_BROWSER(
EXPORTING
I_COLLECT_GROUPING = lv_I_COLLECT_GROUPING
I_DD_HANDLE = lv_I_DD_HANDLE
I_DISPLAY_MODE = lv_I_DISPLAY_MODE
I_OBJLOGSYS = lv_I_OBJLOGSYS
I_OBJVERS = lv_I_OBJVERS
I_R_DATA_TREE = lv_I_R_DATA_TREE
I_R_OBJECT_NET = lv_I_R_OBJECT_NET
I_SEARCH_LEVEL = lv_I_SEARCH_LEVEL
I_TH_ASC_TYPE_LOCAL = lv_I_TH_ASC_TYPE_LOCAL
I_TH_SEARCH_PATH = lv_I_TH_SEARCH_PATH
I_T_FILTER_LSYS = lv_I_T_FILTER_LSYS
I_T_OBJECT = lv_I_T_OBJECT
I_WITH_PROGRESS_INDICATOR = lv_I_WITH_PROGRESS_INDICATOR
IMPORTING
E_OBJECTS_MISSING = lv_E_OBJECTS_MISSING
E_TH_ASSOCIATION = lv_E_TH_ASSOCIATION
E_TH_NODE_REL = lv_E_TH_NODE_REL
E_TH_TLOGO_LEVEL = lv_E_TH_TLOGO_LEVEL ).

Links to Related Class(s)

IF_RSO_R...
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!