RM_EWM_BACKFLUSH_GO 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 RM_EWM_BACKFLUSH_GO into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
BARM
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RM_EWM_BACKFLUSH_GO' "
EXPORTING
it_imseg = " ty_t_imseg Table Type with Structure IMSEG
it_emseg = " ty_t_emseg Table type with structure EMSEG
iv_emkpf = " emkpf MMIM: Output Structure For General FM To Post Goods Movement
* iv_sobkz = " sobkz Special Stock Indicator
is_rmio = " rmio Input/Output Fields for Backflushing in Repetitive Mfg
IMPORTING
e_doc = " barm_type_bf_doc
. " RM_EWM_BACKFLUSH_GO
The ABAP code below is a full code listing to execute function module RM_EWM_BACKFLUSH_GO 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_doc | TYPE BARM_TYPE_BF_DOC . |
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_e_doc | TYPE BARM_TYPE_BF_DOC , |
| ld_it_imseg | TYPE TY_T_IMSEG , |
| ld_it_emseg | TYPE TY_T_EMSEG , |
| ld_iv_emkpf | TYPE EMKPF , |
| ld_iv_sobkz | TYPE SOBKZ , |
| ld_is_rmio | TYPE RMIO . |
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 RM_EWM_BACKFLUSH_GO or its description.
RM_EWM_BACKFLUSH_GO - RM_EVAL_SINGLE_TASK - Parallel Processing: Call in Single Task Mode RM_EVAL_SCHEDULE_TASK - Parallel Processing: Scheduler for Evaluation Tasks RM_EVAL_SCHEDULE_BACK - Parallel Processing: Scheduler for Back Testing Task RM_EVAL_PROCESS_TASK - Parallel Processing: Processing of a Separate Task RM_EVAL_PROCESS_BACK - Parallel Processing: Processing of a Separate Back Testing Task