Single task for 2 delivery Items having same material

Dear All
Requirement related to  free goods functionality
For instance if a customer orders Material A - 10 Ea ( Line Item# 10)  he gets 1 Ea has free item ( Line item# 20) which is populated as additional line item in the SO .
This additional line is passed to delivery and eventually results in 2 EWM tasks for physically same Material A -11 Ea to be picked from assuming same bin.
ECC-WM functionality supports creation of  single TO for multiple delivery lines having the same material.
Is there any way to achieve the same in EWM.
regards
Saravana

Hi,
"ECC-WM functionality supports creation of  single TO for multiple delivery lines having the same material."
I would really be surprised if this is any standard functionality? So I also don't expect this in EWM...
brgds
Juergen
To detail what I mean and because you specified this in another mail: a single TO is possible, but not a single TO item. And the same is for EWM. You might get a single WO, but not a single WT.
Message was edited by: Juergen Pitz

Similar Messages

  • Inspecyion lot for delivery item

    Hi Experts,
    Please help.
    I have created sales order. Then created Production order with reference to that sales order. Processed poduction order. Stock posted to QM stock. Done Result recording & UD. Stock posted to Unres.use stock. Now I want to quality inspect for delivery item of same sales order.and want to create quality certificate. What are setting require.
    Please tell step by step.

    Dear Raja,
    Adding to Shyamal answer for Inspection for delivery you may have to do these steps also
    1) SPRO > QM> Quality Inspection > Inspection lot creation > inspection at shipping > Assign inspection type to delivery type> assign inspection type 10 to the delivery type you need the inspection
    2) Maintain customer info Record. QV51 which is a customer ,material combination. You can specify whether or not an inspection lot is created before or after the goods are shipped, or whether the quality inspection will be carried out by the customer.Also you can maintain default customer specifications for a customer or customer information records for customer/material combinations
    3) Maintain 10 inspection type in MM02.
    4) Create the inspection plan using the relevant Usage
    Hope this helps
    Regards
    gajesh

  • Goods Issue error - batches not defined for delivery item

    Hi,
    We are getting a Goods Issue error  u201CThe batches are not defined for delivery item 000010u201D.   We are only getting this error for a material that is being shipped against a particular third party sales scheduling agreement.  We went live in 2007 and we had no issues, but when we had to create a new Sched Agreement this year, for third party sales, we started to get this error.  However, if we re-activate the old scheduling agreement we do not get the error.  We have a batch job that executes the following steps:
    1.     VL06IG (collective goods receipt)
    2.     VL10 (collective delivery)
    3.     VL06O (collective GI)
    We have compared the 2 scheduling agreements and see no difference.  We are assuming it has something to do with how the scheduling agreement was setup, but are not sure.  Any suggestions on how to correct this problem would be much appreciated.
    Thanks in advance,
    Helen

    Dear Murali,
    The material has not changed at all.  I'm not sure what you mean by maintaining batches while receipt of the material.
    If I re-open the old scheduling agreement, we do not get the error message.  However, as soon as we use the new SD scheduling agreement, we get the error.  We are using the same material master on both scheduling agreements.
    Thanks,
    Helen

  • Dispatch center - Select multiple tasks for scheduling at the same time

    Hi!
    I need a consultation regarding Dispatch center. Is there a functionality to select multiple tasks for scheduling at the same time for one resource?
    Please, guys, this is urgent.
    Jan

    You can schedule a single task or multiple tasks automatically directly from the
    dispatch center. The scheduling criteria applied come from Advanced Scheduler.
    Make Sure, you have the advanced scheduler. With out Advanced Scheduler and by just using Advice, you can only assign one task at a time.
    HTH
    ps: for more information, refer Field Service User Guide, "Scheduling Tasks"

  • Valuation type is not defined for delivery item 000010 (help me)

    hi
        when i  post goods issue in delivery it is  giving error "Valuation type is not defined for delivery item 000010"
    even i have assigned material to valuation class and valuation category , but till it is giving error . plz helm  out

    Hi,
    you need to assign proper G/L accounts in OBYC for your plant/gen modification key/valuation class
    Go to your material master..check the accounting view.See whats the valuation class.
    Now go to OBYC - GBB
    here for the combination of your plant & modification key VAX, VAY & VKA & your valuation class give the resepective G/L accounts.
    this should solve your problem.
    thanks

  • How to create production order for multiple items having common raw materia

    Dear all,
    We are running a sheet metal fabrication company at Vadodara Gujrat.
    Please guide us how to create single production order for multiple items using single raw material??
    For example, We want to produce baby shirt(item code AAA001), shirt with full sleeve(item code AAA002), shirt with half sleeve(item code AAA003),shirt slim fit (item code AAA004),shirt loose fit(item code AAA005) from single raw material say(item code XXX001).
    Right now we have to create 5 production order to produce above 5 items of single sales order  in SAP B1 though it is made from single raw material which is foolishness and time consuming too. (Please also note that to produce any finfish good item, raw material required for that item may vary every time in our process.)
    Kindly guide us how to solve the problem.
    Thanks.
    RUPESH  +91-9227744273
    WEB : www.gorasia.co.in

    Hi Rupesh Gorashiya,
    This is possible through MRP for that you have to put Sales Order first and Run MRP Wizard
    MRP Wizard Put Multi Production Order as per Item Taking in Sales Order just click it on and execute.
    Thanks,
    Srujal Patel

  • BAPI to Update Country of Origin for Delivery Item

    Hello All,
    I have a requirement as follows.
    For an Outbound delivery item (VL02N), I need to update the 'Country of Origin' (EIPO-HERKL). This will come in 'Origin/Destination/Business' tab under 'Foreign Trade /Customs' tab for the delivery item. Could anyone please tell me if there is
    a BAPI to do the same.
    I think this country of origin is not the country of origin for the material, because even if the material is having a value for country of origin in material master, the same is not reflecting in the delivery.
    Thanks and Regards
    Indrajit

    Hi,
    Try using the FM ''EXPIMP_POSTING".
    Refer to the sample code.
    PARAMETERS p_deliv TYPE vbeln.
    DATA: lt_xeikp TYPE STANDARD TABLE OF eikpvb,
          lt_xeipo TYPE STANDARD TABLE OF eipovb,
          lx_xeikp TYPE eikpvb,
          lx_xeipo TYPE eipovb,
          lv_exnum TYPE exnum.
    SELECT SINGLE exnum
           FROM likp
           INTO lv_exnum
           WHERE vbeln = p_deliv.
    lx_xeikp-exnum = lv_exnum.
    APPEND lx_xeikp TO lt_xeikp.
    lx_xeipo-exnum = lv_exnum.
    lx_xeipo-expos = '000010'.
    lx_xeipo-herkl = 'US'.
    lx_xeipo-updkz = 'U'.
    APPEND lx_xeipo TO lt_xeipo.
    CALL FUNCTION 'EXPIMP_POSTING' IN UPDATE TASK
      TABLES
        fxeikp = lt_xeikp
        fxeipo = lt_xeipo.
    COMMIT WORK.
    Thanks,
    Indrajit

  • Single migo for multiple vendors and multiple material

    Dear MM Experts,
    I have 2 open purchase orders as per below
    PO no 01 :- Material : A , Vendor : X
    PO no 02 :- Material : B , Vendor : Y
    Can we make the single goods receipt for both purchase orders even having different vendor and material.
    If yes then How ? and if no then Why ?
    Please advice me.
    Thanks & Regards,
    Sandeep.

    I have not read about or seen any reason why you should not do receipts of many vendors in one MIGO transaction.
    The error message can be set to warning or even switched off entirly. SAP would certainly not allow to switch an error to a warning if that could harm accounting documents. At least they would have issued an OSS message outlining what problems can ocur and that they dont take responsibility if make it a warning.
    It is not a usual process. at least in my environment each vendor sends individually. But I can imagine to pick the goods from different vendors myself and bring it into the plant. so it can be worth to do a single receipt.
    I found one OSS note that mentions (for me) a valid reason for error message by default:  the info in the screen may confunse the users.
    Note 300711 - Header data of MIGO refers to 1st item
    Symptom
    During goods receipt for several purchase orders with, for example, different vendors, the header data of Transaction MIGO does not change after you have entered the 2nd purchase order. The system still displays the vendor of the first item.
    The system shows this behavior for all fields of the header area which are actually order item data.
    Solution
    This function corresponds to the design of Transaction MIGO
    The item data which is displayed in the header area (as for example, the vendor) refers always to the first item.
    It is displayed in the header area to make the work easier for the person who entered the data since this data is often identical for all items and a check of the header area is quicker. If you work with different 'header data' per item you must check the data on the detail of the individual items.

  • Linking Delivery Items with Delivery Items having batch

    Hello Fellow ABAPers,
    Does any one of you know how SAP links items in Delivery table (LIPS) without batches with their respective items having batch.
    For e.g. in Delivery Item we have delivery no. , item and batch. Assume we have delivery no 801xx and item 10 for this record there is batch with delivery no. 801xxx and item 90001. Likewise for delivery no 801xx and item 20 there is batch with delivery no. 801xxx and item 90002.
    How does SAP link line item 10 to 90001 and line item 20 to 90002. Batch no. could be different. If there are multiple batches for the same line item, how can we identify them programmatically?
    Is there any separate table in SAP or is it maintained in LIPS only?
    If you any of you have worked on this please let me know.
    Thanks and Regards,
    Huzefa Vasi

    Hi,
    In LIPS table itself, there is a field called UECHA. (Higher-level item of batch split item)
    This field contains the higher level item number
    for eg. consided line item 10 in 2 batches called 90001 and 90002
    VBELN             POSNR              UECHA
    801xx                 00010                   0000
    801xx                 90001                   0010
    801xx                 90002                   0010
    801xx                 00020                   0000
    if UECHA is 0, then it is the higher level item
    Hope this will be useful

  • SD- Sales Order - ATP check not working for few item in same sales order

    Hi Experts,
    Need help we activated ATP check but for few item i could not find confirmation qty after availability check. In same SO out of 4 items for schedule line it confirming qty for 2 item but  it's not confirming for remaining 2 items though stock is available. Please guide me how to correst and what need to check.
    Manoj

    Dear Manoj,
               As you know, ATP is a big subject & some times its difficult to point the exact problem.
    In your case, I suggest you to execute the function module:BAPI_MATERIAL_AVAILABILITY using Tx:SE37
    key in selection criteria , in results check the "ATPQTY"- it will show you how much actual stock is available for use i.e. ATP qtty.
    still if you find the availability & system not confirming the qtty, then problem could be in checking rule
    Tx:OVZ9 check in relevant combination, whether you are considering RLT or not?
    is this case with MTS or MTO
    because in Sales order -
    for MTS - checking rule "A" & MTO checking rule will be "AE"
    Regards,
    Reazuddin MD

  • How to restrict login for multiple users having same Role

    Our Web Application is deployed on Tomcat 5.5
    The requirement is ?
    There are roles in application like "operator", "admin"?
    There are multiple users created for each of the above role.
    When one user of "operator" role is logged in, then
    It should not allow to login for another user of "operator" role.
    Also, if user did not log out & application gets close, then
    It should not allow to login for another user of "operator" role.
    Also, it should not allow to login for multiple requests of same user
    (using another browser instance...)
    Is it possible using session object?
    But, using session object, it will create separate objects for different users,
    So here I will not be able to restrict session object creation rolewise.
    Also, how to retrieve these multiple session objects created for different users on server?
    If anyone is having the solution please reply as soon as possible,
    Thank you.

    To tell you the truth, this is a stupid requirement. It must be an extremely fragile application.
    In any case, you will have to write your stuff for that. Probably a filter that on login, logout, and session expiration checks, makes, or removes entries in a DB (using a synchronized resource to prevent race conditions) or possibly even simply in an application context object.

  • Sap script for Delivery(item wise)

    Dear ABAPer's ,
        I am working on a SAP Script for Delivery(<b>Item wise</b>).The requirement is I need a print out for each line item in a delivery.I am using tcode VL71 for taking prinout.
    I have modified the routine <b>RVADDN01</b> according to my requirements.But the problem is i am not able to capture
    which line item is selected.Whichever lineitem i select it is giving the details of all the line items.
    Am I using the correct routine or someother routine is available for item wise details.
    Please clarify.

    hi SAP ,
    u have selected right one , Just Debug the script from which text Element u are getting the data into Form, then check ur Logic.
    Regards
    Prabhu

  • How can 2 diff prices for 2 GRs of same material and same Qty be ??

    Hi Guys
    When i am doing 2 Goods Receipts (GR) for same material and same Qty with different Batch characteristic, the material price (in the Quantity tab of MIGO screen) is getting changed. Two different prices are coming to the two different GRs. How this can be ??
    Actually it has to pick the std. material price from material master as "S" is the price control .
    May anyone tell how is the Batch characteristic configured to an automatic split valuation (Valuation type) and thus a new price is copied to the field in the GR screen. (MSEG-DMBTR)
    Kindly Rush asnwers !!
    MaruthiRam

    Hi Ram,
    Please check wheather the split valuation is activated  or not for this material.
    if it is activated,
    go to mm03.
    select accouintg view, enter the valuation type ; in your case  BATCH1.
    then you can see the value of this batch material.
    again go to mm03,
    enter second batch in the valuation type.
    you can see the batch2 material value.
    regards
    srinivas

  • Issue output options for reprinting output for delivery items

    Hi Gurus,
    I want to create the new output for delivery but at item level.
    There is a standard proceduere available for trigger output at item level.
    But I am not able to find the option to re-issue or see the print preview as that is not option is available in the standard menu at VL02N.
    Due to this I am not able to debug the code as during triggering the output at item level both the program and script are called in background.
    So is there any standard option available at item level to see the print preview as we can at header level.
    If you requried any additional information then please let me know. Eagerly waiting for the reply.
    Regards,
    Sagar

    Hi Arun,
    Yes I want output to be trigger at the item level in the delivery.
    If i tirgger the output that output at item level, i see the ouput as green (ie successful)
    but when i got menu and try to issue to output i do not see this output type in the list and shows all header output types only..
    Due to this i am not able to debug my program when doing print preview..
    So i need a way where i can see the my program in debugging mode.
    And VT70 is not useful to me i do no shippment no. but I have only delivery with me.
    Regards,
    Sagar

  • Every delivery nos having same sales order should create single invoice.

    Hello All,
    My Business requirement is :
    For particular Order type if the deliveries belong to the same sales orders, then Routine allow creating Single invoice else it should spilt the invoice according the deliveries belonging to different sales orders.
    Before this routine is called i have to check conditions like 'delivery type' and sales area.
    So, I have copied routine FV60C001 , added conditions as per requirement. But how to code this requirement is my issue.
    Could anyone please suggest how to achieve this.
    Regards,
    Meena

    Hi,
    Check SAP Note 11162 - Invoice split criteria in billing document to seach other possible causes.
    Regards
    Eduardo

Maybe you are looking for