GET_FIELDS_OF_REQUEST SAP Method Retrieve the fields for a specific entry of a request









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

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


Parameters of Method GET_FIELDS_OF_REQUEST

.

NameTypeData TypeDescriptionDefault Value
IV_FIELDS_GUIDImportingTYPE
SYSUUID_C32
16 Byte UUID in 32 Characters (Hexadecimal Encoded)
IV_REQUEST_IDImportingTYPE
SYSUUID_C32
16 Byte UUID in 32 Characters (Hexadecimal Encoded)
ET_INTEL_OUTPUTExportingTYPE
DTINF_TT_INTEL_OUTPUT
Table for Intelligible output



Exceptions of Method GET_FIELDS_OF_REQUEST

ET_INTEL_OUTPUTExportingTYPE
DTINF_TT_INTEL_OUTPUTTable for Intelligible outputINVALID_REQUEST_ID -

Example ABAP coding


DATA: lo_class TYPE REF TO DTINF_IF_DATA_COLLECTOR.
DATA: lv_ET_INTEL_OUTPUT TYPE DTINF_TT_INTEL_OUTPUT,
lv_IV_FIELDS_GUID TYPE SYSUUID_C32,
lv_IV_REQUEST_ID TYPE SYSUUID_C32,
lv_other TYPE c.

CALL METHOD lo_class=>GET_FIELDS_OF_REQUEST(
EXPORTING
IV_FIELDS_GUID = lv_IV_FIELDS_GUID
IV_REQUEST_ID = lv_IV_REQUEST_ID
IMPORTING
ET_INTEL_OUTPUT = lv_ET_INTEL_OUTPUT ).

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!