Workflow for Goods Receipt (MIGO)

Hi Everybody,
I am new to workflow. I have one assignment that i am thinking to do using workflow. The scenerio is there are two different users. First user will create and hold the goods receipt (Migo) and other will approved and post the goods receipt (Migo). I am thinking to do it through workflow. As soon as the first user click the hold or post button (but it will not posted as it is suppose to be posted by 2nd user), the workflow will trigger and it will go to 2nd user who will confirm and post the goods receipt. There is one object Bus2017 that have some events and methods for goods receipt but seems like it is not useful. can anyone suggest me how can i do this process using workflow? Thanks

Hi,
There is no standard event when you save document as a hold...
however you can trigger workflow manually using FM SAP_WAPI_START_WORKFLOW or using SAP_WAPI_EVENT_CREATE(if you choose to create a custom event)...
Try finding some user exit for this...
Regards
Gautam

Similar Messages

  • BOR for Good receipt(MIGO)

    Hi ,
    Can anybody please tell me whats the Business Object for Goods receipt(MIGO) which triggers idoc MBGMCR02
    Thanks
    Izhar

    Hi Raman,
    When we create a GR in MIGO and say SAVE
    then BUS2017 object gets triggered or MKPF.
    And which Method ?
    Thanks so much

  • Print Prog-Auto Print Barcode Label for Goods Receipt(MIGO) using Smartform

    Hi Guru's
    I have created a smartform that prints barcodes on a label.
    My tests print successfully to the Printronix thermal label printer.
    Is there perhaps a SAP Standard print program that i can use in my output type that will call my smartform upon goods receipt(MIGO)?
    please bear in mind that i am looking for a print program that calls a SMARTFORM. not a sapscript.
    /SMB40/M07DR does not exist on my system. and I am going to use output type WEE1 - for LABEL Printing
    Awaiting your feedback.
    Thanks in advance geniuses!

    Good luck dude,
    In that same program I noticed We01 that will print a smartform GR. I think if you use form entry_we01 in your output control you should do well.

  • Regarding the User Exit  for Goods Receipt (MIGO) Transaction code

    Hi,
    I have a requirement where I want to capture the Goods Receipt Document number when it’s got saved (Created).
    I have find out Exits available for the MIGO.
    MB_CF001
    MBCF0002
    MBCF0005
    MBCF0006
    MBCF0007
    MBCF0009
    MBCF0010
    MBCF0011
    I want to know which is the right one to serve my purpose (Exit Name).

    Hi Nikhil.
    I'm not sure which one is the best (there are several exits in SAP).
    But what i usually do is:
    - i have a dummy project in DEVELOPMENT SYSTEM, where i include the enhancements i suspect that solve my problems.
    - then i set the project active, break point ... that's it.
    Hope this helped.
    Reward helpfull ideas.
    Best regards.
    Valter Oliveira.

  • "Only Part I" for Goods receipt (MIGO) in excise invoice tab

    Dear Gurus,
    I have configured a material with all CIN configuration setting, while doing goods receipt for that material I want to capture excise invoice through excise invoice tab, for which i need to select " Only Part 1" in the invoice tab.
    But in my currrent senario while posting goods recipt, In excise invoice tab, I am not detting " Only part 1" option when i select excise invoice tab.
    How to configure "only part 1" option to appear in  excise invoice tab.
    Kindly help...
    Regards,
    Prashanth Pai

    Hi,
    Check in
    Tax on Goods Movements - India - Business Transactions - Incoming Excise Invoices -  Specify Which Movement Types Involve Excise Invoices -
    ensure that RG23A & RG23 C Register is maintained against the movement types you are using.
    Regards,
    Vikas

  • Workflow for Goods receipt of an Inbound delivery

    Hello,
    My requirement is to create a workflow when a GR is done for an Inbound delivery. I was able to get the business objects MKPF,MSEG to use and relevant events. The problem is to publish the event in the system when the GR is done. GR is carried out using the Tcodes 'VL32N' and MIGO_GR.
    Could someone please let me know as to how I can publish the event in the system so that I can link it to the workflow that I am going to design?
    Best Regards,
    Samson

    Check whether there is any BTE from FIBF and use it accordingly.
    Also check from SWEL whether any event is getting published when the GR is being done.
    If none of the above works try to find some user Exit where you can code the needful.
    Thanks
    Arghadip

  • BAPI needed  for  Goods Receipt Purchase Order(Transaction : MIGO)

    Hi all,
    We have a requirement where in we need to post the documents throuh BAPI for Goods receipt Purchase order(Transaction: MIGO).
    Any inputs on this..is highly appreciable...
    thanks in advance...
    regards..
    prathima.

    Hi,
    use 'BAPI_GOODSMVT_CREATE'
    Check this sample.
    code
    REPORT ZRICH_0001 .
    Structures for BAPI
    DATA: GM_HEADER TYPE BAPI2017_GM_HEAD_01.
    DATA: GM_CODE TYPE BAPI2017_GM_CODE.
    DATA: GM_HEADRET TYPE BAPI2017_GM_HEAD_RET.
    DATA: GM_ITEM TYPE TABLE OF
    BAPI2017_GM_ITEM_CREATE WITH HEADER LINE.
    DATA: GM_RETURN TYPE BAPIRET2 OCCURS 0 WITH HEADER LINE.
    DATA: GM_RETMTD TYPE BAPI2017_GM_HEAD_RET-MAT_DOC.
    CLEAR: GM_RETURN, GM_RETMTD. REFRESH GM_RETURN.
    Setup BAPI header data.
    GM_HEADER-PSTNG_DATE = SY-DATUM.
    GM_HEADER-DOC_DATE = SY-DATUM.
    GM_CODE-GM_CODE = '04'. " MB1A
    Write 971 movement to table
    CLEAR GM_ITEM.
    MOVE '412' TO GM_ITEM-MOVE_TYPE .
    MOVE 'Q' TO GM_ITEM-SPEC_STOCK.
    MOVE '3800533484' TO GM_ITEM-MATERIAL.
    MOVE '1' TO GM_ITEM-ENTRY_QNT.
    *MOVE 'PC' TO GM_ITEM-ENTRY_UOM.
    MOVE '1060' TO GM_ITEM-PLANT.
    MOVE '0007' TO GM_ITEM-STGE_LOC.
    *MOVE '0901' TO GM_ITEM-MOVE_REAS.
    MOVE 'P203601001' TO GM_ITEM-WBS_ELEM.
    MOVE 'P203601001' TO GM_ITEM-VAL_WBS_ELEM.
    APPEND GM_ITEM.
    Call goods movement BAPI
    CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
    EXPORTING
    GOODSMVT_HEADER = GM_HEADER
    GOODSMVT_CODE = GM_CODE
    IMPORTING
    GOODSMVT_HEADRET = GM_HEADRET
    MATERIALDOCUMENT = GM_RETMTD
    TABLES
    GOODSMVT_ITEM = GM_ITEM
    RETURN = GM_RETURN.
    IF NOT GM_RETMTD IS INITIAL.
    COMMIT WORK AND WAIT.
    CALL FUNCTION 'DEQUEUE_ALL'.
    ELSE.
    COMMIT WORK AND WAIT.
    CALL FUNCTION 'DEQUEUE_ALL'.
    ENDIF.
    WRITE:/ GM_RETMTD.
    LOOP AT GM_RETURN.
    WRITE:/ GM_RETURN.
    ENDLOOP.
    [/code]
    Also check the Bapis
    BAPI_PO_CREATE --> To create Purchase Order
    BAPI_PO_CHANGE --> To change Purchase Order
    BAPI_PO_GETDETAIL --> Todisplay Purchase Order
    Regards,
    Raj.

  • Why Enhancement:MBCF0005 for goods receipt is useless in MIGO??

    Hi experts,
        When i use enhancement:MBCF0005 , it cann't take effect in goods receipt (MIGO,MB01).
    i actived both EXIT_SAPM07DR_001 and CI_AM07M, and debugged or inserted some codes like " Message 'error' type 'E' " in ZXMBCU05. But it cann't take any effect in MIGO or MB01,like the enhancement never changed.My SAP version is 4.7. Can anysome give me some suggestion? Thank you very much!
    Regards
    Joey

    Hi,  in our company's  subcontracting processes,we have two types of  PO, the "Account assignment category" are "P" (project) and "F" (order). When do GR ,the movement types are  101 and 543 O. For the two different PO ,my client wants to record 543 under different G/L Acounts.
    In OMWN ,  the Account Assignment can only configure like this:   
    543 O     V   WA01       2  GBB     VBR
    . For the same Valuation Class   "VBR" can only aim at one G/L Acount. So i try to use enhancement to solve it. Could anyone give me some suggestion?
    Regards
    Joey

  • Determination of a door for goods receipt via MIGO without inboud delivery

    All,
    Has anyone set up configuration to determine a warehouse management door for goods receipt when there is no inbound delivery?  I wish to utilize door to assist in queue determination and I am unable to find the right settings for door determination on goods receipt.
    Thank you,
    Sandy

    For making the Inbound delivery as required for processing a goods recipt, you need to use the confirmation control key in the PO.
    The ASN from the Vendor vvia EDI will post as an Inbound delivery in the PO.
    In the configuartion of the confirmation control key maintain the Confirmation sequence with Inbound Delivery and mark it as GR relevant and GR assignment.
    SPRO - IMG - MM- Purchasing - Confimrations - Set up confimrmation control.
    This setting will ensure that GR does not happen without an IBD

  • Standard smartform for Goods receipt slip version 3

    Hi all,
    I need to copy and modify a smartform for Goods receipt slip.
    How do we find out the main program(driver program) for a smartform.
    <b>In my case the smartform name is /SMB11/MMGR3_A</b>
    Regards,
    Kaushal

    I used /SMB11/BL_MMGR1_L in my choice and I then searched programs using /SMB11* until I found something that looked like a match in it's text. 
    I can only tell you that after configuring via tcode NACE application ME and output type WE03 (because again the text matched what I was wanting to do) with program /SMB40/M07DR it did give me the results I wanted.  This is a specific answer and NOT the more general answer you might have really wanted.  There is much discussion in forum for that more general question.  Personally until SAP sees the wisdom of maintaining a table to make a more direct search key more possible rather than a full SAPSCRIPT, SMARTFORM, PDF search we have some agony to endure.
    Now if can you tell me where (table & fields) number of containers found on tabstrip Quantity of tcode MIGO is stored and we can call this even.
    GOITEM-ANZGEB is NOT the answer I want to hear as structure names do not count and it is not defined in any structures of the global  settings.
    Good Luck!!!

  • Create serial number - asset from goods receipt (MIGO)

    Hi,
    We configured the sync functionality between PM and AA, so when we create a serial number via transaction IQ01, the fixed asset master data is created automatically.  We also configured the serial number profile in the material master.  When we create a goods receipt (MIGO) the serial number data screen comes into place.  We save the GR document, and when we check the serial number data in PM this info is correct, but the synchronization between fixed asset didn't work it means, no asset master data is created.  Is there some missing configuration?  Even the tcode IQ01 works fine, why in this operation (MIGO) the configuration doesn't work ?
    Any help on this topic we'll be very appreciated.
    Lee

    Hi,
    in customizing transaction OIS2 I'm using the serial number profile 0010 (Stock check) and in the serializing procedure Goods Receipt and Issue Doc (MMSL), the serialization usage is 03 and the equipment requirement is 02 (always with equipment).   When use MIGO for goods receipt I noticed that after the serial number creation (via tcode IQ03) some serial number mandatory fields have no value, like Company Code (BUKRS) and Cost Center (KOSTL), and other mandatory fields for the master records.  If I modify the serial number (tcode IQ02) and complete the mandatory fields, the synchronization work fine since the asset master record is created.   I'm suspecting that some of these fields (like company code) are necessary for the asset creation.  I checked the whole PM/AA/MM configuration for these fields to in some way, assign them the corresponding value taken from the goods receipt or material and give it to the serial number record for creation.  If you know something else please let me know.
    Thanks for your response.
    J.R.Lee

  • Triggering Workflow on Goods Receipt

    I am trying to trigger a workflow on goods receipt, and I'm not having much success.  I've tried triggering on the following two events:
    BUS2017 Assigned and
    MKPF Assigned
    When manually triggering the event through simulation the workflow starts as expected.  However using transaction MB01 doesn't seem to work.  Any ideas?
    Thanks,
    Heather

    Hi,
    Please check these enhancement (SMOD) which contain all user exits available for MB01
    MB_CF001    
    MBCF0011    
    MBCF0010    
    MBCF0009    
    MBCF0007    
    MBCF0006    
    MBCF0005    
    MBCF0002    
    Regards,
    Ferry Lianto

  • Automatic reservation for goods receipt

    Hi,
    Is it possible to make automatic reservation for goods receipt so that the store collects the material from PM? If yes, please explain.
    Thanks in advance...

    Greetings to all
    Just to add further, whenever you mention -ve qty in order & do goods movement in MIGO, you do reversal of goods issue only(262 movt) & its basically used for returning unconsumed items to the store. As far as cost is concerned its deducted from the actual cost of maintenance(expenses only) & i think cant be treated as revenue.  If we recall our basics of cost flow during goods movement, it heats the G/L A/C ( stock A/c & consumption A/C) as well as the cost element for capturing total cost.  So this -ve cost will be adjusted in the total cost (expenses) only. Pl correct me if I am wrong
    Regards
    Shakti

  • Report for vendor no., vendor name for good receipt documents on KSB1

    Hello,
    My client needs vendors on KSB1 report. I told them about offseting  account, but it doesn't show vendor for good receipt documents.
    Is there any place else they can view vendor, vendor name for those good receipt documents .
    Any MM report or AP report .
    Thanks,
    T.G

    Hi,
    Please go to FBL1N, In Dynamic Selection give document as "WE", this will give and enable Purchase Order Number
    This will give you Vendor Name, Purchase Order and  FI Document number or u can try MB51, there you will not get Vendor Name, but you will get Vendor Code, Material Document Number and Purchase Order Number
    Br,Vivek
    Edited by: View_taurian on Oct 22, 2011 12:01 AM

  • Create Automatic Reservation for Goods receipt of FG

    When an order is created, the components from the store are reserved automatically. It implies automatic reservation for good issue.
    What about AUTOMATIC reservation for goods receipt of finished product? Is it possible to make automatic reservation in PP for goods receipt of finished product, when finished product is ready?
    I know that manual reservation for goods receipt of finished product can be done by using MB21 (521).
    Thanks in advance.

    Your requirement is a little bit confusing...
    If you have production order, why do you need GR-reservation for the to-be produced material? The production order itself is a GR-MRP element nad you can post the GR agains it.
    If you don't have production order, I understand you need something to plan the GR.
    But it seems you want to have both the PrdOrd and the GR-reservation --> you will have the same thing twice in your system.

Maybe you are looking for