SAP FRML983_IDENTS_1_GET_FOR_FRML Function Module for NOTRANSL: RMS-FRM: 1 Identifikator für eine Formel ermitteln
FRML983_IDENTS_1_GET_FOR_FRML is a standard frml983 idents 1 get for frml 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: 1 Identifikator für eine Formel ermitteln 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 frml983 idents 1 get for frml FM, simply by entering the name FRML983_IDENTS_1_GET_FOR_FRML into the relevant SAP transaction such as SE37 or SE38.
Function Group: FRML983
Program Name: SAPLFRML983
Main Program: SAPLFRML983
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function FRML983_IDENTS_1_GET_FOR_FRML 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 'FRML983_IDENTS_1_GET_FOR_FRML'"NOTRANSL: RMS-FRM: 1 Identifikator für eine Formel ermitteln.
EXPORTING
I_RECN = "
I_IDLID = "
* I_OBJTYPE = "Specification Category
* I_AENNR = ' ' "
* I_VALDAT = SY-DATUM "
IMPORTING
E_IDENT = "
IMPORTING Parameters details for FRML983_IDENTS_1_GET_FOR_FRML
I_RECN -
Data type: ESTRH-RECNOptional: No
Call by Reference: No ( called with pass by value option)
I_IDLID -
Data type: TCG28-IDLIDOptional: No
Call by Reference: No ( called with pass by value option)
I_OBJTYPE - Specification Category
Data type: TCGOBJ-OBJTYPEOptional: Yes
Call by Reference: No ( called with pass by value option)
I_AENNR -
Data type: ESTRH-AENNRDefault: SPACE
Optional: Yes
Call by Reference: No ( called with pass by value option)
I_VALDAT -
Data type: ESTRH-VALFRDefault: SY-DATUM
Optional: Yes
Call by Reference: No ( called with pass by value option)
EXPORTING Parameters details for FRML983_IDENTS_1_GET_FOR_FRML
E_IDENT -
Data type: ESTRI-IDENTOptional: No
Call by Reference: No ( called with pass by value option)
Copy and paste ABAP code example for FRML983_IDENTS_1_GET_FOR_FRML 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: | ||||
| lv_i_recn | TYPE ESTRH-RECN, " | |||
| lv_e_ident | TYPE ESTRI-IDENT, " | |||
| lv_i_idlid | TYPE TCG28-IDLID, " | |||
| lv_i_objtype | TYPE TCGOBJ-OBJTYPE, " | |||
| lv_i_aennr | TYPE ESTRH-AENNR, " SPACE | |||
| lv_i_valdat | TYPE ESTRH-VALFR. " SY-DATUM |
|   CALL FUNCTION 'FRML983_IDENTS_1_GET_FOR_FRML' "NOTRANSL: RMS-FRM: 1 Identifikator für eine Formel ermitteln |
| EXPORTING | ||
| I_RECN | = lv_i_recn | |
| I_IDLID | = lv_i_idlid | |
| I_OBJTYPE | = lv_i_objtype | |
| I_AENNR | = lv_i_aennr | |
| I_VALDAT | = lv_i_valdat | |
| IMPORTING | ||
| E_IDENT | = lv_e_ident | |
| . " FRML983_IDENTS_1_GET_FOR_FRML | ||
ABAP code using 7.40 inline data declarations to call FM FRML983_IDENTS_1_GET_FOR_FRML
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.| "SELECT single RECN FROM ESTRH INTO @DATA(ld_i_recn). | ||||
| "SELECT single IDENT FROM ESTRI INTO @DATA(ld_e_ident). | ||||
| "SELECT single IDLID FROM TCG28 INTO @DATA(ld_i_idlid). | ||||
| "SELECT single OBJTYPE FROM TCGOBJ INTO @DATA(ld_i_objtype). | ||||
| "SELECT single AENNR FROM ESTRH INTO @DATA(ld_i_aennr). | ||||
| DATA(ld_i_aennr) | = ' '. | |||
| "SELECT single VALFR FROM ESTRH INTO @DATA(ld_i_valdat). | ||||
| DATA(ld_i_valdat) | = SY-DATUM. | |||
Search for further information about these or an SAP related objects