cancel
Showing results for 
Search instead for 
Did you mean: 

What is returning parameter for the standard program RBUS2093 ?

chaitanya463
Explorer

Hello Everyone , I found Standard program RBUS2093 for Material Reservation . Please let me know what it returns ?

Accepted Solutions (1)

Accepted Solutions (1)

Abinathsiva
Active Contributor

Hi Chaitanya,

Create a custom program by reading sales order Material and pass same through submit to program RM07MLBS and allow user to select through inventory availablity and use BAPI_GOODSMVT_CREATE bapi as given


CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
      goodsmvt_header  = wa_gmvt_header_tp
      goodsmvt_code    = '04'
*     TESTRUN          = ' '
*     GOODSMVT_REF_EWM =
    IMPORTING
      goodsmvt_headret = gmvt_headret_tp
*     MATERIALDOCUMENT = gmvt_retmtd
*     MATDOCUMENTYEAR  =
    TABLES
      goodsmvt_item    = gmvt_item_tp[]
*     GOODSMVT_SERIALNUMBER         =
      return           = rt_bapiret_tp[]
*     GOODSMVT_SERV_PART_DATA       =
*     EXTENSIONIN      =

    .
chaitanya463
Explorer
0 Kudos

Thanks a lot abishankar

Answers (1)

Answers (1)

ankurch
Active Contributor
0 Kudos

by having a look It seems it is for Material reservation.

chaitanya463
Explorer
0 Kudos

Hello Ankur , I have requirement for Stock to be reserved against selected Sales Order to ensure serving priority customer ontime. Currently there is no reservation and so available stock getting served for any customer order . Any idea how to do it ?