Employee Sales commission

Hi,
I have the following requirement.I need to develop a report to calcukate the Sales Employee commission.We are implementing HR module as well.I need to capture teh employee responsible for the sale at Inquiry level which will flow till billing.
To maintain the condition record (Commission rate) i have added the the field PERNR(Personnel number) to field catalogue and maintained the condition record for each sales employee based on teh employee code.
But same value is not getting populated in the sales docuement
Is there any value to be mainatained in Access type field?i tried to change it to "C" syatem is giving error message " Access Type C is not defined for key field"
Coul;d you please help me where i have made mistake?

Hi,
you need to do some Enhancement for the updation of Condition record at the time of Sale order
go to T-Code SE38 and enter the program MV45AFZZ and user exit "USEREXIT_PRICING_PREPARE_TKOMK "
Ask your ABAPer write a code based on your requirement
Same if you want to follow in Billing level again you need to do some enhancement
Go to T-Code Se38 and enter the program RV60AFZZ and user exit "userexit_pricing_prepare_tkomk"
Ask your ABAPer write a code based on your requirement
and also any price changes
MV45AFZB - userexit_new_pricing_vbkd changing new_pricing
Regards,
Prasanna

Similar Messages

  • Commmission to Sales Employee or Commission agent

    Dear all,
    if i have to given commission to sales employee or comission agent then how is it possible.
    Also if HR is not implemented then how Sales Employee will created.
    Plz send some solution for the same.
    Thx & Regards,
    PM

    PLS REFER LINK BELOW
    <a href="http://sap.ittoolbox.com/groups/technical-functional/sap-log-sd/commission-to-sales-employee-912582">COMMISSION TO SE</a>

  • Sales Commission Pay Sheet

    I need to build a sales commission pay sheet that bases the commission rate per item on the total sales volume for the week.  We use three rate tables based on 0 to 14 sales, 15 to 24 and 25 or more.  Any ideas

    You haven't given enough detail about your situation to give you a specific example.
    Nested ifs look generally like this:
    =IF(Sales < 15, DO-A, IF(Sales < 25, DO-B, DO-C))
    Jerry

  • Alternative sales commission calculation problem

    hi sir,
    I am a junior consultant trying to solve a problem for my Senior, the question goes as follows:
    We are trying to impute sales commissions to sales rep as a discount for every sale, in which for every sale a determined amount is imputed to the sales rep as a commission.
    the problem arises when the product is returned and customer asks for a refund. Then the commission should be refunded aswell. Could you please throw some light to wether we should clear that invoice the same month or the next one as a negative pendent discount, if so, how is the negative imputation applied?
    thanks a lot in advance,
    HF

    Bobsterslc wrote:
    Here is a screenshot of a piece of what I'm working on.
    Hi Bob,
    Here's what your screenshot looks like when embedded in a post, using the HTML code that Photobucket provides (third item in the list of codes provided).
    In your original post you said:
    I have a table that calculates sales commissions for a number of people and includes an overriding commission for the sales managers. I need to cap the sales commission at a fixed percentage, say 25%, for the sales people.
    I'm not sure what you mean by "I need to cap the sales commission at a fixed percentage."
    The first question that comes to mind is "25% of what?"
    Do you mean that the commission is not to exceed 25% of Total earnings?
    If so, your formula for B5 (the first cell where commission is calculated) would be:
    =MIN(formula1,B2/3)
    Where formula1 is whatever formula is used to calculate the commission when it is less than the cap, and B2 contains the salary/wages which must constitute at least 75% of the total compensation under this interpretation.
    Do you mean the commission rate is on a sliding scale that rises with increased sales, but does not exceed 25%?
    If so, you need to specify the rules that control the rate. Does it rise in steps? Does the 'new' rate at each step apply to total sales, or only to sales above that step? Are the steps the same size for everyone, directly related to the individual goals, or set by some other criteria?
    There's not enough information available fom your table to determine a pattern. For the first three columns, person B's commission is 12% of sales, person C's is under 4% and person D's is 30% of sales.
    For a more detailed response, we'll ned a more detailed specification of the question.
    Regards,
    Barry

  • Sales commission management

    Dear all,
    I am configuring sales commission scenario as per best practice BB.
          The purpose of this activity is to import material master data via eCATT /SMB15/MM01_ALL_VIEWS_O015_J30 using direct input FILE SMB48_SD_CUSTOMER_O034_G92.TXT. This step imports the data and creates the settlement material for sales commissionsu2019 payout (material number 20040420).
    Procedure
    1.     Access the activity using one of the following navigation options:
    SAP menu Logistics ® Materials Management ® Material Master ® Material ® Create (General) ® Immediately.
    Transaction code     MM01
    2.     Detailed information about the material master mentioned can be found in the eCATT file SMB48_SD_CUSTOMER_O034_G92.TXT. To view the content of the file SMB48_SD_CUSTOMER_O034_G92.TXT, refer to the Essential Documentation, section Importing Material Master Data.
    But i am unable to find the test TXT file test data used
    for settlement material for sales commission.
    Please help for me.

    Hi,
    Sales Document Number - VBAK-VBELN
    Req Delivery Date - VBAK-VDATU
    Delivery Order Document - LIKP-VBELN
    Billing Document Number - VBRK-VBELN
    Billing Date - VBRK-FKDAT
    Regards,
    Himanshu

  • Sales Commission Project

    I am working on a sales commission project and I am cannot figure out what to do next, any help would be greatly appreciated! Here is what I have so far.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    namespace Sales_Commission
        public partial class FrmSalesCommission : Form
            public FrmSalesCommission()
                InitializeComponent();
            // calculate commission for sales agents
            private void btnCalculate_Click(object sender, EventArgs e)
                // declare variables
                string lastname;
                string firstname;
                decimal commission;
                // assign variables
                lastname = txtLastName.Text;
                firstname = txtFirstName.Text;
                commission = lblCommissionTotal.
                // if first and last name are both empty 
                if (lastname == "" && firstname == "")
                    // display the word commission
                    lblCommission.Text = "Commission";
                else
                    // display commission for + first name + last name
                    lblCommission.Text = ("Gates"); 
                // if sales is numeric check if sales is negative
                // if sales is not negative
                // calculate commission
                // display calculated commission
                // else sales is negative message user
                // else sales is not numeric message user
    Here is some more information.
    Specifications:  You are to write an application that determines the commission earned for sales agents.  You must verify that the sales amount that was entered is indeed numeric.  If it is not, display a message box with an appropriate error
    message, select the text, and allow the user to re-enter the data.  The Sales amount must be numeric and must be greater than or equal to 0. When a valid numeric sales amount has been entered, calculate and display the commission (10% commission). 
    The application should also accept the sales agent’s first name and last name.  When the calculation for the commission is calculated, also display the label “Commission for first name last name” as entered in the textboxes.
    If there is no name entered, display only the word ‘Commission’.
    If either the first or the last name is entered… display the phrase ‘Commission for ****’ using either the first or last name.
    When both the first and the last name are entered, display ‘Commission for Bill Gates’ where Bill is the first name and Gates is the last name.  ~ really any first name and last name should work!!
    Consider logical tab sequence and data alignment.
    The Clear button should clear all data (entered and calculated).  The Exit button should Exit the application.
    Set appropriate accept button and cancel button.  Set appropriate access keys.
    When a first name, last name or sales amount value is entered, clear all calculated display areas.
    Use the standard Microsoft naming conventions for all controls.
    Include appropriate comments in your code.

    Hi
    slipknotfan515,
    As far as I know, about Sales Commission Project is a basic knowledge of OOP.  You should learn by yourself.
    And there is a lot of material when you search in the internet like the following
    https://www.google.com.hk/?gws_rd=ssl#q=Simple+Sales+Commission+Calculator+(using+OOP)
    Good luck!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Sales commission handling

    I would like to know in general, how to handling the sales commission. For example, the salesman will get 5% commission for sales order A. In financial side, how to capture those commission expense. Is it add this commission in the invoice condition price? Thanks!

    Create Commission Agent in XD01 with your own Account Group starting with Z.
    Attach in the customer master of Sold to Party created in XD01 with Account Group 0001 the Commission Agent you created with your own Account Group starting with Z.
    Raise a sale order through VA01 and check the partner functions. For Sold to Party the Commission Agent should appear in the Partner Functions.
    Hence Commission Agent will be by default attached to the customers as partners. They will flow to the sale order partner levels.
    If an order is to be delivered through the dealer, then the partners will reamin in the sale order as it is. If not they will be deleted from the sale order partner functions.
    For the purpose of commission payable, we will have rebate agreements in place. Rebate Agreements work on the combination of Customer, Material and Pricing Conditions. We need to maintain 1:1 relationship and can create a rebate agreement and settle the agreememt after the end of the validity period.
    We will use the customer specific rebate condition and this will get activated in the billing document and FI accrual accounts gets updated.

  • Sales Commission Rollups

    We have a sales cube where we put in sales commission % for sales depts (all bank departments dimension) for region (where bank operates, primarily national).
    % are entered against 0 level regions.
    Problem is when users pull percentages for parent time members ( such as quarters) the percentages for months addup. So for e.g if I have entered 2% for Jan, Feb and Mar, Quarter 1 % is showing up as 6% since months roll into quarters in the time dimension. We want Quarter 1 to show a percentage that is either inputed or calculated based on formula.
    What could be the solution ?
    Edited by: EssbaseApprentice on Jul 18, 2011 11:56 PM

    @TimG: correct, I cannot change the consolidation levels to ~ for the reason you mentioned.
    What we want to see at the consolidated levels is this:
    When looking at intersections of zero level members for all dimensions: we just want to see the commissions entered.
    When looking at intersections of zero level members for a time dimension rollup such as quarter, we want to see sales commission % data as the month (this is where TIME BALANCE solution would work).
    BUT when looking at sales commission % for a consolidated region, consolidated department for a quarter, we want a formula applied. In other words, when looking at a region which involves a region or department that is NOT level 0, we want to apply a formula.
    Any ideas appreciated.

  • Sales Commission Report for All Employees

    I'm trying to make a couple smartforms that will do the following tasks (each task is a separate smartform):
    1. Display the total sales amount for ALL employees over one month in a table format
    2. Display the total sales amount and commission for ONE employee over one month
    From my understanding, the way this can be achieved is through the ICM module?  I don't believe there are any default smartforms or sapscripts that are available for this functionality.  Can you please post information or links on how I would do this.
    I am also wondering if I will have to create a function module to create this form, or if I can use a print preview after setting the output type for this type of application?

    Try transaction VA05. In that choose "Open Orders" along with other selection criteria.
    If you want the Open sales order qty in output and its not displayed, do the following.
    Sales -> System modification -> create new fields ( without condition technique) -> New fields for lists.
    You can change V05TZZMO and structure VBMTVZ from there or use SE38 / SE11.
    For both you'll need an object registration in OSS.
    Hope this helps.
    Thanks,
    Balaji

  • Sales Person and Sales Commission without HR Module

    Hi,
    Can anyone explain me the customisation and process for sales person commission.
    Mahi

    Use T code <b>VPE1</b>. and create . hiring event.. mini
    master... create sales representatives
    Sales employee without HR
    <b>For Commission </b>
    1) Establish Partner Functions for the Commissionee(s)
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PARTNER DETERMINATION ->; DEFINE PARTNER FUNCTIONS
    Transaction Code: VOPA
    2) Assign the Partner Functions to Partner Procedures
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PARTNER DETERMINATION ->; DEFINE PARTNER FUNCTIONS
    Transaction Code: VOPA
    3) Create a Partner Procedure for the Commissionees
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PARTNER DETERMINATION ->; DEFINE PARTNER FUNCTIONS
    Transaction Code: VOPA
    4) Create New Customer Account Group(s) for Commission Agents
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; LOGISTICS GENERAL ->; LOGISTICS BASIC DATA: BUSINESS PARTNERS ->; CUSTOMERS ->; CONTROL ->; DEFINE ACCOUNT GROUPS AND FIELD SELECTION FOR CUSTOMER
    Transaction Code: OVT0
    5) Assign the Partner Functions to the Customer Account Group(s)
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PARTNER DETERMINATION ->; DEFINE PARTNER FUNCTIONS ->; GOTO ->; PARTNER FUNCTIONS ->; ENVIRONMENT ->; ACCOUNT GROUP ASSIGNMENT
    Transaction Code: VOPA
    6) Assign the Partner Functions to the Partner Procedure for the Sales Document Header
    Menu Path: Tools ->; Business Engineer ->; Customizing ->; Sales and Distribution ->; Basic Functions ->; Partner Determination ->; Define Partner Functions
    Transaction Code: VOPA
    7) Assign the Partner Functions to the Partner Procedure for the Sales Document Item (OPTIONAL)
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PARTNER DETERMINATION ->; DEFINE PARTNER FUNCTIONS
    Transaction Code: VOPA
    8) Edit the Pricing Communication Structure (KOMKAZ) to Hold the New Functions (Client Independent)
    Menu Path: Menu Path: TOOLS ->; ABAP WORKBENCH ->; DEVELOPMENT ->; DICTIONARY
    Transaction Code: SE11
    9) Edit MV45AFZZ – userexit_pricing_prepare_tkomk (Client Independent)
    Menu Path: TOOLS ->; ABAP WORKBENCH ->; DEVELOPMENT ->; ABAP EDITOR
    Transaction Code: SE38
    10) Edit RV60AFZZ - userexit_pricing_prepare_tkomk (Client Independent)
    Menu Path: TOOLS ->; ABAP WORKBENCH ->; DEVELOPMENT ->; ABAP EDITOR
    Transaction Code: SE38
    11) Edit MV45AFZB - userexit_new_pricing_vbkd changing new_pricing (Client Independent)
    Menu Path: TOOLS ->; ABAP WORKBENCH ->; DEVELOPMENT ->; ABAP EDITOR
    Transaction Code: SE38
    The following code should be inserted into program MV45AFZZ to allow the system to re-execute pricing if the user makes a change to the relevant partner function (alteration, addition, deletion).
    13) Add the KOMKAZ Fields to the Pricing Field Catalog (Client Independent)
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PRICING ->; PRICING CONTROL ->; DEFINE ACCESS SEQUENCES ->; MAINTAIN ACCESS SEQUENCES
    Transaction Code: OV24
    14) Create Condition Tables (Client Independent)
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PRICING ->; PRICING CONTROL ->; DEFINE ACCESS SEQUENCES ->; MAINTAIN ACCESS SEQUENCES
    Transaction Code: V/03
    15) Create an access sequence containing the new tables (Client Independent)
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PRICING ->; PRICING CONTROL ->; DEFINE ACCESS SEQUENCES ->; MAINTAIN ACCESS SEQUENCES
    Transaction Code: V/07
    16) Create a new condition type
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PRICING ->; PRICING CONTROL ->; DEFINE CONDITION TYPES ->; MAINTAIN CONDITION TYPES
    Transaction Code: V/06
    17) Add the Condition Type to the Pricing Procedure
    Menu Path: TOOLS ->; BUSINESS ENGINEER ->; CUSTOMIZING ->; SALES AND DISTRIBUTION ->; BASIC FUNCTIONS ->; PRICING ->; PRICING CONTROL ->; DEFINE AND ASSIGN PRICING PROCEDURES ->; MAINTAIN PRICING PROCEDURES
    Transaction Code: V/08
    11) Create Commsission Report ZZCOMMISSION (Client Independent)
    Menu Path: TOOLS ->; ABAP WORKBENCH ->; DEVELOPMENT ->; ABAP EDITOR
    Transaction Code: SE38
    Message was edited by:
            SHESAGIRI.G
    Message was edited by:
            SHESAGIRI.G

  • Sales commission per KM travelled.

    Hi all,
    i have an requirement for calculating commission for sales employee based on the distance that is maintained in the route master.
    requirement is to allocate the sales employee commission based on the per kilometer the transport travelled from company to customer place. We have the field in route where we maintain the distance, can i use this field to calculate the commission per km.
    Please suggest..
    Regards,
    Aruna....

    Hi Ram,
    Thanks for the update.
    Actually the need is that company is transportation services business and pays the sales team commission on the basis of business generated.
    The commission paid to the employee is based on the distance that the truck travels says for eg, per km Rs.3 as commission, as the earning for the company is also in terms of Per Km rate.
    Each employee who brings business will be paid commission.
    Hope it clarifies...........  pls also elaborate the suggestion you gave ...........  may be that helps........
    thanks n Regards,
    Aruna....

  • Query help for sales employee sales

    Hi....
    How can we have a query for
    Name of sales employee
    Item group
    Item name
    Total selling amount
    Total sales order
    Total delivery
    Total AR invoice
    Please help
    Thanks a lot

    Hi,
    What Total selling amount do you need? Invoice - Credit Memo?
    How about the other Total, total count or total amount?
    Thanks,
    Gordon

  • Sales employee sales

    hi all,
    can we capture sales employee related data in sales group.
    by doing this i can get the report employee wise

    hello, friend.
    you can assign the sales employee to Sales Organization, Sales Office and Sales group.  you can make a report for this.  this can be done during Create/Change sales personnel (VPE1/VPE2).
    in SIS, you have t-code MCTI to report on sales by sales employee.  you can find Sales org, Dist channel, Division, Sales employee, Sold-to and Material (as well as date range) as filters.
    regards.
    Edited by: Jonathan Yap on Jan 21, 2008 9:58 AM

  • Employee Sales by cpoy HR information (Use Sales Employee withou HR)

    Correct me if I'm wrong. I'm trying to copy the employee tables that will be used as a partner function ER in a specific customer. I know that this functionality is availible but I dont know how I can copy it. HR and SD are on 2 diffrent clients. I want to know if something must happen in HR, and what, and what do I have to do in SD inorder to copy this information.
    Thank you.

    Check following link,
    Re: fail to create sales employee without HR
    I hope it can assist you.
    Thanks & Regards
    JP

  • Employee  Split commission for more than one partner

    Hi
    any body help me..
    How to maintain sales employee split comission for more then one partners
    has to be sales employees assigned in sales document item level, and pricing condition types are created in same number as sales employes.

    You cannot do it in customizing, use a custom program.
    Roberto

Maybe you are looking for

  • 4S issues after upgrading to 6.1.3

    This is my wife's phone. She upgraded her 4s to 6.1.3. Late last week she had her yahoo mail hacked and they were sending messages from her account. We fixed that issue.  Then I tried to update her phone to her new password. That's when the issues ca

  • Is this phone work in Egypt

    Hi, i want to ask if the *iphone* is working in egypt (cairo)or not. one friend of my friend told me that it will begin working from January 2008, is it right. what is the address of Apple company in cairo (Egypt) and the phone number if it is possib

  • SCREEN, I need Help

    I got my iPod on March 7th. Today is the 10th and the LCD screen is internally messed up. It was alone in my bookbag compartment for two hours in its case that it came with and was there for only three hours. When I came back it was all messed up. I

  • Zap2it is borked on my iPad...

    For the last several weeks zap2it has been misbehaving on my iPad. When I click on a 'grid element', I get a pop up window but I do not get the plot synopsis for the show. I have set my provider to Dish for a nearby community. What is frustrating is

  • Prevent Double click in Document Flow

    Hello, We have a need in our project to restrict certain users from veiwing price in Sales Documents. We have achived this by using various exits and hiding the price. But we have a problem regarding the Document flow. When the user clicks on the doc