SAP Function Modules

FRML711_FRML_TO_SUB_WRAP SAP Function module







FRML711_FRML_TO_SUB_WRAP is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.

See here to view full function module documentation and code listing, simply by entering the name FRML711_FRML_TO_SUB_WRAP into the relevant SAP transaction such as SE37 or SE80.

Associated Function Group: FRML711
Released Date: Not Released
Processing type: Normal fucntion module
Normal function module settings


Pattern for FM FRML711_FRML_TO_SUB_WRAP - FRML711 FRML TO SUB WRAP





CALL FUNCTION 'FRML711_FRML_TO_SUB_WRAP' "
* EXPORTING
*   i_valdat = SY-DATUM         " estrh-valfr
*   i_objtype =                 " tcgobj-objtype
  TABLES
    i_substance_tab =           " rcgstdrecn
    i_environment_tab =         " tcgenv
    e_substance_tab =           " rcgstdrecn
*   e_hitinfo_tab =             " rcghitinfo
*   e_frto_recn_tab =           " esp1_frto_recn_tab_type
* CHANGING
*   x_additional_params =       " esp12_extsea_func_type
  EXCEPTIONS
    INTERNAL_ERROR = 1          "
    .  "  FRML711_FRML_TO_SUB_WRAP

ABAP code example for Function Module FRML711_FRML_TO_SUB_WRAP





The ABAP code below is a full code listing to execute function module FRML711_FRML_TO_SUB_WRAP including all data declarations. The code uses 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 original method of declaring data variables up front. 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).

DATA:
it_i_substance_tab  TYPE STANDARD TABLE OF RCGSTDRECN,"TABLES PARAM
wa_i_substance_tab  LIKE LINE OF it_i_substance_tab ,
it_i_environment_tab  TYPE STANDARD TABLE OF TCGENV,"TABLES PARAM
wa_i_environment_tab  LIKE LINE OF it_i_environment_tab ,
it_e_substance_tab  TYPE STANDARD TABLE OF RCGSTDRECN,"TABLES PARAM
wa_e_substance_tab  LIKE LINE OF it_e_substance_tab ,
it_e_hitinfo_tab  TYPE STANDARD TABLE OF RCGHITINFO,"TABLES PARAM
wa_e_hitinfo_tab  LIKE LINE OF it_e_hitinfo_tab ,
it_e_frto_recn_tab  TYPE STANDARD TABLE OF ESP1_FRTO_RECN_TAB_TYPE,"TABLES PARAM
wa_e_frto_recn_tab  LIKE LINE OF it_e_frto_recn_tab .

DATA(ld_x_additional_params) = 'Check type of data required'.

SELECT single VALFR
FROM ESTRH
INTO @DATA(ld_i_valdat).


SELECT single OBJTYPE
FROM TCGOBJ
INTO @DATA(ld_i_objtype).


"populate fields of struture and append to itab
append wa_i_substance_tab to it_i_substance_tab.

"populate fields of struture and append to itab
append wa_i_environment_tab to it_i_environment_tab.

"populate fields of struture and append to itab
append wa_e_substance_tab to it_e_substance_tab.

"populate fields of struture and append to itab
append wa_e_hitinfo_tab to it_e_hitinfo_tab.

"populate fields of struture and append to itab
append wa_e_frto_recn_tab to it_e_frto_recn_tab. . CALL FUNCTION 'FRML711_FRML_TO_SUB_WRAP' * EXPORTING * i_valdat = ld_i_valdat * i_objtype = ld_i_objtype TABLES i_substance_tab = it_i_substance_tab i_environment_tab = it_i_environment_tab e_substance_tab = it_e_substance_tab * e_hitinfo_tab = it_e_hitinfo_tab * e_frto_recn_tab = it_e_frto_recn_tab * CHANGING * x_additional_params = ld_x_additional_params EXCEPTIONS INTERNAL_ERROR = 1 . " FRML711_FRML_TO_SUB_WRAP
IF SY-SUBRC EQ 0. "All OK ELSEIF SY-SUBRC EQ 1. "Exception "Add code for exception here ENDIF.







ABAP code to compare 7.40 inline data declaration with original syntax

The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.

DATA:
ld_x_additional_params  TYPE ESP12_EXTSEA_FUNC_TYPE ,
ld_i_valdat  TYPE ESTRH-VALFR ,
it_i_substance_tab  TYPE STANDARD TABLE OF RCGSTDRECN ,
wa_i_substance_tab  LIKE LINE OF it_i_substance_tab,
ld_i_objtype  TYPE TCGOBJ-OBJTYPE ,
it_i_environment_tab  TYPE STANDARD TABLE OF TCGENV ,
wa_i_environment_tab  LIKE LINE OF it_i_environment_tab,
it_e_substance_tab  TYPE STANDARD TABLE OF RCGSTDRECN ,
wa_e_substance_tab  LIKE LINE OF it_e_substance_tab,
it_e_hitinfo_tab  TYPE STANDARD TABLE OF RCGHITINFO ,
wa_e_hitinfo_tab  LIKE LINE OF it_e_hitinfo_tab,
it_e_frto_recn_tab  TYPE STANDARD TABLE OF ESP1_FRTO_RECN_TAB_TYPE ,
wa_e_frto_recn_tab  LIKE LINE OF it_e_frto_recn_tab.

ld_x_additional_params = 'Check type of data required'.

SELECT single VALFR
FROM ESTRH
INTO ld_i_valdat.


"populate fields of struture and append to itab
append wa_i_substance_tab to it_i_substance_tab.

SELECT single OBJTYPE
FROM TCGOBJ
INTO ld_i_objtype.


"populate fields of struture and append to itab
append wa_i_environment_tab to it_i_environment_tab.

"populate fields of struture and append to itab
append wa_e_substance_tab to it_e_substance_tab.

"populate fields of struture and append to itab
append wa_e_hitinfo_tab to it_e_hitinfo_tab.

"populate fields of struture and append to itab
append wa_e_frto_recn_tab to it_e_frto_recn_tab.

Contribute (Add Comments)

Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name FRML711_FRML_TO_SUB_WRAP or its description.