GET_GSS_DATA SAP Method Get data collected by GSS









Below is documentation, parameters and attributes of ABAP Method GET_GSS_DATA within SAP class DTINF_IF_INFORMATION. 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 DTINF_IF_INFORMATION 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 GET_GSS_DATA can also be found below:

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


Parameters of Method GET_GSS_DATA

.

NameTypeData TypeDescriptionDefault Value
IV_SCENARIOImportingTYPE
GSS_SCENARIO
GSS: Scenario for dependent tables
ET_DDFIELDSExportingTYPE
DDFIELDS
DD: Field List
ET_LOOKUP_DATAExportingTYPE
GSS_T_TRANSFER_DATA
GSS: Index Transferstructure for RFC-Calls of Content
ET_LOOKUP_FIELDExportingTYPE
GSS_T_TRANSFER_FIELD
GSS: Lookup-Index Transferstructure for Field
ET_LOOKUP_HIERARCHYExportingTYPE
GSS_T_TRANSFER_HIERARCHY
GSS: Lookup-Index Transferstructure for Hierarchy
ET_LOOKUP_VALUEExportingTYPE
GSS_T_TRANSFER_VALUE
GSS: Lookup-Index Transferstructure for Values
ET_ROW_COUNTExportingTYPE
INT4_TABLE
GSS: Number of Hits Found
ET_TRANSFER_INTELExportingTYPE
DTINF_TT_TRANSFER_INTERNAL
Transfer structure for RFC-Calls of Content
EV_COMPLETEDExportingTYPE
BOOLEAN
Boolean Variable (X=True, -=False, Space=Unknown)
CS_COLL_MONChangingTYPE
DTINF_COLL_MON
Information collection monitor
CT_LOOKUP_FIELDNAMEChangingTYPE
DTINF_TT_LOOKUP_FIELDNAME
Loopup table for field names in DTINF_S_TRANSFER_CI
CT_LOOKUP_FIELDVALUEChangingTYPE
DTINF_TT_LOOKUP_FIELDVALUE
Loopup table for field values in DTINF_S_TRANSFER_CI
CT_LOOKUP_HIERARCHYChangingTYPE
DTINF_TT_LOOKUP_HIERARCHY
Lookup Hierarchy table
CT_LOOKUP_TABNAMEChangingTYPE
DTINF_TT_LOOKUP_TABNAME
Loopup table for table names in DTINF_S_TRANSFER_CI
CT_TABLESChangingTYPE
GSS_T_SEARCH_AREA
GSS: Table Type for GSS_S_SEARCH_AREA
CS_COLL_MONChangingTYPE
DTINF_COLL_MON
Coll Mon



Exceptions of Method GET_GSS_DATA

ET_DDFIELDSExportingTYPE
DDFIELDSDD: Field ListET_LOOKUP_DATAExportingTYPE
GSS_T_TRANSFER_DATAGSS: Index Transferstructure for RFC-Calls of ContentET_LOOKUP_FIELDExportingTYPE
GSS_T_TRANSFER_FIELDGSS: Lookup-Index Transferstructure for FieldET_LOOKUP_HIERARCHYExportingTYPE
GSS_T_TRANSFER_HIERARCHYGSS: Lookup-Index Transferstructure for HierarchyET_LOOKUP_VALUEExportingTYPE
GSS_T_TRANSFER_VALUEGSS: Lookup-Index Transferstructure for ValuesET_ROW_COUNTExportingTYPE
INT4_TABLEGSS: Number of Hits FoundET_TRANSFER_INTELExportingTYPE
DTINF_TT_TRANSFER_INTERNALTransfer structure for RFC-Calls of ContentEV_COMPLETEDExportingTYPE
BOOLEANBoolean Variable (X=True, -=False, Space=Unknown)TABLE_NOT_AVAILABLE - Table does not exist

Example ABAP coding


DATA: lo_class TYPE REF TO DTINF_IF_INFORMATION.
DATA: lv_CS_COLL_MON TYPE DTINF_COLL_MON,
lv_CT_LOOKUP_FIELDNAME TYPE DTINF_TT_LOOKUP_FIELDNAME,
lv_CT_LOOKUP_FIELDVALUE TYPE DTINF_TT_LOOKUP_FIELDVALUE,
lv_CT_LOOKUP_HIERARCHY TYPE DTINF_TT_LOOKUP_HIERARCHY,
lv_CT_LOOKUP_TABNAME TYPE DTINF_TT_LOOKUP_TABNAME,
lv_CT_TABLES TYPE GSS_T_SEARCH_AREA,
lv_ET_DDFIELDS TYPE DDFIELDS,
lv_ET_LOOKUP_DATA TYPE GSS_T_TRANSFER_DATA,
lv_ET_LOOKUP_FIELD TYPE GSS_T_TRANSFER_FIELD,
lv_ET_LOOKUP_HIERARCHY TYPE GSS_T_TRANSFER_HIERARCHY,
lv_ET_LOOKUP_VALUE TYPE GSS_T_TRANSFER_VALUE,
lv_ET_ROW_COUNT TYPE INT4_TABLE,
lv_ET_TRANSFER_INTEL TYPE DTINF_TT_TRANSFER_INTERNAL,
lv_EV_COMPLETED TYPE BOOLEAN,
lv_IV_SCENARIO TYPE GSS_SCENARIO,
lv_CS_COLL_MON TYPE DTINF_COLL_MON,
lv_other TYPE c.

CALL METHOD lo_class=>GET_GSS_DATA(
EXPORTING
IV_SCENARIO = lv_IV_SCENARIO
IMPORTING
ET_DDFIELDS = lv_ET_DDFIELDS
ET_LOOKUP_DATA = lv_ET_LOOKUP_DATA
ET_LOOKUP_FIELD = lv_ET_LOOKUP_FIELD
ET_LOOKUP_HIERARCHY = lv_ET_LOOKUP_HIERARCHY
ET_LOOKUP_VALUE = lv_ET_LOOKUP_VALUE
ET_ROW_COUNT = lv_ET_ROW_COUNT
ET_TRANSFER_INTEL = lv_ET_TRANSFER_INTEL
EV_COMPLETED = lv_EV_COMPLETED
CHANGING
CS_COLL_MON = lv_CS_COLL_MON
CT_LOOKUP_FIELDNAME = lv_CT_LOOKUP_FIELDNAME
CT_LOOKUP_FIELDVALUE = lv_CT_LOOKUP_FIELDVALUE
CT_LOOKUP_HIERARCHY = lv_CT_LOOKUP_HIERARCHY
CT_LOOKUP_TABNAME = lv_CT_LOOKUP_TABNAME
CT_TABLES = lv_CT_TABLES
CS_COLL_MON = lv_CS_COLL_MON ).

Links to Related Class(s)

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