Purchase order for same items

Dear Sirs,
We have a situtation wherein - PR for the same items are being raised under different WBS.  When purchase order is being raised for these PR's, although the items are same, purchase order with different line items are being generatted.
E.g
Item    Description     Qty    Rate
10        ABCD              5        10
20        ABCD              5        10
30        ABCD              5        10
40        ABCD              5        10
Is is possible that the system make a total of all the same items and present it in one line item only
Viral Bhinde

Hi
Check it in ME59N for aggregation of PRS. But in case of different WBS element, it will work or not.
Regards,
Raman

Similar Messages

  • Transfer of tax indicator to purchase order for service items in shopping cart

    Hi all.
    I have a problem with the tax indicator in the shopping carts and in the backend purchase orders for service items. If I create a shopping cart with service items with different tax indicators, the backend purchase order have a unique item including all the services. So, all the PO items are under one tax indicator while in the shopping cart there is more than one indicator. I mean, the PO is not correctly replicated with the information of the SC.
    Example: shopping cart in SRM with 3 items, tax codes: V1, V2, V1. The standard code transfers the information to the backend, and creates a purchase order with an unique item with the 3 services under tax code V1. So, the second service is not under the correct tax code, and will be wrongly invoiced.
    We have debugged all the code of the process, and we think it is a standard bug. When you replicate a PO in the backend from a SC in SRM, have you experienced this behaviour, or the service items are grouped in different PO items each one with the correct tax indicator?
    Thanks in advance.

    Hi again...
    I forgot to mention that we have found and applied the note 1822107 (Purchase order: wrong tax code for PO with 2 service items), that fits exactly to our problem. But after testing, it doesn't work.
    Regards.

  • Purchase order for KIT item

    Hi,
    my requirement is to raise Purchase order for KIT item.For Example--
    For 1 Kit item A, including 1 table and 4 chairs. Define components (table and chair) for item A by using Bills of Material screen. In Order Management, when user orders 100 item A, system will generate automatically 100 tables and 400 chairs and Ship to customer. Item A does not have Onhand, only its components have Onhand.
    will the oracle purchasing support this KIT purchase concept.
    pl give me suggestions.
    Thanks in Advance,
    regards,
    venkat

    Venkat
    I'm thinking that your requisition from OM will be automatically converted to internal requisition for 100 tables and 400 chairs, based on your setup.
    Would you still need to have 'KIT' setup in procurement?
    The other thing I can think of is, you can use Requisition Templates to help in ordering items on a repetitive basis.
    Let us know what you think.

  • Delivery completed indicator in purchase order for service item

    How can I make the delivery completed indicator (EKPO-ELIKZ) in a purchase order for a service item ready for direct changes.
    Per default this field is hidden on purpose for service items (according to SAP note 735404). Please inform me of customizing entry where that can be changed!
    Thanks,
    Johnny

    delivery completed indicator only gives information for MRP ( That not consider balance qty as onorder stock), it has no control on GR, so I am not sure what you will achieve to mark it in service PO?

  • How do we do production orders for same item code in different sizes

    Hi,
    We have Items which we buy as a single sheet of material and our customers can ask for us to cut the complete sheet into different sizes before despatching it. i.e
    Item Code Sheet1: Sheet size 100mm x 100mm
    Customer asks for sheet to be cut into 10 off 10mm x 10mm sheets, which we presently put on the sales order as a line note
    We then generate a production order for this item and indicate on the production order printout the line note
    We've recently had a customer who has asked for Item 1 in two different sizes on the same sales order ie
    Order Line 1 Sheet1 Qty:1 Line note: cut into 10mm x 10mm sheets
    Order Line 2 Sheet1 Qty:1 Line note: cut into 50mm x 50mm sheets
    When generating the Production order SAP combines the items into
    Product No: Sheet1
    Planned Qty: 2
    Where as we want it to create 2 production orders 1 of each different sizes items.
    I know I can create BOMs for those two sizes, but customers can ask for the sheets to be cut to whatever size they want. Is the best method to create BOMs on the fly for each different sizing option or are there alternative methods that are easier to manage ?
    Thanks
    Carl

    Hi Carl Rutter,
    You have to creat 2 special production order for this item. when issue the component make sure you issue the stock as per the cosumption becaue one have 10mmx10mm and the another item have 50x50 in this case you issue component by square inch wise. for example 10*10 = 100 squre inch.
    50*50 = 2500 square inch so the cost will be approtionate. you can Use multiple uom method to obtain this, other wise you have covert into stock then you issue the component. If you want traxk size wise ,you can use batch option for Finishe goods.
    Regards
    Sridharan

  • Stored procedure in purchase order for duplicate item for a vendor

    Hi all
    I have written a stored procedure for duplicate item for vendor the output i need from this SP is whenever for a vendor we will raise purchase order the system should check that their shouldn't be any po in the system for the same item by the selected vendor. Its working fine when only one item is selected but it is behaving wrongly when more than one item is selected.
    If (@object_type='22' and @transaction_type='A')
    BEGIN
    Declare @Vend as varchar(200)
    Declare @ItemCode as varchar(200)
    Select @Vend =CardCode From OPOR Where DocEntry = @list_of_cols_val_tab_del
    Select @ItemCode=ItemCode From POR1 Where DocEntry=@list_of_cols_val_tab_del
    IF 1 !=(Select Count(T0.DocEntry) From OPOR T0  Inner Join POR1 T1 On T0.DocEntry=T1.DocEntry  Where T0.CardCode=@Vend and T1.ItemCode=@ItemCode)
    Begin
    select @error =1
    select @error_message = 'Item Code Already Exists For This Vendor'
    end
    end
    Thanks
    Rashid.

    Hi Rashid,
    Try this,
    if @object_type = N'22' and @transaction_type in (N'A', N'U')
    begin
    declare @line1 int
    declare @lin1 int
    declare @out1 int
    Set @out1 = 0
    SET @lin1 = 0
    Declare @Vend as varchar(200)
    Declare @ItemCode as varchar(200)
    Select @Vend = CardCode From OPOR Where DocEntry = @list_of_cols_val_tab_del
    Select @line1 = Max (LineNum)FROM POR1 WHERE POR1.DocEntry = @list_of_cols_val_tab_del
    While @lin1 < @line1
    Begin
         Select @ItemCode=ItemCode From POR1 Where DocEntry=@list_of_cols_val_tab_del and LineNum = @lin1
          if (SELECT COUNT(T0.DocEntry) FROM POR1 T0 inner join OPOR T1 on T0.DocEntry = T1.DocEntry
          WHERE T0.ItemCode = @ItemCode and T1.CardCode = @Vend)> 1
          Begin
               Set @Out1 = 1
               Break;
          END
               Else
               Begin
               Set @lin1 = @lin1+1
               Continue
          END
    END
    Set @lin1 = @lin1 + 1
    if @out1 = 1
    begin
          Set @error = 1
          Set @error_message = 'Item Code in line ' + CONVERT(nvarchar(4), @lin1) + N'already Exists For This Vendor!'
    End
    END
    Regards,
    Bala

  • Variant pricing in Sales order and Purchase Order for same Config material.

    Hi,
    I am stuck to a point wherein the varaint pricing is working either in Saler Order or in Purchase Order.
    The issue is that the Variant Condition Characteristics 'VARCONDMM' has MMCOM and VKOND in additional tab and in the multiple selection active (arrow) I have maintained SDCOM and VKOND.
    SO the variant pricing is active at the time of PO creation when 'VARCONDMM' is used and not at the time of SO creation.
    So I created  Variant Condition Characteristics 'VARCONDSD' has SDCOM and VKOND in additional tab and in the multiple selection active (arrow) I have maintained MMCOM and VKOND. and changed the dependencies accordingly for other characteristics.
    Then the variant pricing is active at the time of SO creation when 'VARCONDSD' is used and not at the time of PO creation.
    Any positive/quick inputs are highly appreciated.
    Regards,
    Abhilash

    Hi,
    did you check the code in dependency editor of the dependencies..? do they match between your previous system and new one?
    Regards,
    Raghu.

  • Different collective purchase order for same site/vendor combination

    Gurus,
    We are trying to create a collective purchase order (WF10) from the distribution center (site) to the manufacturing site (vendor).
    When we generate the work list, for certain articles, separate CPO numbers are being generated. How can we ensure that all the articles are available in just one CPO instead of multiple CPOs? What settings do I need to look at? Please assist.
    Thanks,
    Suhas

    All,
    This has been resolved. In the purchasing info record, the Region (EINA-REGIO)was maintained differently for a few articles.
    Thanks,
    Suhas

  • Purchase order for a line item

    Hi Guys,
                 I have got the following business sceanrio.
    I have got a material "A" which can get from locally or can get from 3rd party also.
    In the sales order i have entered like following.
    Line item no.  Material     Qunatity     Item category
            10             A              100            
            20             A              500
    As only 100 quantity is available in my stock i want to go with 3rd party for line item 20.
    How can i go ahead in this scenario.
    What would be the item categories for two line items?
    If i go with Purchase order for line item 20. Where in sales order i can track that, Line item 20 is getting thru Purchase order, My requirement is to store the corresponding purchase order no for each line item getting from 3rd party (STO also).
    Thank you
    Anil

    Hi Anil,
    For delivery from stock use the item category TAN
    For procuring it from Vendor use the item category - TAS/TAB
    Check whether the ITEM CATEGORY GROUP & GENERAL ITEM CATEGORY GROUP for Material B is BANS/BANC & the Material type is HAWA.
    Once you get the item category TAS/TAB, in sales order save it and go to Change to mode of the Sales Order then you can see the purchase requisition no in the Schedule line tab. Based on this Purchase Requisition a PO is created.
    After you save the PO note down the PO number and then raise Goods Receipt (MIGO) with reference to the PO number.
    Now you can goto MMBE and check the Stock for Material B.
    Reward if helpful.
    Regards
    PAVAN

  • Enhacement  for  Purchase order creation (Service Item)

    Dear All,
    While creating the purchase order for service items , the base value for calculating the tax must be a value of a pricing condition type.
    Can anyone advice how to link the pricing and tax details of a service item.
    Thanks
    Ravindra Suvarna

    Hi,
    It is a coding error.
    Could you please check if you have applied the note 1049031 with the latest version 13?
    Regards,
    Edit

  • Purchase Order for Leased Asset

    Hello,
    I want to create an Purchase order for leased asset and want to make the payment for that.
    It will be helpfull for me if you can tell the config setting required for that and the sequence of Transactions for completing the cycle for the same.
    Cheers,
    Manish Jindal

    Hi,
    You first need to create Asset Number in transaction AS01. This is normally done by finance people. Once you get the asset number, create purchase order in transaction ME21N, by selection account assignment as A - Asset. Enter other data such as material number, quantity, requirement date, price, tax code. In the account assignment tab at item level, enter the asset number you got while creating the asser in transaction AS01. Save the purchase order.
    Once you receive the material against this purchase order, the accounting entries will be done against the asset number.
    Hope this fulfills your query.
    Regards,
    Prashant

  • How to create Purchase order for non valuated material with fright charges

    Dear Guru,
    When i have creating purchase order for non valuated material then GR non valuated tab should be in display mode.And how to load fright charges.
    Regards,
    Abhijit

    hi,
    while creating the PO, u have the option FREE indicator in the right corner of the line item.(u can have separate Valuation type for the same, for valuation purpose)
    even u can create the UNBW material type.
    check the material type customization in oms2
    hope will get the clarity

  • TS1368 CHARGED TWICE FOR SAME ITEM....PLEASE FIX THIS PROBLEM.

    11/23/12 order MGK8JL6NJJ  INVOICE 214042327611 CHARGED TWICE FOR SAME ITEM.. TRYED TO DOWNLOAD 3 TIMES 2 X GOT ERROR AND TOO TRY AT LATER TIME 3RD TIME WENT THROUGH RECIEVED ITEM. PLEASE FIX THIS PROBLEM. THANKS

    These are user-to-user forums, you are not talking to Apple here. You can contact iTunes support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption
    For future info typing all in capitals is considered shouting, and may mean that people don't reply to your posts.

  • Single Purchase Order for different Plants of Different Company Codes

    Hi Experts,
    I have a scenario, My Client has 3 Company Codes (1000, 2000, 3000 )
    Company Code 1000 has 2-Plants    ( A001 and A002 )
    Company Code 2000 has 1-Plant      ( B001 )
    Comapny Code 3000 has  3-Plants   ( C001, C002, C003 )
    All these 3-Company codes has centralised purchase organisation.
    My Client requirement is to raise a single purchase order for external vendor, for all the plants A001, A002 which is in one company code and similarly in same Purchase Order for B001 plant which belongs to 2000 Company Code and Similarly for same purchase order for C001, C002, C003 plant which belongs to 3000 Company Code.
    1)Is it possible to raise a Single Purchase to External Vendor for plants of Different Company Codes ?
    2)Does it affect the accounting document ?
    3)How to inward and where to inward these goods ? with respect to plant wise ?
    Please Guide with Valuable inputs.
    Thanks in Advance
    Best Regards
    Javeed
    Best regards
    Javeed Ahamed

    1) How about Profit Centre ? We have Framed each Profit Centre with respect to Plant
    Why should there be a problem?
    2)In Case of Migo does we have to be careful and do stepwise MIGO with respect to different Plants ?
    of course people have to be careful when performing transactions.
    if you have multiple items in a PO then you can easily receive all items in one go. So people have to careful and need to check if they really received each of the PO items. Especially if people have authorization for many plants, then the user who is usually performing the receipts for plant A can easily post the receipts of plant B too.
    3) How to Process MIRO ? Can we process Partial MIRO"S with respect to Line-items of those particular Plants ?
    MIRO allows to post the invoice like it is send to you from your vendor. If it is just for a part of your PO then this is just a fact and MIRO allows to post this kind of invoices too.

  • Purchase order has no items

    Hi All,
    While i am posting the MIGO transaction with reference to PO I encountered error as a "Purchase order has no items.
    Thanks and regards,
    Ravi Vruddhula.

    Following are the reason
    Check the confirmation tab ate item level at the purchase order. It should be blank.
    Is there any goods receipt ag. this PO, if yes, check the PO history tab at item livel in the PO. Check the pending qty.
    It sholud not be deleted PO.
    Check the delivery date in the PUrchase order.
    Check the release stratagy in the PO. It should be release.
    Thanks,
    Samir Bhatt

Maybe you are looking for

  • IMac 27'' keeps powering down for no reason

    After about 2 hrs of editing sometimes my iMac 27'' keeps powering down for no reason and then rebooting.

  • REG : OOPS Controls Flow In Report

    Hii, I have to create a report in which the screen should be divided into 3 parts given below..                 |                                                               |                 |                                                       

  • Can somebody please help-..with page ITEM

    Can somebody please help-.. I have an Item named P11_FLAG on Page 11 of my application. I want to reference or access the value of this Item in all the pages of my application. I have tried several options but it seems not to work. I will really appr

  • Create 1 PDF form then- share between platforms (ios, android), get approval (esign), remote print?

    Is it possible to create a form in acrobat (pc) then send it to an ipad user to fill out, and then have it sent to an android phone for digital signature & remote printing? I would only need to create one form, and then it would get filled out over a

  • New i5 MacBook Pro won't read or play certain DVD's

    Just got a new i5 MBP and it won't read certain DVD's that I put in. It tries to read them but then spits them back out after a few seconds. Any thoughts?