SAP FRML769_RECO_CMP_GET Function Module for NOTRANSL: RMS-FRM: Zusammensetzung Vgl. Ausg. neue Sichten









FRML769_RECO_CMP_GET is a standard frml769 reco cmp get 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: Zusammensetzung Vgl. Ausg. neue Sichten 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 frml769 reco cmp get FM, simply by entering the name FRML769_RECO_CMP_GET into the relevant SAP transaction such as SE37 or SE38.

Function Group: FRML769
Program Name: SAPLFRML769
Main Program: SAPLFRML769
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:



Function FRML769_RECO_CMP_GET 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 'FRML769_RECO_CMP_GET'"NOTRANSL: RMS-FRM: Zusammensetzung Vgl. Ausg. neue Sichten
EXPORTING
* I_IDLID = "Identification listing
* I_AENNR = "Change Number
* I_MODUS = "Mode for Data Retrieval in Explosion
* I_FLG_FRM = GC_TRUE "
* I_FLG_STG = GC_FALSE "
* I_FLG_RCP = GC_FALSE "
IS_APPL_PARAM = "Application Parameters for Comparison Output
IT_INPUT = "
IO_PROT = "Instance Calculation Log

IMPORTING
ET_CMP_COMPARE = "RMS-FRM: Composition of Formula
ET_CMP_STG_COMPARE = "Composition
ET_CMP_RCP_COMPARE = "Composition

EXCEPTIONS
ERROR = 1
.



IMPORTING Parameters details for FRML769_RECO_CMP_GET

I_IDLID - Identification listing

Data type: TCG28-IDLID
Optional: Yes
Call by Reference: Yes

I_AENNR - Change Number

Data type: RMSAE_AENNR
Optional: Yes
Call by Reference: Yes

I_MODUS - Mode for Data Retrieval in Explosion

Data type: FRMLE_MODE
Optional: Yes
Call by Reference: Yes

I_FLG_FRM -

Data type: FRMLE_FLG
Default: GC_TRUE
Optional: Yes
Call by Reference: Yes

I_FLG_STG -

Data type: FRMLE_FLG
Default: GC_FALSE
Optional: Yes
Call by Reference: Yes

I_FLG_RCP -

Data type: FRMLE_FLG
Default: GC_FALSE
Optional: Yes
Call by Reference: Yes

IS_APPL_PARAM - Application Parameters for Comparison Output

Data type: FRMLS_APPL_PARAM_COMPAREOUT
Optional: No
Call by Reference: Yes

IT_INPUT -

Data type: FRM75_CONNECTION_TAB_TYPE
Optional: No
Call by Reference: Yes

IO_PROT - Instance Calculation Log

Data type: CL_RMST_PROT
Optional: No
Call by Reference: Yes

EXPORTING Parameters details for FRML769_RECO_CMP_GET

ET_CMP_COMPARE - RMS-FRM: Composition of Formula

Data type: FRMLTY_OTPT_XCL_COMP
Optional: No
Call by Reference: Yes

ET_CMP_STG_COMPARE - Composition

Data type: FRMLTY_OTPT_RECO_STG_FRM_COMP
Optional: No
Call by Reference: Yes

ET_CMP_RCP_COMPARE - Composition

Data type: FRMLTY_OTPT_RECO_STG_FRM_COMP
Optional: No
Call by Reference: Yes

EXCEPTIONS details

ERROR - Error occurred when reading the formula data

Data type:
Optional: No
Call by Reference: No ( called with pass by value option)

Copy and paste ABAP code example for FRML769_RECO_CMP_GET 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_error  TYPE STRING, "   
lv_i_idlid  TYPE TCG28-IDLID, "   
lv_et_cmp_compare  TYPE FRMLTY_OTPT_XCL_COMP, "   
lv_i_aennr  TYPE RMSAE_AENNR, "   
lv_et_cmp_stg_compare  TYPE FRMLTY_OTPT_RECO_STG_FRM_COMP, "   
lv_i_modus  TYPE FRMLE_MODE, "   
lv_et_cmp_rcp_compare  TYPE FRMLTY_OTPT_RECO_STG_FRM_COMP, "   
lv_i_flg_frm  TYPE FRMLE_FLG, "   GC_TRUE
lv_i_flg_stg  TYPE FRMLE_FLG, "   GC_FALSE
lv_i_flg_rcp  TYPE FRMLE_FLG, "   GC_FALSE
lv_is_appl_param  TYPE FRMLS_APPL_PARAM_COMPAREOUT, "   
lv_it_input  TYPE FRM75_CONNECTION_TAB_TYPE, "   
lv_io_prot  TYPE CL_RMST_PROT. "   

  CALL FUNCTION 'FRML769_RECO_CMP_GET'  "NOTRANSL: RMS-FRM: Zusammensetzung Vgl. Ausg. neue Sichten
    EXPORTING
         I_IDLID = lv_i_idlid
         I_AENNR = lv_i_aennr
         I_MODUS = lv_i_modus
         I_FLG_FRM = lv_i_flg_frm
         I_FLG_STG = lv_i_flg_stg
         I_FLG_RCP = lv_i_flg_rcp
         IS_APPL_PARAM = lv_is_appl_param
         IT_INPUT = lv_it_input
         IO_PROT = lv_io_prot
    IMPORTING
         ET_CMP_COMPARE = lv_et_cmp_compare
         ET_CMP_STG_COMPARE = lv_et_cmp_stg_compare
         ET_CMP_RCP_COMPARE = lv_et_cmp_rcp_compare
    EXCEPTIONS
        ERROR = 1
. " FRML769_RECO_CMP_GET




ABAP code using 7.40 inline data declarations to call FM FRML769_RECO_CMP_GET

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 IDLID FROM TCG28 INTO @DATA(ld_i_idlid).
 
 
 
 
 
 
DATA(ld_i_flg_frm) = GC_TRUE.
 
DATA(ld_i_flg_stg) = GC_FALSE.
 
DATA(ld_i_flg_rcp) = GC_FALSE.
 
 
 
 


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!