Prices per 100

Hi
We have a lot of small, low priced items (electronic parts) which we order on reel's in sizes of 1'000 up to 6'000 and for which we get prices from our suppliers per 100 pieces, i.e. 5.95 per 100.
Is there a way to manage this within PO's except to go and enter a price per piece of 0.0595 ?
Thanks
Franz

Hi Franz
The best option is to go to Item Master > Purchasing TAB and set the Purchasing Unit of measure to 100's. You will still maintain the price list in singles (if you are using a price list). In the Purchase Order the price will be shown per 100's if you have a last purchase price. If not you can enter the price as 5.95. To order a 1000 you will need to enter a quantity of 10 (10x100). To disable the pack size on the document, display the column BaseUnits in the document. If you set it to No (Yes by default) you will be ordering single units (each). A good idea is to display the UOM and ItemsPerUnit in the document rows as well. This will inform the user that they are buying this item in a pack size, and others in singles.
Kind regards
Petre Juby

Similar Messages

  • Custom B2B apps in VPP $9.99 minimum price per app/user instance or just entire purchase?

    For custom B2B apps purchased under the VPP, is the $9.99 minimum the price per installed app instance (i.e. per user) or per app developed? In other words, does a customer with 100 users buying just a single app from me pay at least $9.99 or at least $999? Thanks!
    Will

    Using that terminology, what I'm looking for is the minimum cost is for my customer for, say, 100 copies of a single app.  Is it $999 or $9.99 (or something else)?  I cannot get a straight answer from any of the Apple documentation, which dances around this distinction.
    In case it's not clear, I'm trying to minimize my customer's cost.  I'd really prefer to give the app to them for free, but it sounds like that is not possible within the B2B program.  I realize I could post a free app on the App Store, but I'm looking to limit distribution and potentially customize my app for each customer.
    The Enterprise developer program is also not an obvious choice, because again my customer pays, and it's unclear if they can even receive apps I develop through that program.  Again, the Apple documentation is very unclear.
    Thanks again,
    Will

  • What MBP setup offers the best price per performace!!! I have my pick.

    let me start by saying i have the stock 2.0 MBP setup. but looking at all the numbers i am wondering if its the best price per performace setup. im starting to doubt it. the 256 VRAM is getting mixed reviews for it performance gains over the 128. the rest can be optioned out on the 1.83. so here is my pick for best price per performance:
    1.83
    100 GB HD
    2 GIGS of RAM. of course non apple ram to save $$$
    $2299

    The 256VRAM is important if you use dual displays. Say with Aperture on one and PS CS on the other

  • PO: Condition type maintained in header level affect the price per unit

    Hi,
    When I create a PO (Tcode ME21N) with 2 line items:
    Line Item 1: $5.00 per unit, order 1 unit
    Line Item 2: $10.00 per unit, order 1 unit
    Then I put a condition type: Transportation Charges of $10.00 at header level.
    The system will auto calculate and proportionate the transportation charges into that 2 line items. So now, the price per unit of the 2 line items has been change:
    Based on the formula [ (original price per unit * Transportation Charges / total order value) + original price per unit ]:
    Line Item 1: $8.33 per unit [ ($5.00 * $10.00 / $15.00) + $5.00 ]
    Line Item 2: $16.67 per unit [ ($10.00 * $10.00 / $15.00) + $10.00 ]
    There are 2 things here that we want to do:
    1. We donu2019t want the transportation charges affect the price per unit. Means we do not want the price per unit to be changed. We want the transportation charges stand alone on it owns.
    2. Also, sometimes the transportation charges is paid to a different supplier, meaning the original order value paid to supplier A, and the transportation charges paid to the supplier B (which is a transportation company).
    Can anyone advise how can I do this?
    Thank you.

    hai;
    give the transportation charges in item level
    go to 'item details' tab and select individual item ,go to condition ,maintain the 'frb1' value seperatly for the two items in the PO.You can also assign seperate transportation vendor for items sepertly.
    For selecting the transportation vendor ;you just select the line where you maintained the frieght value and click on the 'condition detail' button shown in the bottom of the screen then on next screen there is an option for giving the transportation vendor acccount no.
    try
    hope this will help you
    by fasal

  • Price per minute of Flash animation?

    Hi,
    I need to create 2 minutes of animated info graphics in Flash. What is the general formula for price per minute of Flash animation? I know it varies, though this would be high-end animation requiring lots of things to be animated, such as bar graphs, etc.
    Thanks,
    Dan

    You're right. It totally varies. Might be better to estimate how many hours you think it will take to complete and then decide on your price per hour.

  • Effective price is 0.00 INR, material price is 100.00 INR error in contract

    Hi All,
    We are creating Contract with vendor and material with transaction ME31K.
    When we enter tax code, system prompts a warning message :
    "Effective price is 0.00 INR, material price is 100.00 INR
    Message no. 06207"
    Even if you ignore this and try nto create a PO w.r.t contract Tax values will be zero in invoice tab.
    Please let me know why system is behaving like this and how to fix this.
    With Regards,
    Vijaykumar P

    Dear Vijay,
    If this is a value contract and system is working correctly.
    For value contract,you are not entering any quantity value so system calculates the quntity as 0 and value = quntity *price
    so 0*any price =0.000  Because of this it takes effective price as 0.00.
    Regards,
    ian Wong Loke Foong

  • How to retrieve price per unit in SAP?

    Hi all!
    does anyone know what are the steps to retrieve from SAP price per unit value that customer was invoiced?
    I am writing Z program for retrieving price per unit (for example per kilogram) in order to calculate debit/credit memo invoice for the customer.
    To achieve this I have the following information:
    customer nr
    material nr
    amount of units (for example amount of kilograms)
    invoice nr
    pricelist nr
    so price per unit value is missing here... if I have it I could multiply it with amount of units and get the result I need...
    Award points are waiting!
    BR, M.

    Get the data from A004 and A005 tables...
    See below example code material price per unit :
    Get the data from A004 table to get KNUMH
    Added new field Sales Unit - Seshu 01/09/2006
      refresh : i_a004.
      clear :   i_a004.
      data : lv_kbetr like konp-kbetr," Condition value
             lv_KPEIN like konp-kpein , "per
             lv_KMEIN like konp-KMEIN. " Sales Unit
      select * from a004 into table i_a004
                              where matnr = i_join-matnr
                              and   vkorg = '0001'
                              and   vtweg = '01'.
      if sy-subrc eq 0.
        sort i_a004 by DATAB descending.
    Get the Latetest Date
        read table i_a004 with key matnr = i_join-matnr
                                   vkorg = '0001'
                                   vtweg = '01'
                                   binary search.
    Get the Sales Value
        select single kbetr KPEIN KMEIN from konp
                 into (lv_kbetr,lv_KPEIN, lv_KMEIN)
                                 where knumh = i_a004-knumh
                                 and   kappl = i_a004-kappl
                                 and   kschl = i_a004-kschl.
        if sy-subrc eq 0.
          i_output-kbetr = lv_kbetr / lv_KPEIN.
          i_output-KMEIN = lv_KMEIN.
        endif.
      endif.
      clear : lv_kbetr,
              lv_kpein,
              lv_KMEIN.
    Reward Points if it is useful
    Thanks
    Seshu

  • Get avg prices per day, in Excel, when each day has a different number of prices

    There is an average formula 'average' that will do just this
    Do you have an example spreadsheet?

    I have a CSV file that has dates and prices for a stock. 
    The stock is not traded every day (so dates are not contiguous).  Each day may have only one price, or it may have several prices for the day (one price per trade).
    I need to find the avg price per day for the stock for each day. 
    Is there a formula that I could use in Excel 2013 to get the avg price per day, considering this data set?
    This topic first appeared in the Spiceworks Community

  • Price per unit is getting round off to two decimal places.

    Hi Gurus,
    In the Billing output, the Price per unit is getting round off to two decimal places.
    How can we avoid this or allow 4 decimal places for such cases.
    In the same pricing procedure, we have two pricing condition types PR02 and ZR01.
    When PR02 is being used,it doesnt rounds off Price per unit.e.g .578888 = .578888
    But when ZR01 is being used the system rounds off price per unit.e.g.578888 = .58
    Please suggest where is the setting for it.
    Thanks
    Montee

    Hi,
    Which currency you are using? If its INR, then it will do only for 2 decimal places.
    The solution for ur problem can be ractified by changing the scales :
    Also check OSS 80183
    Thanks,
    Raja

  • How to maintain price  for 100 units

    Dear all i have question  , i want to give  pricing for  conditin records in vk 11 for condition type for PR00   and the price should be calculated like for 100 units
    eg:  Material " X"     Price  is 700   for 100 units
    how should i have to go and maintain in the condition records for 100 units  should i have to maintain scales ? if yes how should i have to go and maintain in scales ?
    Please guide me
    thanks

    Hi Kumi,
    I agree with the above solution but if there is some restriction in the business like if the customer buy 1 to 99 units then the price will be 8 per unit.
    If customer buy 100 units then the price will be 7 per unit (7*100=700).
    Then you can use scale in the situation.
    Hope it helps,
    Regards,
    MT
    Edited by: M T on Mar 21, 2010 11:58 AM

  • Purchase Price Per Quantity

    Hi.
    I am wondering if B1 allows for multiple entries to be made in a purchase price list that breaks on quantity?  Example, say an item has a cost of $1 if purchased in quanties up to 100, $.75 if in quantities of 101-300, $.50 if in quantities of 301-500, etc.

    Hi,
    B1 support special price with volume discount like you described.  However, although they apply to purchase,  most users use them for sales.  You may give it a try.
    Thanks,
    Gordon

  • Activity Price per TON

    Hi,
    Is it possible to maintain the activity price perio TON instead of machine hours or Labour hours or Set up.
    if it is possible,kindly adivce me how to Maintain Activity type per TON.
    Thanks
    Sunitha

    Hi, Sunitha,
    Of course you can use any unit of measure, and you can use your-self defined unit of measure for the activity measure. e.g. some transportation department use the Kilometre for its activity type.
    Usually the activity type is by time is due to the time is reasonable for labor or machine's cost allocation. Each activity type price is independent to products, so the more time processed to a product, the more cost should be charged to the product. And the time is easy for collection both for plan or actual.

  • Please advise price per seat in Creative Cloud Team.

    Thank you

    http://www.adobe.com/products/creativecloud/faq.html#ccm-teams
    "How much does Creative Cloud for teams cost?
    Creative Cloud for teams is US$69.99 per user per month (with an annual commitment). Existing CS3 and later customers who have previously purchased Creative Suite software through a volume licensing program are eligible to buy at the special price of US$49.99 per user per month."

  • Difference in Price per unit and Standard cost between COPA and PCA

    Hi
    I did a comparison between COPA and PCA for January. For few products,there is a difference in the Standard cost and PPU between the two reports(product wise). What might possibly be the reason for the difference. And how to analyze the root cause of this difference.
    Thanks
    Jaswanth

    Hi
    By PPU - Do you mean PUP i.e. Per Unit Price of Material Ledger??
    If yes, then you are not comparing apple to apple.. Std cost is bound to be diff than actual cost
    br, Ajay M

  • How to store lead-time and price per MPN for a single Item

    We are probably one of the only CEM's that use Oracle Applications in a one-to-one MPN-IPN (Oracle Item Part Number) relationship. We do not currently store multiple Manufacturers under a single Item. Rather, we use the Customer Item Cross Reference to rank the customer's AML, with each IPN tied to a single MPN.
    We are looking at moving into a one-to-many "world" in Oracle but are not sure how we can handle different pricing, lead-time, preference, status (prototype, production, obsolete, do not use), etc. for each Manufacturer's Part Number under a single Item. How are other CM's handling this???

    Hi Greg,
    Unfortunately, DIAdem Datafinder doesn't really support much in the way
    of Date/Time search outside of the File Level Creation Date property.
    In order to make the creation time of the Channels searchable you would
    want to create some custom properties (or use the existing RegisterInt1
    - RegisterInt6) to define your own searchable properties.
    For example, since you know that you have one TDM file per day, you can
    start your search by find the desired day on the File Property Level,
    searching the "Creation Date" property. When you store your TDM
    properties, you could store the hour creation as an integer (and
    thereby searchable) in one of the RegisterInt properties of the
    channel, or create your own custom "Hour" channel. You could similarly
    save the minute and second property in their own custom properties.
    Then, since you're saving integer values, you can then search those
    values to determine the time that the channel was created.
    I realize that this isn't ideal or elegant, as in total it requires 4
    searches (date, hour, minute, second). But that is the most
    straightforward way of searching your channels by creation date/time.
    Hope this helps Greg, let me know if you have any other questions.
    Dan Weiland

