cancel
Showing results for 
Search instead for 
Did you mean: 

Create Recipes

Former Member
0 Kudos

I know that RMWB does not support batch input. So, I need a BAPI or something to create recipes. I know this function to modify recipes RCP301_RECIPES_WRITE but as far as I know it does not create new recipes.

I would be grateful if someone could help me. Thanks.

Edited by: Leonardo Girotto on Jan 17, 2011 2:19 PM

Accepted Solutions (0)

Answers (1)

Answers (1)

rolandfreudenbe
Employee
Employee
0 Kudos

Hello Leonardo,

Please have a look at the programs RM_INITIAL_DATA_LOAD or RM_RECIPE_SAMPLE_DATA.

The other possiblity is to use the following function modules to create recipes:

CALL FUNCTION 'RCP301_RECIPES_INIT'.

CALL FUNCTION 'RCP301_READ'

CALL FUNCTION 'RCP301_RECIPES_SAVE'

CALL FUNCTION 'RCP301_RECIPES_WRITE'

CALL FUNCTION 'RMSA200_API_HDR_CREATE'

CALL FUNCTION 'RMSA200_API_WRITE'

CALL FUNCTION 'GUID_CREATE'

For the determination of the recipe structure it is possible to use:

- FRML209_RCP_INIT

- FRML209_RCP_STRUCT_READ

For the formula data it is possible to use:

- FRML301_FORMULAS_READ

- FRML301_FORMULAS_SAVE (is part RCP301_RECIPES_SAVE)

- FRML301_FORMULAS_WRITE

- FRML301_API_LOG_TO_EXTERN

Regards,

Roland