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
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
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).
| 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 . |
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. |
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.
FRML711_FRML_TO_SUB_WRAP - FRML710_FRML_FIND_BY_COMP_PARA - FRML710_FRML_FIND_BY_COMP_CMD - FRML710_FRML_FIND_BY_COMP - Search Function: Formula Contains Ingredient in Composition... FRML709_FRML_FIND_BY_LORS_PARA - Search: Formula Contains Input Substance... (Parameter Function) FRML709_FRML_FIND_BY_LORS_CMD - Search: Formula Contains Input Substance... (Command Function)