FRML710_FRML_FIND_BY_COMP_CMD 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 FRML710_FRML_FIND_BY_COMP_CMD into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
FRML710
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'FRML710_FRML_FIND_BY_COMP_CMD' "
EXPORTING
i_command = " esp12_extsea_cmdfunc_cmd_type Command to Be Executed (Compare Type Group ESP12)
* i_objtype = " tcgobj-objtype Specification Category
IMPORTING
e_flg_para_exist = " esp1_boolean Indicator: Search Criteria Exist (After RESTORE)
TABLES
x_parameter_tab = " tcgsgp Search Criteria
* CHANGING
* x_additional_params = " esp12_extsea_cmdfunc_type Additional Parameters
EXCEPTIONS
UNKNOWN_COMMAND = 1 " Command Not Supported
. " FRML710_FRML_FIND_BY_COMP_CMD
The ABAP code below is a full code listing to execute function module FRML710_FRML_FIND_BY_COMP_CMD 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).
| ld_e_flg_para_exist | TYPE ESP1_BOOLEAN , |
| it_x_parameter_tab | TYPE STANDARD TABLE OF TCGSGP,"TABLES PARAM |
| wa_x_parameter_tab | LIKE LINE OF it_x_parameter_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_CMDFUNC_TYPE , |
| ld_e_flg_para_exist | TYPE ESP1_BOOLEAN , |
| ld_i_command | TYPE ESP12_EXTSEA_CMDFUNC_CMD_TYPE , |
| it_x_parameter_tab | TYPE STANDARD TABLE OF TCGSGP , |
| wa_x_parameter_tab | LIKE LINE OF it_x_parameter_tab, |
| ld_i_objtype | TYPE TCGOBJ-OBJTYPE . |
This function serves to convert user actions (commands) for the search
function
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 FRML710_FRML_FIND_BY_COMP_CMD or its description.
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) FRML709_FRML_FIND_BY_LORS - Search Function: Formula Contains Input Substance... FRML708_FRML_FIND_BY_LORS_PARA -