Rebate Processing for Customer group

Hello Gurus,
I need to define a material rebate group agreement for a particular customer group ( abt 6000 Customers). How do i do it?
While creating a rebate agreement we have to mention the payer. In my case the payer is different for each customer.
Please let me know.
Warm Regards
Prashant Joshi.

Hi Prashant,
...During rebate settlement credit note, the system automatically defaults the payer from the rebate agreement.
Same is the case with customer hierarchy rebates.
Yes, this is default functionality when using standard rebates agreements.
That makes sense when all the rebate due is paid to a single customer (might be a purchasing central or a specific pay-to party).
In my case the payer is different for each customer.
OK, what you want to do is to send a different credit note to each customer.
You have 2 solutions:
- Define a different rebate agreement per payer (standard rebate agreements)
- Use only one extended rebate agreement to get the functionality you need.
Extended rebate agreements are special because they allow you to customize how the credit note is "splitted" between different partners and to which partner it is paid.
The benefit of an extended rebate agreement is that only one rebate agreement is maintained. Also scales take in account the whole sales volume!

Similar Messages

  • How to activate Extended Rebate Processing in Customizing for billing?

    sap gurus:
    How to activate Extended Rebate Processing in Customizing for billing?

    SAP Knowledge Base Article
    1520390 - Activation of Enhanced Rebate Functionalities - IMG Customizing Transactions - SAP Menu
    Version 1 Validity: 19.10.2010 - active
    Language English
    Symptom
    Enhanced Rebate Functionality is not available and should be activated
    In the customizing IMG (Transaction SPRO) the node for Extended Rebate with the relevant customizing transactions are not visible
    The SAP Menu does not include the transactions for Extended Rebate
    Environment Enterprise Function EA-ISE must be available in the system (visible in transaction SFW5).
    Reproducing the Issue
    Call transaction SPRO
    Node Extended Rebate Processing is missing:
    IMG
    Sales and Distribution
       > Billing
            > Rebate Processing
                 > .................
    Resolution To activate the Extended Rebate Processing and make the node and customizing transactions visible proceed in the following way:
    Call transaction SFW5   
    In the folder ENTERPRISE_EXTENSIONS choose the function EA-ISE
    Activate this enterprise extension
    Thereafter the menu path in SPRO for Extended Rebate Processing will be visible:
    IMG
    Sales and Distribution
       > Billing
            > Rebate Processing
                > Extended Rebate Processing
                            * Settings for Agreement Types
                            * Set up Variable Key for Rebate Settlement
                            * Check Variable Key for Rebate Settlement
                            * Activate Extended Rebate Processing
                            * Simulate And Execute Reorganization of Statistical Data
    Furthermore the users will have the relevant transactions available in the SAP Menu:
    SAP menu
      > Logistics
         > Sales and Distribution
              > Billing
                   > Rebate 
                        > Extended Rebate Processing
                             * RBT_ENH_VB7 - Extended Rebate Settlement
                             * RBT_ENH_ACT - Update of Indirect Sales
                             * RBT_ENH_PLAN - Update of Indirect Planning Data
    For futher infomation on the extended rebate process please refer to the following links of SAP help portal:                     
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/5a/5b9b3c0f4da40ee10000000a11405a/frameset.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/79/a5ee3c1f63a518e10000000a11405a/frameset.htm
    Keywords
    Extended rebate agreement, extended rebate processing, erweiterte Bonusabwicklung, Menü, Pfad nicht vorhanden, aktivieren, erweiterter Bonus, Bonusabsprache
    Header Data
    Released On
    21.10.2010 08:01:20
    Release Status
    Released to Customer
    Component
    SD-BIL-RB-ENH Enhanced Rebates
    Other Components
       SD-BIL-RB Rebate Processing
    Priority
    Normal
    Category
    How To
    Product    
    Product
    Product Version
    SAP ERP Central Component
    All versions
    SAP R/3 Enterprise 4.7
    All versions

  • Extended rebate processing for INDIRECT sales

    Hello All,
    Does anyone of you configured extended rebate processing for indirect sales?
    If yes i would need some help on steps which needs to be carried out. I particulary have rroubles with generating confirmation of sales.
    Please advise
    Thanks in advance
    Mike

    You can find the building blocks at http://help.sap.com/bp_cp1600/CP_US/HTML/bb_scen_list.htm
    If you want to activate the functionality, then you can refer OSS 1520390 - Activation of Enhanced Rebate Functionalities - IMG Customizing Transactions - SAP Menu
    Regards,

  • Extended rebate processing for INDIRECT sales (Consumer products solution)

    Hello All,
    Does anyone of you configured extended rebate processing for indirect sales?
    If yes i would need some help on steps which needs to be carried out.
    Please advise
    Thanks in  advance
    Mike

    You can find the building blocks at http://help.sap.com/bp_cp1600/CP_US/HTML/bb_scen_list.htm
    If you want to activate the functionality, then you can refer OSS 1520390 - Activation of Enhanced Rebate Functionalities - IMG Customizing Transactions - SAP Menu
    Regards,

  • How to Create DI Discount Group for Customer Group?

    Hi All,
    i'm trying to create DiscountGroups for Type Customer Group in developtmnt side in sap b1. i already succed to create  Discount Group for Type Specific BP as you can see in the code i wroe below:
    di.BusinessPartners MyBP= GetBusinessObject (BoObjectTypes.oBusinessPartners) as di.BusinessPartners;
    MyBp.DiscountGroup.DiscountPercentage=20;
    but i don't succed to find the di object that give me the option to create DiscountGroup for Customer Group ( not for specific BP).
    i will very appriciate to get any help with it...
    Regards,
    Peer Shoval

    hello, maybe you could try with DI Server, if your installation allows
    that.
    try experimenting with
    -> EnhancedDiscountGroupsService Object
    SAPbobsCOM.EnhancedDiscountGroupsService dg_service = null;
                    SAPbobsCOM.EnhancedDiscountGroup dg = null;
                    SAPbobsCOM.EnhancedDiscountGroupCollectionParams collDGParams = null;
                    dg_service = (SAPbobsCOM.EnhancedDiscountGroupsService)((SAPbobsCOM.Company)Application.SBO_Application.Company.GetDICompany())
                                    .GetCompanyService().GetBusinessService(SAPbobsCOM.ServiceTypes.EnhancedDiscountGroupsService);
                    collDGParams = dg_service.GetList();
                    dg = (SAPbobsCOM.EnhancedDiscountGroup)dg_service.GetDataInterface(SAPbobsCOM.EnhancedDiscountGroupsServiceDataInterfaces.edgsEnhancedDiscountGroup);
                    dg.Type  = SAPbobsCOM.DiscountGroupTypeEnum.dgt_AllBPs;
                    dg.ValidFrom = DateTime.Now;
                    dg.ValidTo = DateTime.MaxValue;
                    dg.ObjectCode = "dontknow";
                    dg.DiscountRelations = SAPbobsCOM.DiscountGroupRelationsEnum.dgrAverageDiscount;
                    //dg.DiscountGroupLineCollection.Add() //etc
                    SAPbobsCOM.EnhancedDiscountGroupParams dg_param = dg_service.Add(dg);
                    log.DebugFormat("Added discount group  {0} - {1} - {2}", dg_param.AbsEntry, dg_param.ObjectCode , dg_param.Type);

  • AFE process for Customer and Investment Project

    Hi All,
    My client want to have AFE process for Customer as well as Investment Project Creation.
    Once, AFE is approved a project should be created along with project plan valueswith approved values in AFE request. Also, in case any supplement need to project also should have a similar AFE approval process. For this client, there is No IM module implemented as such.
    Want to know how we can map this scenario in SAP.
    Thanks in advance.
    Regards,
    Atul R. Rajmane

    IYou can make use of simulations...create simulation version before creating operative project...you may create more than one simulation for various cost plan scenarios..you can plan revenue in simulation also for customer project...whoever gives approval for project expenditure.... they may compare the cost of the simualtion version and approval can be transfer of simulation version to operative version....Also, you can use this for supplements...create simualtion during course of project...then add actvitiy, material..etc., do the cost analysis...and provide the supplement budget accordingly to the new planned cost.

  • Rebate Activation for Customer

    Hi Gurus,
    For Rebate functionality as per standard it is required to activate the payer master record of the Customer for Rebate functionality.
    In our case Customer X has a payer as Y. Is it sufficient if i activate Y for rebate functionality Or it is required to activate both X and Y masters for rebate functionality.
    Regards,
    Babs

    Hi
    Rebate process in logistics takes a shape only after billing or from the billing document
    ( Even the sales order PP has rebate condition types But they have a requirement routine that calculates the same and only from billing document  say requirement routine 24 and 25)
    Payer is the header and the controller of the billing document
    Hence it must be actvated at the CMR of the payers master records (no need at SP level) And activating at both master records might reflect on system perforamance According to me not reqd to be activated at SP level
    You mean to see always the rebates are created for the payer master records and not with the customer master records.
    Yes with payer master only
    Regards
    Raja

  • Copa derivation rule for customer group

    Hi All,
    I am currently facing an issue with Derivation rule and hope someone can help me on resolving  this.I have created a COPA derivation rule which has field as
    Source Field
    company code
    Plant
    Target field
    Distribution channel
    Condition
    customer group 3 = 18.
    so ideally with this conbination the distribtion channel gets updated
    for the sales order.
    However the issue we are facing is that the rule is working for only 1st line item and not for the others. I have also kept setting as" overwrite values only if new values found"
    e.g if we see the accounting doc of billing then
    line item 1 customer: x
    line item 2 SaLes GL: rule works fine and dist channel is updated.
    line item 3 discount GL: rule does not work.
    Have checked the derivation rule and it looks correct.
    Can you kindly suggest solution to this.

    Hi Ajay,
    Thank you so much for your reply.Please note that the GL is a cost element but the category in system is 1 and not 12.However I would like understand as to why is this happening.why does the system picks up derviation rule for a Gross sales GL and not for Discount GL(Cost element).
    The distribution channel  gets updated for sales GL when i check the prof segment of the line item, however this is not the case with doscount GL.
    I would like to understnad the implication before changing cost element category from 1 to 12 as it runs across system.
    Kindly provide some more explaination.
    thanks in advance.

  • Screen layout for Customer group

    Is there any way we can define a screen layout for a particular customer group(having particular fields mandatory and remaining optional).
    Any help will be appreciated.
    Thanks,
    ALAM.

    It is through the transaction code OBD2
    The path is
    SPRO-FINANCIAL ACCOUNTING-ACCOUNTS RECEIVABLE AND ACCOUNTS PAYABLE-CUSTOMER ACCOUNTS-MASTERDATA-PREPARATIONS FOR CREATING MASTERDATA-DEFINE ACCOUNT GROUPS WITH SCREEN LAYOUT
    Hope this helps.
    Pls reward if this helps.

  • Free fright for customer group?

    how to maintain the free fright for a set of customers or a customer group.? plz help me with settings and procedure.
    Regards,

    1) Copy KF00 into a new cond type..ZF00. tcode: V/06
    2) Copy the access sequence of KF00 into another z-access sequence, lets say ZF00, tcode V/07
    3) Introduce/create a new cond table with incoterms+ customer group--lets say 900, V/04.
    4) Attach 900 to ZF00 and ZF00 to the cond type in V/06
    maintain cond records for the incoterms and customer group.
    Regards,
    Raghu.

  • X axis labels for custom group names

    I have a report with one group.  That group has a customized group name field, and the group name is a formula.  When I display the group name in the data section of the report, it displays according to the formula.
    I now need to chart two pieces of data - Primary # of Sales and Secondary # of Sales - for that group so I can compare the two # of sales.  If I make a chart for the Primary # of Sales, and go to the group tab in the Chart Expert and specify "on change of Group By Value (my grouping), show the sum of the Primary # of Sales", the chart displays as desired, and I see the custom group name (formula) as the X axis label.
    But if I go to the Advanced Layout on the Data tab of the Chart expert and specify the Sum of Primary # of Sales AND Sum of Secondary # of Sales in the Show Values section, the X axis label no longer shows the custom group name; it shows the group value.
    Any ideas for how to get it to show the custom group name when I chart two fields of data?
    Thanks in advance!

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Automating the Patch Process for a group of servers.

    Hey Team,
    We have SCCM & SCOM 2012 is place.
    We are looking for automating the server patching only for a group of serves  and also to ensure patch kickoff times between scheduled maintenance period for ex. between 04:00 AM to 06:00
    AM on Mondays.
    Process required:
    1. The server should enter into Maintenance Mode by 04:00 AM
    2. Stop a particular service (production impact service).
    3. Patch all the required updates and reboot the servers once all patches are updated.
    4. The server should come out of maintenance mode at 06:00 AM
    please let me know how best we can fulfilll this requirement.
    -Vrkuamr01 
    RajKumar

    I did a presentation on that back in 2012 -
    http://vimeo.com/nicconf/review/35066199/f133f8e788 It's using ConfigMgr and SCORCH to make it Work.
    Kent Agerlund | My blogs: blog.coretech.dk/kea and
    SCUG.dk/ | Twitter:
    @Agerlund | Linkedin: Kent Agerlund |
    Mastering ConfigMgr 2012 The Fundamentals

  • Rebate Processing for payer

    Hello Gurus,
    Can any one elaborate that how to see whether rebate has been processed for payer.?
    Regards,
    Savi

    Hi Savi,
    Your requirment is not clear but if you want to see the rebates which are already released then Go toT-code VB(8
    Or sales summary then check T-code VC/2
    Regards,
    MT

  • BAPI for customer group wise sales

    Hello Experts,
    I m developing one report,in which i want customer group wise sales , collection & outstanding
    as on date.
    Is there any BAPI which helps.
    Please suggest.
    Ravi

    hi Ravi,
    try SD_CUSTOMER_MAINTAIN_ALL
    hope this helps
    regards
    Aakash Banga

  • Whats the Middleware object for customer group code?

    Hi Gurus,
    Whats the name of middle ware object to transfer customer group codes from ECC to CRM?
    Vinay

    To Know what all the object does you can see it in R3AC3. Go to Tcode R3AC3, and  slect the object DNL_CUST_PRICE. If you go into the details,You will have a tab called Tables/Structures. In that you can see what all the tables are selected. By this you can determine what all data comes to CRM from R/3. Those tables are R3 tables. Same applies other obects.

Maybe you are looking for

  • Retrieving values entered in a JTable

    Hi! I have made a sudoku solver as many others, but in the purpose of learning recursion, and now I am implementing GUI to that program. I have bean strugling to set up a table that shows the sudokutable, and most of all how to recieve the values ent

  • 7.0 Create forms based on Access data -David O'Hanlon are you there?

    Hi - Using a pdf created using LiveCycle 7.0<br /><br />I'm trying to create xFDFs using data from an Access database.  The xFDF should then be e-mailed to users who fill out the forms and return xml files by e-mail.  I then parse out the xml in to S

  • Migrating from crystal report 8.5 to 10.0 giving error 01S00:error

    migrating from crystal report 8.5 to 10.0 giving error I am working in migrating my cr application to 10th ver from the existing 8.5 where we have to explicitly make a query in query builder and then attach it. I was using dsn in ms odbc for oracle d

  • HDMI vs VGA cable

    Hi, I just bought a mini Display port - DVI adapter + HDMI-DVI cable, but i notice some issues. I think the quality of image on my Full HD tv is worse than when i connect the MBP to the tv with the VGA cable. I tried to draw a single pixel on Photosh

  • Finder not refreshing file or folder names, in NFS mounts.

    We are experiencing the an issues with NFS mounts, in both 10.7 and 10.8 machines.  After mounting NFS shares, the file/folder names do not update in other MAC finder windows until it is unmounted and remounted on the MACs.  This DOES NOT happen in o