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 directlyThe 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
.| Name | Type | Data Type | Description | Default Value |
| IV_DIREC | Importing | TYPE /ECRS/DIREC | Direction (Receipt, Dispatch) | |
| IV_GUID_RPHD | Importing | TYPE /ECRS/GUID_16 | GUID in 'RAW' format | |
| IV_RPCTI | Importing | TYPE /ECRS/RPCTI | Country of Declaration (ISO Code) | |
| IV_RPLEV | Importing | TYPE /ECRS/RPLEV | Declaration Level | |
| ET_RPCF | Exporting | TYPE /ECRS/RPCF_ST | Sorted Table for Control Field: Declaration Item | |
| ET_RPCH | Exporting | TYPE /ECRS/RPCH_ST | Standard Table for Field Control: Declaration Header | |
| ET_RPCM | Exporting | TYPE /ECRS/RPCM_ST | Sorted Table to Determine Special Case: Declaration Item | |
| ET_RPCS | Exporting | TYPE /ECRS/RPCS_ST | Sorted Table for Field Control: Declaration Item |
Exceptions of Method READ_FIELD_CONTROL
This method does not have any exceptionsExample 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