SAP Function Modules

RCP709_RCP_FIND_BY_LOM SAP Function module - Search Function: Recipe with Input Material...







RCP709_RCP_FIND_BY_LOM 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 RCP709_RCP_FIND_BY_LOM into the relevant SAP transaction such as SE37 or SE80.

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


Pattern for FM RCP709_RCP_FIND_BY_LOM - RCP709 RCP FIND BY LOM





CALL FUNCTION 'RCP709_RCP_FIND_BY_LOM' "Search Function: Recipe with Input Material...
* EXPORTING
*   i_valdat = SY-DATUM         " estrh-valfr   Key Date
  TABLES
    i_substance_tab =           " rcgstdrecn
    i_environment_tab =         " tcgenv        Environment Parameters Assigned
    e_substance_tab =           " rcgstdrecn
*   e_hitinfo_tab =             " rcghitinfo    Additional Information on the Formulas in the Hit List
*   e_frto_recn_tab =           " esp1_frto_recn_tab_type  Result of the Historical Search
* CHANGING
*   x_additional_params =       " esp12_extsea_func_type  Additional Parameters
  EXCEPTIONS
    INTERNAL_ERROR = 1          "               Search Error
    .  "  RCP709_RCP_FIND_BY_LOM

ABAP code example for Function Module RCP709_RCP_FIND_BY_LOM





The ABAP code below is a full code listing to execute function module RCP709_RCP_FIND_BY_LOM 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).


"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 'RCP709_RCP_FIND_BY_LOM' * EXPORTING * i_valdat = ld_i_valdat 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 . " RCP709_RCP_FIND_BY_LOM
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,
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.

"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.

SAP Documentation for FM RCP709_RCP_FIND_BY_LOM


You use the RCP709_RCP_FIND_BY_LOM function to search for recipes.
INCLUDE RMS_RCP_FB_EXTENDED_SEARCH OBJECT DOKU ID TX ...See here for full SAP fm documentation

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 RCP709_RCP_FIND_BY_LOM or its description.