Maximum discount rate for the customer group

Hi
First;
I have a agreement Discount Rates for customer based on Customer and Product hierarchy.
Customer ProdHier   Discount Rate
1122        4757         %20
1234        4757         %20
4455        6756         %10
It can be done the auotomatically. I know.
Second;
I have a maximum allowable discount rate for customer group based on Customer Group and Product hierarchy.
Customer Group   ProdHier  Max.Discount Rate
OEM                   4757        %25
Dealer                 4757        %30
1122' s customer group is OEM.
1234' s cusromer group is Dealer.
%20 will be find for 1122 on first step. It is ok.
But I want, user can not give up to %25 on manually pricing.
Because this customer in OEM Customer group and this customer group's max.discount rate is %25.
What can I do?
Best Regards,
Gulay Celik

I had use the sap standard customer hierarchy to solve it. thanks.

Similar Messages

  • How to format data for a custom group

    Hi all
    I have a pivot table with Actual and Budget as columns and some accounts in the rows. Since I'm using the account hierarchical column, I created custom groups for the accounts using the Selection steps pane. For example, I created a new group called Profit to combine 3 different Profit accounts and display one Profit line.
    Now I want to format the data for the Profit group. I right-click on the Profit group, choose to edit the group and click on the Format button on the bottom left corner. I add some formatting, e.g. borders. When I now view the pivot table, borders have been applied to the label of the group - so the word Profit is now bordered. However, the values in the Actual and Budget columns do not have a border. Don't know what I'm missing, but I want both the group label and the values to be formatted the same way.
    How can I apply formatting to the data/values for the custom group?

    Yeah tried that already, it formats the entire column whereas I need just the values for the Profit row to be formatted. Seems it is a limitation only when using custom groups?

  • What are the license conditions for the customer ?

    What is the license agreement for the customer to use Beehiveonline ? Is it similar as the OUM Customer model copied below? thanks Francis
    OUM Customer Program: The OUM Customer Program allows customers to obtain copies of the method for their internal use by contracting with Oracle for a services engagement of two weeks or longer. Customers who have a signed contract with Oracle and meet the engagement qualification criteria as published on Customer tab of the OUM Website, are permitted to download the current release of OUM for their perpetual use. They may obtain subsequent releases published during a renewable, three-year access period.

    Hi,
    We do not have a license requirement for BeehiveOnline as this is a service provided by oracle for Oracle customers, partners etc. to allow them to work more efficiently with Oracle. It is not a system that the customer can control as the groups are maintained by the Oracle,contact.
    We rely on the normal terms and conditions that all users sign up to when they create an oracle.com website account.
    So in short - it is a free-to-use service licensed under the same agreement as the normal oracle.com websites acount.
    Phil

  • ABAP program has to pick up the valid pricelist for the customer

    Hi all!
    does anyone know how to pick up valid pricelist for the customer?
    I mean I need to take the valid pricelist for customer... I have this information:
    <b>KNA1-KUNNR</b>      Customer Number 1
    <b>T189-PLTYP</b>      Price list type
    <b>MARA-MATNR</b>      Material nr
    <b>BSEG-BELNR</b>      Invoice nr
    <b>KONH-KNUMH</b>      Number of suplier
    and now I need to take pricelist in order to use this pricelist for preparing invoice to customer...
    As I know rates for materials are stored in KONP... but how to connect this yable with pricelist...?
    Award points are waiting for you!
    BR, M.

    Hi Seshu!
    maybe you mean A006? Because A006 contains field PLTYP while A004 and A005 does not. But anyway thanks for your input, it is very usefull.
    BR, M.

  • How set maximum of characters for the columns

    Hello I use a JTable and I want to set maximum of characters for the columns.
    For example column 1 max 10 characters, column 2 max 20 characters, etc..
    How can I do this?

    The principle is as follows: a table uses certain input components for editing a cell value, e.g. a JCheckBox for Boolean-type values or a JTextField for textual/numerical values. By default, a JTextField doesn't have any size limit, so you can enter as many chars as you want. In order to change this behaviour, you'll have to
    1.) create a JTextField that does have a size limit and
    2.) set a CellEditor on the JTable which uses this manipulated JTextField.
    An easy way for 1.) is to create a custom Document (the internal data representation for text components, the M-part of the MVC -- see javax.swing.text.Document) that doesn't accept any text beyond a given limit, e.g.:
    public class LimitedDocument extends PlainDocument {
      private int max = 0;
      public LimitedDocument(int max) {
        this.max = max;
      public void insertString(int offset, String str, AttributeSet a) throws BadLocationException {
        // too long for the limit; get current contents, insert, and cut off trailing chars
        if ((getLength() + str.length()) > max) {
          StringBuffer buf = new StringBuffer(getText(0,getLength()));
          buf.insert(offset,str);
          remove(0,len); // remove current text contents
          super.insert(0,buf.toString().substring(0,max),a); // insert whole text
        // no problem, will fit
        else {
          super.insertString(offset,str,a);
    }Then, in order to set the cell editor -- for example for the first column --, you can do as follows:
    myTable.getColumnModel().getColumn(0).setCellEditor(new DefaultCellEditor(new JTextField(new LimitedDocument(5),"",5)));This will create a new DefaultCellEditor (see javax.swing.table) and initialize it with a given text field which will be responsible for any edition in this column. As the text field itself is created using a limit of 5, it should accept no text insertion beyond 5 chars.

  • Credit limit for the customer hierarchy

    Hi All,
    Our client needs a report to show the total Credit Limit assigned to Global customer as shown below. It will be the summarization of individual credit limits of all the customers linked to this Global Customer. It will be a BI report.
    Can someboby please tell me as to how to create the credit limits for the customer hierarchy? Also, hoe to fetch these valus in the report?
    Customer No     Customer Name      Total Credit Limit     Individual Credit Limit
    1000000             Carrefour                      970,000,000.00      
    1000001             Carrefour France                             300,000,000.00
    1000002             Carrefour Spain                                             200,000,000.00
    1000003             Carrefour Belgium                             90,000,000.00
    1000004             Carrefour Greece                             85,000,000.00
    1000005             Carrefour Italy                                             200,000,000.00
    1000006             Carrefour Turkey                                             50,000,000.00
    1000007             Carrefour Poland                             45,000,000.00
    2000000             Metro Group                      290,000,000.00      
    2000001             Metro Austria                                             25,000,000.00
    2000002             Metro France                                             53,000,000.00
    2000003             Metro Spain                                             48,000,000.00
    2000004             Metro Germany                                             63,000,000.00
    2000005             Metro Switzerland                             15,000,000.00
    2000006             Metro UK                                             60,000,000.00
    2000007             Metro Portugal                                             26,000,000.00
    Regards,
    Raghav

    Hi,
    Credit limit is maintained on payer level and you are not able in standard to split it between sold-to or assign N sold-to to one global limit. You have to extend the credit control functionality to check the credit limit additionally for the global limit customer. Unfortunatelly you cannot implement it without development.
    Regards,
    Marcin

  • Adding new surcharge for few customer group

    Hi guys ,
    I want to add a new surcharge in our pricing procedure.
    This should be applicable to all customer except some special customer.
    I want to know how can I handle this with condition technique?
    OR do I need to use condition exclusion ?
    Please explain
    Thanks
    Dona

    Hi Dona,
      You can either make this customer group as a part of the key fields of the comdition table for this surcharge. So during runtime, based on the customer group value passed to the PricingEngine of IPC correct record will be determined.
      Otherwise you can achieve this also via requirement formula assigned to this surcharge condition in your pricing procedure.
    While implementing the formula you can check the value of the customer group being passed and based on that you can make the steps relevant or not during runtime.
    Regards,
    Prajesh

  • Maximum bit rate for video

    I am using Handbrake to convert some video for use on my iPod. Their FAQ alleges that with the advent of iTunes v7.4 the iPod can handle an average bit rate of 2500 kbps. However, I find that the video intermittently pauses briefly on playback if I encode at that rate. Does anyone know the maximum bit rate that the iPod can handle?

    Changes to iTunes will have no effect on what the iPod can handle. Different software and hardware.
    Which iPod are we talking about? The original 5th generation iPod or the second versions (aka "5.5" gen)?
    http://support.apple.com/specs/ipod/iPodwith_video_30_60GB.html
    says...
    H.264 video: up to 768 Kbps, 320 x 240, 30 frames per sec., Baseline Profile up to Level 1.3 with AAC-LC up to 160 Kbps, 48 Khz, stereo audio in .m4v, .mp4 and .mov file formats
    MPEG-4 video: up to 2.5 mbps, 480 x 480, 30 frames per sec., Simple Profile with AAC-LC up to 160 Kbps, 48 Khz, stereo audio in .m4v, .mp4 and .mov file formats
    http://support.apple.com/specs/ipod/iPodFifth_Generation_Late2006.html
    says...
    H.264 video, up to 1.5 Mbps, 640 by 480 pixels, 30 frames per sec., Baseline Low-Complexity Profile with AAC-LC audio up to 160 Kbps, 48 kHz, stereo audio in .m4v, .mp4, and .mov file formats; H.264 video, up to 768 Kbps, 320 by 240 pixels, 30 frames per sec., Baseline Profile up to Level 1.3 with AAC-LC audio up to 160 Kbps, 48 kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video, up to 2.5 Mbps, 640 by 480 pixels, 30 frames per sec., Simple Profile with AAC-LC audio up to 160 Kbps, 48 kHz, stereo audio in .m4v, .mp4, and .mov file formats
    Patrick

  • List view GroupBy pagination does not work for the second group?

    Hi,
    I have defined view for list with grouping by 2 fields. I noticed the paging works only for the first grouping, for the second field there are always all items on the page. How could I configure it to provide paging also for the second level of grouping?
    If it is possible to have paging for only one group level, I would like to change it for the second 2 (as there are only like 15 groups for the first level but there could be hundreds for the second one).
    Thanks!
    eXavier

    Here is the query:
    <View Name="{3BEA03A1-FBFF-4364-AA0F-AD4E48093479}" MobileView="TRUE" Type="HTML" DisplayName="aaaa" Url="/Lists/X/aaa.aspx" Level="1" BaseViewID="5" ContentTypeID="0x" ImageUrl="/_layouts/15/images/generic.png?rev=23">
     <Query>
      <GroupBy Collapse="TRUE" GroupLimit="30">
       <FieldRef Name="SC_UserName" />
       <FieldRef Name="SC_Year" Ascending="FALSE" />
      </GroupBy>
      <OrderBy>
       <FieldRef Name="SC_Date" Ascending="FALSE" />
       <FieldRef Name="SC_Date" Ascending="FALSE" />
      </OrderBy>
     </Query>
     <ViewFields>
      <FieldRef Name="ID" />
      <FieldRef Name="SC_DateX" />
      <FieldRef Name="LinkTitle" />
      <FieldRef Name="SC_Date" />
      <FieldRef Name="SC_UserName" />
      <FieldRef Name="SC_DateY" />
      <FieldRef Name="SC_Status" />
     </ViewFields>
     <RowLimit Paged="TRUE">30</RowLimit>
     <Aggregations Value="Off" />
    </View>
    eXavier

  • You want to know the amount of space the transaction log for the Customer database is using. Which T-SQL command would you use?

    You want to know the amount of space the transaction log for the Customer database is using. Which T-SQL command would you use?

    Forced me to do a little research.
    DBCC SQLPERF(logspace)
    See also
    http://stackoverflow.com/questions/198343/how-can-i-get-the-size-of-the-transaction-log-in-sql-2005-programmatically
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • I CAN SEE ALL SHIP TO LOCATIONS FOR THE CUSTOMER EVEN IF I SELECT ONE BILL

    Dear,
    I CAN SEE ALL SHIP TO LOCATIONS FOR THE CUSTOMER EVEN IF I SELECT ONE BILL TO
    Steps:
    Create customer name "customer 1"
    Under this customer, I create 2 new address
    "Customer A " with tow business purpose
    1-bill to –> customer A
    2- ship to-> customer A after that I link ship to with bill to customer A , I CHECK THE PRIMARY SITE CHECK BOX
    FOR THIS SITE
    "Customer B" with tow business purpose
    1-bill to –> customer B
    2- ship to-> customer B after that I link ship to with bill to customer B
    Now when I navigate to (N) Order management ->order organizer ->new order
    I select the "customer 1" from customer field name I tab to other field bill to
    location it is coming by default as primary site customer "customer A"
    I OPEN THE LIST I SEE tow customer A AND B I SELECT 'B' AS bill to
    When I tab to the other ship to field in also I can see the tow customer " A" and "B" but in real
    setup I link the customer "B" WITH ONE SHIP TO ALSO CUSTOMER"B" WHY I CAN SEE
    ALL LOCATION FOR THE CUSTOMER EVEN IF I SELECT THE ONE BILL TO .
    WHAT THE BENIFIT FROM LINK CUSTOMER SHIP TO FIELD WITH BILL TO IF I CAN SEE ALL LISTS
    FOR CUSTOMER SITE
    Expected Behavior:
    Once I link the ship to location with bill to location I must see when create sales order only the ship to location
    link with the specific bill to already specified
    Business impact:
    This give the user entry ability to enter wrong data or give him the confusion any site I must enter
    thanks

    That is expected behavior.
    You can see the all addresses of account in the list as long as the purpose condition is satisfied. Linking is only for defaulting and not for controlling. If you do not want to see you can create a different account for the B address.
    Thanks
    Nagamohan

  • Is there a maximum program size for the AWM GUI?

    Is there a maximum program size for the AWM GUI?
    I have a program that I migrated from Oracle Exress to Oracle 9i. The program runs fine, but I get buffer errors whenever I edit it with the Analytic Workspace Manager GUI. Only my longest program has this problem.
    Has anyone seen this before? Is there a fix/workaround?
    Thank you,
    James

    This problem is solved with the 10.0.0.1.0 AWM client, which is on the 10G CD.
    James

  • Enable personalization option in masthead for the custom role

    enable personalization option in masthead for the custom role for end user without using eu_role or admin roles

    Hi,
    To do so, go to
    Content Administration->Portal Content->Content provided by SAP->End User Content->Standard Portal users->Worksets->Portal Personalization
    Copy this portal personalization workset to a folder and add it to the role which the user has. The user with this role will be able to see the personalization link in the masthead iview.
    Regards
    Srinivasan T

  • Setting required to create Business partner record in SAP GTS for the customer who transferred from the SAP ECC system

    Dear Experts,
    Can you please suggest me list of activities require to automatically  create Business partner record in SAP GTS for the customer who transferred from the SAP ECC system .
    i.e If I create the customer master record and transfer the same CMR to SAP GTS , what are the setting requires to maintain in SAP GTS sytem to automatically create the Business partner .
    Ram

    Hi Raghu,
    Below are the main settings required to enable you to transfer Customer Master Data to SAP GTS. Please note that their is a difference between, Customer Master Record and Customer Master Data in terms of data and for GTS, we transfer Customer Master Data. Hence, below are the settings required:-
    In SAP ECC system:-
    Activate the change pointers for Customer Master Data apart from enabling basic connection settings.
    Schedule a job to run at regular intervals to transfer all the customer master data for the available change pointers to the SAP GTS system
      2.  In SAP GTS system:-
    Maintain the Mapping for ECC Customers to SAP GTS Business Partners in the General settings area of the SPRO in SAP GTS system
    Ensure that the Number range is maintained for those GTS  Business Partners.
    Also, some time you may be required to maintain the organisational structure to ensure full working.
    I hope this will be helpful to you.
    Regards,
    Aman

  • " No entry in the conversion table for the syntax group" error

    Hi,
    Iu2019m getting an error in the port setup when I try to run an Access Test on the logical directory.
    Definition of path
    TFTS02\INTF\RD1\OUTB\MM\RFC WINDOWS NT missing
    Message no. SG024
    Diagnosis
    There is no entry in the conversion table for the syntax group WINDOWS NT and the logical path
    TFTS02\INTF\RD1\OUTB\MM\RFC.
    System Response
    The system cannot generate a platform-specific path.
    Procedure
    Make an entry for the syntax group WINDOWS NT and the logical Pfad
    TFTS02\INTF\RD1\OUTB\MM\RFC in the conversion table using the FILE transaction.
    Regards,
    Rajiv

    Hi
    the error is simple. The path
    TFTS02\INTF\RD1\OUTB\MM\RFC you are trying to access is not there so create the path in the FILE transaction.
    In file tcode goto NEW ENTRIES and give the path and also make sure that in AL11 the path and the filename you are trying to open exists.
    Thanks & Regards
    Jyo

Maybe you are looking for

  • XPe supported?

    I have successfully installed AIR on XPe and everything seems ok, but it isn't on the supported list under system requirements and past posts that I have seen have gone unanswered as far as whether or not Adobe supports XPe, or if it does not because

  • Need help badly. project file wont open. saying damaged file or may contain outdated elements. please help

    project file wont open. damaged file or contains outdated elements message. i believe its an XML error but i dont know how to fix it. please help

  • Attach a voice mail in a email

    Hi I have Cisco Unity Connention 1.2, and I'm setting SMTP Message Notifications, only arrived a email with notifications a new voice mail in form text, and I need to listen a new voice mail in my email inbox. How can i do to attach a voice messages

  • HP Officejet Pro 8500 Wireless Paper Jam

    The problem started with paper jam.  Followed all the online advice and cleared all paper out.  Now the paper feed will not drop down to pick up paper.  The printer does a series of clicking noises and the paper jam message re-appears.  Followed advi

  • Is there a way with the mail application on apple to recall emails

    I am having trouble finding a way to recall sent emails, I could do this on my previous PC but now I am on apple I don't seem to be able to find a way to do this, is there a way or does apple just not do this