READ_FIELD_CONTROL SAP Method (BL Internal) Read Field Control









Below is documentation, parameters and attributes of ABAP Method READ_FIELD_CONTROL within SAP class /ECRS/CL_BL_TD. 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 /ECRS/CL_BL_TD into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.


Method Type - Static

This is a Static Method so you can call it directly

The following technical details of method READ_FIELD_CONTROL can also be found below:

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


Parameters of Method READ_FIELD_CONTROL

.

NameTypeData TypeDescriptionDefault Value
IV_DIRECImportingTYPE
/ECRS/DIREC
Direction (Receipt, Dispatch)
IV_GUID_RPHDImportingTYPE
/ECRS/GUID_16
GUID in 'RAW' format
IV_RPCTIImportingTYPE
/ECRS/RPCTI
Country of Declaration (ISO Code)
IV_RPLEVImportingTYPE
/ECRS/RPLEV
Declaration Level
ET_RPCFExportingTYPE
/ECRS/RPCF_ST
Sorted Table for Control Field: Declaration Item
ET_RPCHExportingTYPE
/ECRS/RPCH_ST
Standard Table for Field Control: Declaration Header
ET_RPCMExportingTYPE
/ECRS/RPCM_ST
Sorted Table to Determine Special Case: Declaration Item
ET_RPCSExportingTYPE
/ECRS/RPCS_ST
Sorted Table for Field Control: Declaration Item



Exceptions of Method READ_FIELD_CONTROL

This method does not have any exceptions

Example ABAP coding


DATA: lv_ET_RPCF TYPE /ECRS/RPCF_ST,
lv_ET_RPCH TYPE /ECRS/RPCH_ST,
lv_ET_RPCM TYPE /ECRS/RPCM_ST,
lv_ET_RPCS TYPE /ECRS/RPCS_ST,
lv_IV_DIREC TYPE /ECRS/DIREC,
lv_IV_GUID_RPHD TYPE /ECRS/GUID_16,
lv_IV_RPCTI TYPE /ECRS/RPCTI,
lv_IV_RPLEV TYPE /ECRS/RPLEV,
lv_other TYPE c.

CALL METHOD /ECRS/CL_BL_TD=>READ_FIELD_CONTROL(
EXPORTING
IV_DIREC = lv_IV_DIREC
IV_GUID_RPHD = lv_IV_GUID_RPHD
IV_RPCTI = lv_IV_RPCTI
IV_RPLEV = lv_IV_RPLEV
IMPORTING
ET_RPCF = lv_ET_RPCF
ET_RPCH = lv_ET_RPCH
ET_RPCM = lv_ET_RPCM
ET_RPCS = lv_ET_RPCS ).

Links to Related Class(s)

/ECRS/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!