GET_GSS_TABLES_FIELDS SAP Method Get tables and fields for GSS at runtime
Below is documentation, parameters and attributes of ABAP Method GET_GSS_TABLES_FIELDS 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_TABLES_FIELDS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_GSS_TABLES_FIELDS
.| Name | Type | Data Type | Description | Default Value |
| IR_CLST | Importing | TYPE GSS_R_CLST | GSS: Range for GSS_CLST | |
| IT_PRIM_TABLES | Importing | TYPE GSS_T_SEARCH_AREA | GSS: Table Type for Cluster Tables | |
| IV_PURPOSE | Importing | TYPE GSS_SCENARIO | GSS: Scenario for dependent tables | |
| IV_GSS_MASTER_KEY | Importing | TYPE SYSUUID_C32 | 16 Byte UUID in 32 Characters (Hexadecimal Encoded) | |
| ET_IRF_FIELDS | Exporting | TYPE GSS_T_CLST_FIELDS | GSS: Table Type for Cluster Fields | |
| ET_IRF_TABLES | Exporting | TYPE GSS_T_CLST_TABLES | GSS: Table Type for Cluster Tables | |
| EV_READ_ARCHIVE | Exporting | TYPE BOOLEAN | If Archive Data needs to be fetched |
Exceptions of Method GET_GSS_TABLES_FIELDS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO DTINF_IF_INFORMATION.
DATA: lv_ET_IRF_FIELDS TYPE GSS_T_CLST_FIELDS,
lv_ET_IRF_TABLES TYPE GSS_T_CLST_TABLES,
lv_IR_CLST TYPE GSS_R_CLST,
lv_IT_PRIM_TABLES TYPE GSS_T_SEARCH_AREA,
lv_IV_PURPOSE TYPE GSS_SCENARIO,
lv_EV_READ_ARCHIVE TYPE BOOLEAN,
lv_IV_GSS_MASTER_KEY TYPE SYSUUID_C32,
lv_other TYPE c.
CALL METHOD lo_class=>GET_GSS_TABLES_FIELDS(
EXPORTING
IR_CLST = lv_IR_CLST
IT_PRIM_TABLES = lv_IT_PRIM_TABLES
IV_PURPOSE = lv_IV_PURPOSE
IV_GSS_MASTER_KEY = lv_IV_GSS_MASTER_KEY
IMPORTING
ET_IRF_FIELDS = lv_ET_IRF_FIELDS
ET_IRF_TABLES = lv_ET_IRF_TABLES
EV_READ_ARCHIVE = lv_EV_READ_ARCHIVE ).
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