GET_TARGET_FIELD SAP Method Determine Field Properties of Target Field









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

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


Parameters of Method GET_TARGET_FIELD

.

NameTypeData TypeDescriptionDefault Value
IO_FCATImportingTYPE REF TO
IF_UG_SCDT_FIELD_CATALOG
Interface for Class CL_UG_SCDT_FIELD_CATALOG
IS_FPROPImportingTYPE
UGMD_SCDT_S_FPROP
Description of a Field in Field Catalog
ET_FPROPExportingTYPE
UGMD_SCDT_T_FPROP
Description of a Field in Field Catalog



Exceptions of Method GET_TARGET_FIELD

This method does not have any exceptions

Example ABAP coding


DATA: lo_class TYPE REF TO IF_UG_SCDT_FIELD_MAPPING.
DATA: lv_ET_FPROP TYPE UGMD_SCDT_T_FPROP,
lv_IO_FCAT TYPE IF_UG_SCDT_FIELD_CATALOG,
lv_IS_FPROP TYPE UGMD_SCDT_S_FPROP,
lv_other TYPE c.

CALL METHOD lo_class=>GET_TARGET_FIELD(
EXPORTING
IO_FCAT = lv_IO_FCAT
IS_FPROP = lv_IS_FPROP
IMPORTING
ET_FPROP = lv_ET_FPROP ).

Links to Related Class(s)

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