EXTRACT_FRWKEY_FROM_TABLES SAP Method Extract the FRW Keys from a generic table
Below is documentation, parameters and attributes of ABAP Method EXTRACT_FRWKEY_FROM_TABLES within SAP class /SCMTMS/CL_COMMON_HELPER. 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 /SCMTMS/CL_COMMON_HELPER 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 EXTRACT_FRWKEY_FROM_TABLES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXTRACT_FRWKEY_FROM_TABLES
.| Name | Type | Data Type | Description | Default Value |
| IT_TABLE | Importing | TYPE ANY TABLE | Any table with key name KEY | |
| IV_FIELDNAME | Importing | TYPE STRING | Name of the field where the key to be extracted is stored | |
| IV_INCLUDE_INITIAL_KEYS | Importing | TYPE ABAP_BOOL | ||
| ET_FRW_KEY | Exporting | TYPE /BOBF/T_FRW_KEY | Key Table |
Exceptions of Method EXTRACT_FRWKEY_FROM_TABLES
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_FRW_KEY TYPE /BOBF/T_FRW_KEY,
lv_IT_TABLE TYPE ANY TABLE,
lv_IV_FIELDNAME TYPE STRING,
lv_IV_INCLUDE_INITIAL_KEYS TYPE ABAP_BOOL,
lv_other TYPE c.
CALL METHOD /SCMTMS/CL_COMMON_HELPER=>EXTRACT_FRWKEY_FROM_TABLES(
EXPORTING
IT_TABLE = lv_IT_TABLE
IV_FIELDNAME = lv_IV_FIELDNAME
IV_INCLUDE_INITIAL_KEYS = lv_IV_INCLUDE_INITIAL_KEYS
IMPORTING
ET_FRW_KEY = lv_ET_FRW_KEY ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects