SAP FRML312_ATTRIBUTE_READ Function Module for NOTRANSL: RMS-FRM: Lesen des Strukturteils des Objektes Formula
FRML312_ATTRIBUTE_READ is a standard frml312 attribute read SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for NOTRANSL: RMS-FRM: Lesen des Strukturteils des Objektes Formula processing and below is the pattern details for this FM, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for frml312 attribute read FM, simply by entering the name FRML312_ATTRIBUTE_READ into the relevant SAP transaction such as SE37 or SE38.
Function Group: FRML312
Program Name: SAPLFRML312
Main Program: SAPLFRML312
Appliation area: M
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FRML312_ATTRIBUTE_READ pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'FRML312_ATTRIBUTE_READ'"NOTRANSL: RMS-FRM: Lesen des Strukturteils des Objektes Formula.
EXPORTING
I_FURTHER_SETTINGS = "
I_ENTITIES = "
TABLES
I_KEYNR_TAB = "
* E_TRX_TAB = "
* E_TRH_TAB = "
* E_TVH_TAB = "
* E_TVA_TAB = "
* E_TPR_TAB = "
* E_TDU_TAB = "
* E_TRI_TAB = "
* E_TIL_TAB = "
EXCEPTIONS
INTERNAL_ERROR = 1
IMPORTING Parameters details for FRML312_ATTRIBUTE_READ
I_FURTHER_SETTINGS -
Data type: FRM33_FURTHER_SETTINGS_TYPEOptional: No
Call by Reference: No ( called with pass by value option)
I_ENTITIES -
Data type: FRM33_ENTITY_FLAGSOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for FRML312_ATTRIBUTE_READ
I_KEYNR_TAB -
Data type: FRM33_KEY_TAB_TYPEOptional: No
Call by Reference: Yes
E_TRX_TAB -
Data type: FRM33_TRX_TAB_TYPEOptional: Yes
Call by Reference: Yes
E_TRH_TAB -
Data type: FRM33_TRH_TAB_TYPEOptional: Yes
Call by Reference: Yes
E_TVH_TAB -
Data type: FRM33_TVH_TAB_TYPEOptional: Yes
Call by Reference: Yes
E_TVA_TAB -
Data type: FRM33_TVA_TAB_TYPEOptional: Yes
Call by Reference: Yes
E_TPR_TAB -
Data type: FRM33_TPR_TAB_TYPEOptional: Yes
Call by Reference: Yes
E_TDU_TAB -
Data type: FRM33_TDU_TAB_TYPEOptional: Yes
Call by Reference: Yes
E_TRI_TAB -
Data type: FRM33_TRI_TAB_TYPEOptional: Yes
Call by Reference: Yes
E_TIL_TAB -
Data type: FRM33_TIL_TAB_TYPEOptional: Yes
Call by Reference: Yes
EXCEPTIONS details
INTERNAL_ERROR -
Data type:Optional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FRML312_ATTRIBUTE_READ Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lt_i_keynr_tab | TYPE STANDARD TABLE OF FRM33_KEY_TAB_TYPE, " | |||
| lv_internal_error | TYPE FRM33_KEY_TAB_TYPE, " | |||
| lv_i_further_settings | TYPE FRM33_FURTHER_SETTINGS_TYPE, " | |||
| lt_e_trx_tab | TYPE STANDARD TABLE OF FRM33_TRX_TAB_TYPE, " | |||
| lv_i_entities | TYPE FRM33_ENTITY_FLAGS, " | |||
| lt_e_trh_tab | TYPE STANDARD TABLE OF FRM33_TRH_TAB_TYPE, " | |||
| lt_e_tvh_tab | TYPE STANDARD TABLE OF FRM33_TVH_TAB_TYPE, " | |||
| lt_e_tva_tab | TYPE STANDARD TABLE OF FRM33_TVA_TAB_TYPE, " | |||
| lt_e_tpr_tab | TYPE STANDARD TABLE OF FRM33_TPR_TAB_TYPE, " | |||
| lt_e_tdu_tab | TYPE STANDARD TABLE OF FRM33_TDU_TAB_TYPE, " | |||
| lt_e_tri_tab | TYPE STANDARD TABLE OF FRM33_TRI_TAB_TYPE, " | |||
| lt_e_til_tab | TYPE STANDARD TABLE OF FRM33_TIL_TAB_TYPE. " |
|   CALL FUNCTION 'FRML312_ATTRIBUTE_READ' "NOTRANSL: RMS-FRM: Lesen des Strukturteils des Objektes Formula |
| EXPORTING | ||
| I_FURTHER_SETTINGS | = lv_i_further_settings | |
| I_ENTITIES | = lv_i_entities | |
| TABLES | ||
| I_KEYNR_TAB | = lt_i_keynr_tab | |
| E_TRX_TAB | = lt_e_trx_tab | |
| E_TRH_TAB | = lt_e_trh_tab | |
| E_TVH_TAB | = lt_e_tvh_tab | |
| E_TVA_TAB | = lt_e_tva_tab | |
| E_TPR_TAB | = lt_e_tpr_tab | |
| E_TDU_TAB | = lt_e_tdu_tab | |
| E_TRI_TAB | = lt_e_tri_tab | |
| E_TIL_TAB | = lt_e_til_tab | |
| EXCEPTIONS | ||
| INTERNAL_ERROR = 1 | ||
| . " FRML312_ATTRIBUTE_READ | ||
ABAP code using 7.40 inline data declarations to call FM FRML312_ATTRIBUTE_READ
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.Search for further information about these or an SAP related objects