Goods receipt via RF devices

Hello,
There would have been many threads on GR by RF devices however the company which we are implementing SAP WMS (ECC 6.0) currently works with more advanced WMS solution and we have a task in hand to at least match the functionalities which it is providing.
Currently the GR is done via RF( Handheld Device) where a Warehouse Operator /GR Clerk scan's the incoming Vendor label (Packing/ HU) and all the information of Material, Qty, SKU, Batch (Vendor) ,Lot number , Serial number etc are captured against the PO (in ERP) and post the document. This would generate labels (optional) which normally is Barcoded and would have details like Material Number, Vendor Batch , Batch (internal), Qty, SKU, Palletization info and much important the Move Order info ( Source & Destination Bin) etc.
Now with SAP the company needs us to map a similar functionality.
1) Company do not want to go with HU mgt.
2) They are largely to use the T code MIGO and not inbound deliveries.
My Question to the group is as below.
1) Is there a possibility to update the Batch (Internal or Vendor) info using RF scanners if I use Inbound delivery.
2) Option to update the serial number ( T code LM80 option we already have tested and it is working with delivery this stops at IM level) however the need is to have this Serial Number info carried all along in warehouse (traceable) wherever we move the material.
3) If Organization does not go with Inbound Delivery what would be best way to post a GR via RF (custom built T code attached to RF). Should we use BAPI if so what BAPI is best fit.
4) Use of RF in internal warehouse material handling e.g. Bin to Bin transfer ( without using SAP front (Mvt 999) end to create a TO)
Thanks in advance

1) you need to create custom RF Tcode where you can design a screen to enter the batch and update it.
2) Serial number is at IM level, if you want to trace it at the WM level then you need to go for custom program.( In standard it is not possible to track serial number at bin level)
3) try doing research on LM71, LM72, LM73, LM74. LM76.
4) There is not standard RF tcode to create TO, you need develop a custom Tcode.
    You need to sit with business to design the screens of this Tcode( mandatory field would be material, source storage, bin, destination storage, bin, SUT, )
   you can call function module L_TO_CREATE_SINGLE)

