Sale Item Price Based On BP Customer Group

Hi,
We have SAP B1 2007A.
We have different customer groups like : Member, Non Member, Distributors.
I want to have a different price list for each Customer based on the customer group they belong to.
In other words, the same ITEM has a different price based on the customer group.
Any way to do that?
Mike

Mike,
This is what you can do -
1. Create a "BASIC PRICE LIST" for the item first.
2. For each customer (since the relation of Price lists has to be defined at this level not customer group), you can create a new price list but link it to the "BASIC PRICE LIST" you created in step 1.
So for ex - if CUSTOMER GRP A has to be sold at a discount of 10%, then in your customer price list definition, enter factor as 0.9 and link it to the "BASIC PRICE LIST".
Since one customer can be defined only within one group at a time, you can have the same effect of having the price list defined on customer groups. Only that, if your group pricing changes, you will have to either modify the price list, or create a new price list and link it all your customers (of a particular group) once again.
Hope this helps.
Cheers

Similar Messages

  • How to get Item Price Based on Valuation Method

    Hello All,
    I want to get the price of an item based on its Valuation method (FIFO,Moving Average) for calculation .
    Is their any Objects for getting the Item Price Based on Valuation Method or any other way around for getting the
    price.
    Thanks & Regards,
    Amit

    Hello,
    You Can receive the Moving Average price of an Item :
    MovingAveragePrice property returns the Moving average price
    AvgStdPrice property returns the standard price
    sample:
    Dim oItem As SAPbobsCOM.Items = oCompany.GetBusinessObject(BoObjectTypes.oItems)
            oItem.GetByKey("ITEMCODE")
            oItem.MovingAveragePrice
            oItem.AvgStdPrice
    Best of my known in 2007 there is no interface for FiFo prices.
    You can use OINM table to query the FiFo prices
    Regards,
    J

  • Customer open item clearing based on the customer PO no in Sales order

    Hi,
    Is it possible to clear customer open item based on teh customer PO number eneterd in the sales order BSTKD.
    Points will assigned for any useful answer.
    Thanks
    Vamsi

    Hi this i spossible and cleared.Thanks

  • Variant Pricing _ each item price based upon main item.

    Hello,
    I request your help for inputs on Variant Pricing functionality for given scenario.
    Each material will have different price based upon different brand / main item.
    For example u2013 Inbuilt-Sat Nav will be priced different in Toyota Prius & Toyota Avensis.
    Let say, we have 2 products (Toyota Prius & Toyota Avensis.) each having 10 different options/ items which are charged separately.
    Hence would like to know how we can set up the price in variant based upon Main item & sub item.
    Toyota Prius / Customer / InBuilt Sat Nav = £1200
    Toyota Avensis / Customer / InBuilt Sat Nav = £1500
    Your inputs are appreciated.
    Thanks & best regards

    If you want to maintain seprate prices for each variants go to VK11 use the following condition types -
    VA00: this condition type expresses an absolute amount.
    u2013 VA01: this condition type expresses the surcharge/discount as a percentage
    above are based on sales org, material and variants combination, so as you said you requirement is based on customer will charge different prices, so create new condition table with customer combination and add in to same access sequesnce and condtion type.
    For more details check the below link:
    http://www.sap-img.com/sap-sd/steps-for-sd-variant-configuration.htm
    regards
    Satish

  • Creating a performance report based upon a custom group

    I am trying to create a simple performance report based on a SCOM group that I created, however when I run the report the relevant data cannot be found.  When I look at the group membership I see a list of Windows servers.  I then go into a generic
    performance report, add a single chart, and line series, and select "Add group" and then search and select the SCOM group I created.  I then add % processor time for 2008 systems as my rule.  However when the report is run, no relevant
    data is found. Performance reports run fine when  selecting "Add group" and selecting the members of the group themselves.
    My suspicion is that it is trying to run the performance report based on the group object and not the members of the group. Is there anyway that I can accomplish this?  Perhaps via XML?
    Keith

    Hi,
    For your reference:
    Creating Useful Custom Reports in OpsMgr: How to create a custom performance counter report for a group of servers
    http://www.systemcentercentral.com/creating-useful-custom-reports-in-opsmgr-how-to-create-a-custom-performance-counter-report-for-a-group-of-servers/
    SCOM reports on performance counters for large groups of servers
    http://www.bictt.com/blogs/bictt.php/2010/11/28/scom-reports-on-performance-counters-for-large-groups-of-servers
    Regards,
    Yan Li
    Regards, Yan Li

  • Get Item price based on Price List

    Hi all,
    anyone has some sample of how to get the price for an item based on a specified price list, selected by the user, following the SAP's rules for assigning item price?
    I've used the GetItemPrice method, but it doesn't need a price list reference and i think it gives back the basic price of the item.
    I'm able to get the price list and the item code. How can i get the correspondig price (unit price) for that item?
    Thanks in advance.
    Nick

    Thanks Rasmus,
    i've done. I get the PriceList currently selected by the combo box and update the price list used by the BP, and after that i use the getitemprice.
    So it should work now, i get the correct prices related to the pricelist selected and i think that using the getitemprice the price that i obtain follows the sap B1 logic in assigning prices.
    After that i'm considering to set back the pricelist on the BP to the one that is originally stored in the BP.
    Thanks for your help

  • Import of item prices based on quantity ranges??

    I know how to setup different prices in B1 for an item based on quantity ranges (e.g. $10 qty <20, $5 qty 20 - 50, $1 qty > 50),  However, I have thousands of inventory items so I am wondering if anyone knows of a way to import the prices and quantity ranges.  From my research I have found no way to do this.
    Thanks

    Check this thread:
    DTW 2nd set of price break not added well

  • Getting a Sales Order Number based off a Customer PO Number

    I have a program that runs nightly that created orders based off files from another program.  I use the order numbers from the other program as the Customer PO Number in the SAP order.  This works fine.  Now I'm trying to write a report where the user can put in that PO Number (the order number from the other program) and get the order details.  Currently I'm doing a select on VBAK, but it goes really slow.  It takes about 3-5mins a search.  Are there any other tables or ways you all can think of to speed this up?
    Thanks,
    Curtis
    Moderator message - Moved to the correct forum
    Edited by: Rob Burbank on Oct 21, 2009 3:41 PM

    VBAK is the header table, so is best possibility...
    but the field you are using for select is a nonkey field...
    the select is slow when a where clause exists with a nonkey field..
    so either
    create an secondary index on that field
    or
    donot use any nonkey field in the where clause at all, though this fetches more records but works much faster than passing a nonkey element. after getting the values into an internal table , use 'delete itab where field NE ponum. '
    this wil work much faster

  • Sales item price condition pricing date from contract

    Hi SAP Gurus,
    I have requirement as following.
    When we create a sales order if any contract is available it should be populated in a diaglog box, and when user select a one , we keep this as a z-field in the sales order header level, so far fine.
      And the requirement includes the pricing date for one of pricing condition should be the first delivery date(schedulelinedate).
      We have the condition records with the pricing date as document date, we cannt keep commited delivery date as pricingdate(komv-kdatu).
       So i need a solution, thru i can modify the KOMV-KDATU
    for the condition type,with the first schedule line date.
       could anybody knows how to modify the KOMV structure values?????
      The quick answer will be highly apreciated?
    Thanks & Regards,
    Praveen

    Were you able to resolve. I'm running into the same problem

  • Undesiarable Delivery split based on customer group

    Hi Gurus,
    This is very urgent,
    One of my business requirement is to avoid splitting of Delivery when the reference sales order contains line items that belong to different customer group.
    I have a sales order with three line items. Two of which belong to one customer group and one belong to another customer group. When delivery is created it gets split into two based on the customer group. But I dont want splitting based on customer group.
    Is there any SRO settings or enhancement or SAP note etc available for this purpose.
    Helpful answers will be rewarded.
    Thanks in advance
    Ramachandran Babu

    This is indeed the routine I was referring to. This ZUKRL field is created for each order and only orders with exactly the same content in this field will be or can be combined into one delivery.
    However, I don't see customer group here (only distribution channel and division), so this will not be the cause of your problem.
    Regards,
    John.

  • To release the sales order credit block by Customer Group

    Hi,
    1. I want to release the sales order credit block based on the Customer Group.
    Normally we release the credit block using the t.code VKM3.
    2. When i am maintaining the credit using the FD32, under the status screen of Credit control area Tab, the field "Credit Horizon Date", when i am creating the credit limit on 17/05/08, the system will take this field by default ie 16/07/08. I have maintained as 12 months in horizon ie OVA8.
    If any one could let me know, how the system is taking this date.
    Regards
    Ravishankar M

    Hi Ravi
    Sap default horizon time is 2 month,thats why systym is taking  two months time,so if you want to change this as 12 month you can go to
    OMO1 and select S66 then change it as month you want.
    Reward if it helps you
    thanks
    Utpal

  • Assign price list based on value in Group field

    Hi,
    Is there a simple way to make the default price list for a customer based on the customer group value when creating/update a BP master data?
    i.e..When I create a new Business Partner, I choose group = wholesaler. I want the price list (under payment terms tab) to default automatically to the 'wholesaler' price list.
    Purpose of this is so that the new business partner gets the correct pricing as per what i have set up under price lists/volume discounts etc...
    thanks

    Dear Maeve Cahillane,
    As per your expanation you want to assing the Price list to payment terms.
    if you 10 customer groups and you want to assing the your payment terms to 4 of them so you cant do this for that you need to creat 4 payment terms base on customer group.
    The best and simple way you creat the your price list base on customer group, for that you may be use factor fuction.
    by way of FMS you can refresh Customer Master> payment terms Tab > Price List.
    my it help you.
    Regards
    MANGESH PAGDAHRE.

  • Get the sales order number based on customer number

    HI all,
    how can i get the sales order numbers based on the customer number?
    plz tell me the table names.
    thanks,
    Srini

    hiiiii..
    go to database table VBAK
    where you can find customer id and sales order
    use a select statement in your report program
    and key as kunnr ...
    i hope it does ...the job

  • Customer Group wise credit limit

    Dear Gurus,
    Please inform the process of maintaining credit limit based on customer group. In the customer master we have customer group  feild in sales data used for grouping based on industry type and in general data control data we have customer group which can be used as well, can any one inform the difference between these two in the credit management usage.
    Thanks
    Srinivas

    Hi,
               I am not sure about maintaining Credit Limit based on a customer Group.The mere purpose of the customer Group is to Identify a particular group of customers (for example, wholesale or
    retail) for the purpose of pricing or generating statistics. Where as  An industry is a distinct group of companies with the same basic  business activity. The industry key is used in selecting data for
    evaluations (for example, a vendor master data list). You can specify  industries such as trade, banking, service, manufacturing, health care,  public service, media and so on. Credit Management will be based on the following Criteria.
    credit Group assigned to the sales document type
    Risk category
    Customer Credit Limit.
    Kindly please let me know If you need any more Information.
    Regards
    Ram Pedarla

  • Modules for recommending new catalog item price

    Hi,
    we have catalog item price history, we have customer purchase history, which module(s) can/should we use to price a new product?
    Thanks
    hyang

    Hi, hyang,
    I think you might want to think about a metric you want to optimize, such as the monthly/weekly revenue of this new product, or number of items sold per month/week, while taking the price as an important factor. Then, from the historical sale history, you
    can train a model and see how price is impacting the metric. The model might give you some insight of the relationship between the price and the metric. 
    Alternatively, if you do want to directly determine the price, you can build a regression model, where the target is the price, the variables might include features of products, how long this product has been on market, the demand of this product, whether
    it is seasonal, holiday related product, etc. 
    Hope at least it can give you some hint at least.
    Thanks.
    Hang

Maybe you are looking for

  • Can I assign the exchange rate data to consignment when I use MRKO

    We with the selling on consignment supplier are the foreign currency transactions The exchange rate was changed between the consignment withdrawal in inventory management and the posting of the consignment invoice. Then the transfer posting occur bet

  • How do I show multipile top limits in a graph?

    For my EMC-testing app I need to show two different type of limits (A&B) in a Graph, together with the input scope-signal. When the B (lower) top limit is an array with the peak(s) is outputted. Same for A limit. I have got one limit going but can't

  • Itunes and corrupted metadata

    I have a BIG problem.  I don't know how it happened, but my itunes librairy is all messed up.  Even the songs in the folders are messed up.  I have iTunes match and now even it is messed up. Is there a way to revert the itunes match "match"?  Is ther

  • IS AUTO training material

    IS anyone aware of any training material / book on IS-Auto? I am looking at exercises with solutions for iPPE, MMP, RPM etc

  • Blog comments not displaying in 09

    Comments to a blog page appear in iWeb, but do not publish. Can anyone help? Thanks