ADD_FIELD_DATA SAP Method of class DTINF_CL_GSS_DATA









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

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

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_CL_GSS_DATA 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 ADD_FIELD_DATA can also be found below:

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


Parameters of Method ADD_FIELD_DATA

.

NameTypeData TypeDescriptionDefault Value
IS_FULL_DATAImportingTYPE
DTINF_S_INTEL_OUTPUT_INTERNAL
Table Cluster ID
IS_TABLE_LINKImportingTYPE
DTINF_S_RFC_TC_LINK
Fields linking TC in remote systems
IT_GSS_SELTABImportingTYPE
GTB_T_SELTAB
GTB: Internal Table Type for Several Conditions
IV_FIELDS_GUIDImportingTYPE
SYSUUID_C32
16 Byte UUID in 32 Characters (Hexadecimal Encoded)
IV_FORCE_KEYImportingTYPE
INT4
Natural number
CT_KEY_FIELDSChangingTYPE
DTINF_TT_INTEL_OUTPUT_INTERNAL
Table for Intelligible output (runtime usage)
CT_NONKEY_FIELDSChangingTYPE
DTINF_TT_INTEL_OUTPUT_INTERNAL
Table for Intelligible output (runtime usage)
CV_FOUND_KEY_FIELDSChangingTYPE
INT4
Natural number



Exceptions of Method ADD_FIELD_DATA

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lo_class TYPE REF TO DTINF_CL_GSS_DATA.
DATA: lv_CT_KEY_FIELDS TYPE DTINF_TT_INTEL_OUTPUT_INTERNAL,
lv_CT_NONKEY_FIELDS TYPE DTINF_TT_INTEL_OUTPUT_INTERNAL,
lv_CV_FOUND_KEY_FIELDS TYPE INT4,
lv_IS_FULL_DATA TYPE DTINF_S_INTEL_OUTPUT_INTERNAL,
lv_IS_TABLE_LINK TYPE DTINF_S_RFC_TC_LINK,
lv_IT_GSS_SELTAB TYPE GTB_T_SELTAB,
lv_IV_FIELDS_GUID TYPE SYSUUID_C32,
lv_IV_FORCE_KEY TYPE INT4,
lv_other TYPE c.

CALL METHOD lo_class=>ADD_FIELD_DATA(
EXPORTING
IS_FULL_DATA = lv_IS_FULL_DATA
IS_TABLE_LINK = lv_IS_TABLE_LINK
IT_GSS_SELTAB = lv_IT_GSS_SELTAB
IV_FIELDS_GUID = lv_IV_FIELDS_GUID
IV_FORCE_KEY = lv_IV_FORCE_KEY
CHANGING
CT_KEY_FIELDS = lv_CT_KEY_FIELDS
CT_NONKEY_FIELDS = lv_CT_NONKEY_FIELDS
CV_FOUND_KEY_FIELDS = lv_CV_FOUND_KEY_FIELDS ).

Links to Related Class(s)

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