Similar Messages

  • Batch Data Capture to do a Goods Receipt via transaction MIGO.

    Hi All,
    I have a new requirement to perform a Batch Data Capture of a goods receipt via transaction code MIGO.
    Currently the BDC approach is not feasible due to the fact that screen configuration is dynamic and may differ at times between different users and user profiles. 
    Therefore I have tried to use function module 'MIGO_GR_CREATE' instead.  However after some initial investigation it has become clear that a material document number that is generated by SAP may not be returned by this function module after successful execution of a "GR". 
    Therefore does anyone know any function module to use in order to do a "GR" by passing or submitting a purchase order number + purchase order line item number (and possibly a delivery note number) and get back a material document number after successful/complete execution.
    Thanks.

    HI ,
    You can use 'BAPI_GOODSMVT_CREATE' to create goods recipt.
    Check this code for reference..
            MOVE x_purchaseorder TO goods_mvt_tab-ebeln.
            MOVE eban-bnfpo      TO goods_mvt_tab-ebelp.
            MOVE up_tab-feld_12  TO goods_mvt_tab-menge.
            MOVE eban-werks      TO goods_mvt_tab-werks.
            MOVE eban-lgort      TO goods_mvt_tab-lgort.
            APPEND goods_mvt_tab.
      LOOP AT goods_mvt_tab.
        MOVE sy-datum            TO y_goodsmvt_header-pstng_date.
        MOVE goods_mvt_tab-ebeln TO y_goodsmvt_item-po_number.
        MOVE goods_mvt_tab-ebelp TO y_goodsmvt_item-po_item.
        MOVE '101'               TO y_goodsmvt_item-move_type.
        MOVE 'B'                 TO y_goodsmvt_item-mvt_ind.
        MOVE goods_mvt_tab-menge TO y_goodsmvt_item-entry_qnt.
    *    MOVE 'PCE'               TO Y_GOODSMVT_ITEM-ENTRY_UOM_ISO.
        MOVE 'PC'               TO y_goodsmvt_item-entry_uom_iso.
        MOVE goods_mvt_tab-werks TO y_goodsmvt_item-plant.
        MOVE goods_mvt_tab-lgort TO y_goodsmvt_item-stge_loc.
        CALL FUNCTION 'BAPI_GOODSMVT_CREATE'
          EXPORTING
            goodsmvt_header             = y_goodsmvt_header
            goodsmvt_code               = ls_movement_code
            testrun                     = y_testrun
          IMPORTING
            materialdocument            = y_materialdocument
          TABLES
            goodsmvt_item               = y_goodsmvt_item
            return                      = y_return.
    Regards,
    Sachin M M

  • 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

  • Inboud delivery creation and post goods receipt via idoc at same time

    Hi
    Does anybody knows if there is in idoc message/basic type that can create in one single step the inbound delivery for a purchase order and do the post goods receipt (on the inbound delivery)? Warehouse is not setup.
    KR
    Jimmy

    Hi All,
    Solved by myself.
    As expected , same code has been called for ob delivery and Ib delivery .
    Solution : Have called fm in background task .
    Thanks & Regards,
    Vinod.
    Knowledge has to be shared nt 2  accumulate .

  • Open delivery for goods receipt via RF

    I am trying to do a good recepit through the RF menu. Once I click on the goods receipt , it takes me to the screen which asks for PO/delivery #, Material # and quantity.
    When I enter in the PO, mat # and Qty , it gives me the error message "No Open Delivery"
    So I went through the RF screen overview documentation which also says that "Material must exist in the order and in the open delivery"
    Can anyone please explain what this means and how can I create an open delivery?
    Thanks

    1) you need to create custom RF Tcode where you can design a screen to enter the batch and update it.
    2) Serial number is at IM level, if you want to trace it at the WM level then you need to go for custom program.( In standard it is not possible to track serial number at bin level)
    3) try doing research on LM71, LM72, LM73, LM74. LM76.
    4) There is not standard RF tcode to create TO, you need develop a custom Tcode.
        You need to sit with business to design the screens of this Tcode( mandatory field would be material, source storage, bin, destination storage, bin, SUT, )
       you can call function module L_TO_CREATE_SINGLE)

  • About multipe good receipts via MIGO

    Hello,
    I would like that my purchase order is delivered only once via  MIGO,
    Knowing that Overdelivery tolerance limit is unilimited and Delivery Completed Indicator is cheked. You know how to make PLEASE.
    Best regards.
    MR

    In my knowledge, there is no control in MM like "No partial deliveries allowed" etc like for SD.  In short, in standard SAP, GR allows partial deliveries.  Onlyway, I could see is "user exit" approach.  However, another way if 101 quantity should not allow "Changeability" globally (for all plants across globe in your project), I can suggest a solution via mvt type tables.....
    Regards

  • Link Goods receipt with PO via DTW

    Hi,
    I am uploading the goods receipt via DTW, using the Purchase Delivery templates. I need to link the receipt document with the PO. IS there any way to do it?
    TKs
    Adriana

    Suda,
    Tks for your quick response. The test box was not checked. I just did it again and the operation was succesfully but I does not update records in inventory, po and goods receipts.
    The PO has two items, first items with 7 serial numbers and the second item with 5 serial items. In the serial template I am entering the serial number in Internal serial , the record key and the Base line numbers , 0 and 1
    When I did the test was with only one item. Does this make any difference?
    Tks
    Adriana

  • Transfer Requirement for Goods Receipt Item

    Hi All,
    We are trying to create Transfer Order for Goods Receipt items using an ITS mobile application.We are using the function module L_TO_CREATE_TR to create Transfer Order by passing the Transfer Requirement from the Goods Receipt as an input to the function module. Our requirement is to create one Transfer Orde per Goods Receipt item. We need to create Transfer Order for the items simulatneously from different terminals.Since we have only one Transfer Requirement for the entire Goods Receipt document, we are not able to create Transfer Orders simultaneously because of the system lock (Transfer Requirement is locked).
    Is it possible to create separate Transfer Rquirement for the individual items in the Goods Receipt via customizing/User exit.
    Your guidance in this regard will be great help for us.
    Regards,
    Shaju

    Hi Dirk,
    Thank you for your reply.
    Our enduser will be using handheld device for Transfer Order creation. The user will pick the GR item material from one storage type (902) and the Transfer Requirement will be locked at this moment.Later while placing the SU in destination bin the user will scan the destination bin and the Transfer Order will be created at the time of scanning. Till the completion of the entire process the Transfer Requirement will be locked and no one else can pick the materials of the same GR from 902 storage type.
    We are trying to create Transfer Requirements for each Goods Receipt Item and we are not able to find any user exit in Goods Receipt Creation or any customizing option.
    Can you please check and help us to resolve the same.
    Regards,
    Shaju
    Edited by: shaju tv on Apr 5, 2010 11:40 AM

  • GR goods receipt of over quantity  forbidden

    hi all,
    I am trying to do a 101 GR goods receipt via the MIGO transaction but I have a order quantity exceed. I get the  M7022 message.
    Even if I produced more quantity in my order production compared to my sales order I want to able to do a goods receipt.
    I tried to move the M7022 message from error to warning in the OMCQ but it does not work...
    thanks
    Pierre

    Hi,
    There is no way in production order that u can contol Excess GR by making Error to Warning Message,
    It is not Standard Practice, and it Cannot work in PP.
    So there is an Customizing in Parameter OPK4, There is over delivery and underdelivery Tolerence.
    for ex if ur Planning GR of Finished for 100 ton, Overdelivery Percentage of 10 % increases you to GR upto 110 Tons.(100-110).
    Similary Under delivery Pecentage of 10 % allow you to make GR only 90 Tons.
    Pls use this to control the GR of your Finished Product.
    Regards,
    Pavan.
    Edited by: PAVANIDLUR on Oct 6, 2009 11:08 AM

  • Account Assignment in an automatic PO created from a goods receipt idoc

    Hi guys,
    I'm doing a goods receipt via the IDOC MBGMCR that is automatically creating a PO.  Is there a way to make the item on that PO using the account assignement "K" (Cost Center) ?
    In the BAPI for the goods movement, they are calling the function module "ME_CREATE_PO_ITEM" to create/prepare the item.  In that called, they defaulted the account assignement to space!!! I don't know how I can overwrite it.  Is it possible via configuration ??
    Many thanks,
    Stéphane

    Hi Stephen,
    Did you find an answer to your query, i have the same question i want to default the account assignment 'K' for each item for a particular stock transport order.
    I'm wondering if it can be configured or do i need to have ABAP do it.
    your reply is greatly appreciated,
    Thanks,
    Michelle

  • EKET-FIXKZ set after partial goods receipt of subcontract delivery schedule

    Dear all,
    when booking a partial goods receipt (via MIGO) of the finished product of a subcontract delivery schedule the schedule line becomes fixed (EKET-FIXKZ = 'X'), which hinders the next MRP run to modify the delivery schedule according to the new requirements.
    I have tested to change the fixing indicator via SE16 and the next MRP run will then replan the sub contract delivery schedule correctly. But this is no solution.
    Is there a way to modify this setting via an EXIT or BADI in MIGO ?
    Many thanky for your help
    Rabanus Diehl

    Dear all,
    when booking a partial goods receipt (via MIGO) of the finished product of a subcontract delivery schedule the schedule line becomes fixed (EKET-FIXKZ = 'X'), which hinders the next MRP run to modify the delivery schedule according to the new requirements.
    I have tested to change the fixing indicator via SE16 and the next MRP run will then replan the sub contract delivery schedule correctly. But this is no solution.
    Is there a way to modify this setting via an EXIT or BADI in MIGO ?
    Many thanky for your help
    Rabanus Diehl

  • Finding Program for triggering Print Program (MIGO - Goods Receipt)

    Hi all,
    Currently, I have developed customized print program and SMARTFORMS for Goods Receipt via MIGO, with output type ZZGR.
    Typically, this is a inter-plant transfer, where Plant A will issue a Delivery Order to Plant B, and Plant B will post goods receipt via MIGO (Movement Type 101), using Delivery Order number. As soon as the Material Document is posted, the SMARTFORMS shall be triggered by customized print program, in order to print out the goods receipt document upon material doc posted.
    The config for output determination (via TCODE NACE) for goods receipt is configured. I have tested post a goods receipt using Delivery Order, and Material Document is posted successfully. However, I got a message from SAP Inbox (Businees Area), saying that my Material Document having an update error, and the root cause is specifically from calling Function Module to trigger Smartforms in the print program. From tcode ST22, I realized that the error is due to empty parameter being passed to the function module (where the parameter is required field for further processing in Smartform).
    In order to rectify why empty parameter is bieng passed, I will have to debug the print program, after GR posted from MIGO. Therefore, can someone shed some lights on how to perform a debugging process, or any standard sap program involved, as I understand that the print program is triggered (in background) after GR posted?
    Also, can I know why the Material Document will not be committed to MKPF table after GR posted, is it due to the update error from the above mentioned?
    Many thanks.
    Best regards,
    Patrick
    P/S: I'm using SAP ECC6.

    Actually, this print program is being triggered in the update processing.
    Put a breakpoint in your driver program.
    In MIGO, before pressing the SAVE button start debugging.
    Press the SAVE button.
    Start the update debugging by Settings > Update Debugging.
    As soon as you continue in debugging, it would open another debugging session for the Update debugging. You can press continue and it would stop at your breakpoint.
    Regards,
    Naimesh Patel

  • Attach document while Goods receipt in MIGO

    Hi,
    Can I attach a word or a pdf document while posting Goods receipt via MIGO.
    In 'Service for Object' the option  store document is not possible. It is grey out.
    Do I need to do some settings to get this option so as to upload a file while posting the GR.
    I am able to get the option while create/change PO but not in MIGO.
    Regards

    Hi!
    To attach business documents in MIGO you have to do a little bit customizing first...
    In OAC0 check if a content repository is available.
    In OAC2 enter the document type you want to attach
    In OAC3 enter object type BUS2017 with your document type, content repository etc.
    You can attach documents only after the posting because until then SAP has no fix document number which is the key/link to the document. So display the posted material document again and then you can attach the business document.
    Greeting

  • ZOR order appearing on material doc created as result of post goods receipt

    Hi friends
    The user is creating ZRE return order with reference to ZOR order. Currently, they see ZOR order in the sales order field on the material document for good movement ( the post goods receipt for ZRE order)
    The qty returned is tied to ZOR order not to the ZRE order. They want the returned qty to be tied to ZRE order. Kindly suggest the config to achieve this. Is it controlled via copy controls?
    Your help will be appreciated.
    Regards
    Sreedhar

    user is creating ZRE return order
       with reference to ZOR order.
    It is a general procedure that we create a return order referencing the billing document and not the sale order.  I dont know why you were referring sale order to create a return order.
    Next on your comments
    qty returned is tied to ZOR order
       not to the ZRE order.
    what do you mean by that ??  If I understood your requirement correctly, the rejected material stock should be reserved against return sale order.  Here again, normally if you post the goods receipt via VL01N, the respective quantity will be blocked for quality clearance.
    Please elaborate clearly your requirement.
    thanks
    G. Lakshmipathi

  • How can I disable POST GOODS RECEIPT button in transactions VL31N/VL32N via Authorization or Role Level.

    How can I disable POST GOODS RECEIPT button in transactions VL31N/VL32N via Authorization or Role Level, There is a requirement from my client  and i propose two methode
    1- Creation of Ztcode ZVL32N and do changes ABAP program level
    2- Disablement via Authorization/Role level - but how can i find the auth object/ Authorization corresponds to POST GOODS RECEIPT button in VL32N

    I think you can make use of SHD0 - Transaction variant to achieve this. You can make it as grayed out while recording steps in SHD0.

Maybe you are looking for