Maybe you are looking for

  • Problem in Extended Idoc

    Hi All, I have Extended ORDERS05 for adding custom fields for inbound process, Steps i have fallowed to create Extend Idoc: 1,Created new segment with all Z-fields and released, 2,Created Extension Idoc with reference standard Idoc ORDER05, and added

  • How to make layers transparant so that they shine through the layers above it?

    Well, the topic question kind of nails it; i'm wondering if it is possible to get layers which are 'lower' situated to shine through 'higher' situated layers. I'm no good at photoshop and i find fireworks a much easier program to use to edit my image

  • Suggest a best seller of MacBooks for my friend

    All, I have just convinced my friend to buy a white MacBook instead of the HP laptop she was planning to buy. Now, can any of you suggest a good online reseller who would give a good deal on the MacBook (with maybe free RAM, etc)? Shipping needs to b

  • Impossibilité à ouvrir fichiers pdf sur ipad

    J'ai installé Acrobat reader sur un ipad Ios version 7 et je ne peux accéder aux fichiers pdf qui sont sur mon ipad. Je ne comprends pas pourquoi . Je l'ai installé aussi sur un smartphone samsung galaxy S4 et ça marche dans ce cas. Pouvez-vous m'aid

  • Rpckeyservbind failure at boottime

    Following a clean installation of Solaris 7 (11/99) full distribution, I get a white screen error message at boot time "rpcbindkeyserv failed to generate host's netname when establishing root's key".. If I try keylogin at the command line, the error