COMMISSION TO SALES EMPLOYEE WITH OUT HR MODULE

Dear all,
I have senario where i wanted to give a commission to each sales employee. Also i dosenot want to create Sales Employee?bcoz HR module is not implemented?
Is it possible to give commission to sales employee?
Plz send what are the customization for the same?

Sales commissions can be configured frm SD if they are simple in nature. This is done through rebates. If the commission and management is complex in nature then it can be done through ICM ( Incentives and Commissions Management )
The following procedure details the configuration of the Sales commission for Employee. The problems could e at any one of the following steps.
You need to create a partner function for sales employee, a copy of the standard partner function available in SAP. Then do the appropriate partner determination, that is assignment to the sales document and item partner determination procedure. Next step is to create master data for all your sales employees as Vendors, assign these masters you created to the sales order at item level.
We can see the orders sales employee wise in VA05 provided we add the sales employee partner function in the index list under sales and distribution, sales, lists, set updating of partner index.
In the  pricing procedure, we need to maintain a condition for sales employee commissions and choose whether you want to enter the commissions percentage manually or prefer automatic determination. Here we need to get an input from the client as to whether they have fixed or variable commission percentages.
Create an accrual account key for this and assign it to the condition type in the pricing procedure and remember that the condition type in the procedure should be statistical and not relevant for printing.
Next step is to make the settlements after the Invoices have been posted and the relevant commissions accrued to a G/L Account.
Now settlements could be manual as well as automatic. If you choose to make automatic settlements, there needs to be a ZREPORT which makes a vendor payment posting or if the settlement is manual, you need to might be run a BDC periodically to post the invoices for the so called Vendors (Sales Employee)
regds
Jude

Similar Messages

  • With out Controlling module configurations, can we Configure PP module dire

    < MODERATOR:  Message locked.  Please read the [Rules of Engagement|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] before posting next time. Use an appropriate title. >
    Hi Experts,
    With out Controlling module configurations, can we Configure PP module directly?
    Thanks
    Chandra

    Hi,
    Yes you can configure PP with out CO but you will not get Product Costing results for the materials used.
    You will not be able to link Activities, Cost Centers, Over Heads which are production activities.
    Cost Analyisis for the Order will not be possible.
    To say in brief Cost related entries or break up is not possible if CO is not implemented.
    Regards
    Balaji

  • Incentive / Commission to Sales Employee Or Sales Representative

    Dear SD friends,
    I am working on a scenario wherein we have to make incentive payments as a % of sales value to a sales employee .
    I think that we can use rebate agreements to accomplish this.
    I have gone through the SAP Incentive and Commission management application and find that it is too cumbersome for only this scenario.
    If any of you have done similar configurations, kindly help.
    Thanks and regards

    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>

  • Auto fill Sales Order "Sales Employee" with "Owner"

    I would like to auto fill the "Sales Employee" in a Sales Order based on the assigned Sales Employee in HR for the user/owner that is logged in.  I would only want this to work on the initiate Add of the document.
    Can this be only done with a Stored Procedure based on 'A'dd type? If so can someone provide the programming?
    Thanks.

    SP is not a proper tool for your goal. You are not allowed to update table through SP.
    Only FMS would be the right tool here.
    Thanks,
    Gordon

  • Issue in V_V2: Can system rescheduling the sales order with out stock

    Hello All,
    I created sales orders with one material. For that material the stock is zero now. The system has not confirmed the qty in sales orders while creating.
    After that as per the client we ran the V_V2 for rescheduling, but system has not rescheduled any schedu lines in any sales orders.
    Is it due to lack of stock?
    One more point is we do not have Delivery proposal option in sales order. Only One time delivery option.
    Is it due to this setting?
    Please help me to solve this issue.
    Regards
    Lakshmikanth

    Hi
    Because there is checking rule set at order level , thats why once stocks is not there due to unavailabilty of stocks system not allow to go for V_V2.
    for this u hav to deactivate under oVZ8/9
    thanks
    mk

  • Regarding  "Sales Employee" with Activity

    *Is it Possible to create sales Employee as USER and it will be shown in Drop DOWN in"Assigned To" in Activity Windows
    Is there any Problem if we create users as Sales Employee* 
    Regard
    Nishikant S Virkhare

    The sales employee and user are independent entities in the system. But you can make connections e.g. using the user name as the sales employee name. Then the drop down in u2018Assigned tou2019 will allow a choice from the sales employees. If you donu2019t want to choose from all the users, you can differentiate the names belonging to sales employee (e.g. adding the u2018- s.e.u2019 to the name).

  • Sales Analysis Report per Sales Employee with BP Reference No

    Hi All,
    I need your assistance in creating a query that balances back to Sales Analysis Report but I require the BP Reference No to show per row.  I have created 2 queries through Query Generator.  The 1st contains the OINV and OSLP tables with Fields:  DocNum, NumAtCard, SlpName, DocDate, CardCode, CardName, DocTotal
    The 2nd contains the ORIN and OSLP tables withe the same Fields.
    I need to combine these 2 queries and I need assistance with the DocTotal.  I need the amount before tax.
    This report needs to balance back to the SAP B1 Sales Analysis Report.
    Your assistance would be appreciated.
    Regards,
    Desiré Janse van Rensburg

    Thank you for your assistance!  After googling a few pages I came across this query.  I adjusted it to comply to my needs.
    Herewith query if you guys are interested:
    SELECT
    T0.DocNum AS 'Invoice Nr',
    T0.NumAtCard AS 'Customer Ref Nr',
    T1.SlpName AS 'Salesperson',
    --T0.SlpCode AS 'SP Code',
    T0.DocDate AS 'Posting Date',
    T0.CardCode AS 'Customer Code',
    T0.CardName AS 'CustomerName',
    'Credit Memos' AS 'Doc Type',
    ((T0.DocTotal) * -1) AS 'Total Docs',
    (((T0.DocTotal - T0.VatSum) - T0.TotalExpns) * -1) AS 'Product Sales',
    ((T0.GrosProfit) * -1) AS 'Gross Profit',
    CASE
    WHEN (((T0.DocTotal - T0.VatSum) - T0.TotalExpns) * -1) = 0.00 THEN 0.00
    ELSE (((T0.GrosProfit) * -1)/(((T0.DocTotal - T0.VatSum) - T0.TotalExpns) * -1)) * 100
    END AS 'Gross Profit %',
    ((T0.PaidToDate) * -1) AS 'Paid To Date',
    ((T0.DocTotal - T0.PaidToDate) *-1) AS 'Open on Docs'
    FROM ORIN T0
    INNER JOIN OSLP T1
    ON T0.SlpCode = T1.SlpCode
    WHERE
    (T1.SlpName LIKE '%%[%0]%%' OR '[%0]' = ' ')
    AND T0.TaxDate >= '[%1]'
    AND T0.TaxDate <= '[%2]'
    UNION
    SELECT
    T0.DocNum AS 'Invoice Nr',
    T0.NumAtCard AS 'Customer Ref Nr',
    T1.SlpName AS 'Salesperson',
    --T0.SlpCode AS 'SP Code',
    T0.DocDate AS 'Posting Date',
    T0.CardCode AS 'Customer Code',
    T0.CardName AS 'CustomerName',
    'Invoices' AS 'Doc Type',
    (T0.DocTotal) AS 'Total Docs',
    ((T0.DocTotal - T0.VatSum) - T0.TotalExpns) AS 'Product Sales',
    (T0.GrosProfit) AS 'Gross Profit',
    CASE
    WHEN (((T0.DocTotal - T0.VatSum) - T0.TotalExpns)) = 0.00 THEN 0.00
    ELSE ((T0.GrosProfit)/((T0.DocTotal - T0.VatSum) - T0.TotalExpns)) * 100
    END AS 'Gross Profit %',
    (T0.PaidToDate) AS 'Paid To Date',
    (T0.DocTotal - T0.PaidToDate) AS 'Open on Docs'
    FROM OINV T0
    INNER JOIN OSLP T1
    ON T0.SlpCode = T1.SlpCode
    WHERE
    (T1.SlpName LIKE '%%[%0]%%' OR '[%0]' = ' ')
    AND T0.TaxDate >= '[%1]'
    AND T0.TaxDate <= '[%2]'
    Thanks again for the replies!

  • PP Module implementation with out CO Module

    Hi friends,
    We are facing problem in implementing PP module because of CO areas.
    Here we are not implementing CO module so we have not defined controlling areas and cost centers etc.
    But we are getting problem related to CO in PP implementation.
    for that we want to know what major configuration settings should we fallows (related to production planning).we are facing problem while converting planned order to process order, it is asking about controlling area. How to define a resource without cost center.
    Please tell us.
    Mr Jitendra

    Hi Jithendra,
    Defining of controlling area,cost elements,cost centres are bare minimum requirements for PP - FI integration even if do not implement CO module.
    Incase you have product costing requirements you will require extensive integration with CO module.
    Regards
    Venugopal

  • Sales order with out Price List or Sales Person

    Can Sales Order be prepared without Price List or Sales Person ?

    No and no.
    If you're not using sales compensation and not interested in recording the salesperson for the purposes of printing on documentation or internal analysis, you could always set up a default to the seeded value 'No Sales Credit'.
    As for the pricelist, every item on an Oracle sales order has to exist on a price list. The only exception is a configuration item if you're using CTO. Of course there is nothing to stop you creating one simple pricelist with a product context of 'All items' priced at zero which can sometimes be useful during initial system setup when you're checking your OM setups work correctly before moving on to pricing.

  • Sales employee partner function

    hi all,
    In our system, it was mandatory to enter sales employee in sales header.
    now the sales employee id is 0.
    to remove this, I have gone to spro and
    Sales & Dist - Basic Functions - Partner Det- Set up Partner Det - and clicked on Set up PArt Det for sales employee and unticked it.
    After this, I tried to make a sales order (TA) and it's again asking for sales employee
    as mandatory. do I wanted to change anywhere other than there ????
    Again I tried with IMG -->Sales and distribution -->Master data -->Business partners --> Use sales employee with out HR .
    It wont reflect in the system.
    Can anyone tell me the method to enter sales employee master details or to avoid as mandatory ?
    anyone can help ??
    Regards
    Jose

    Hi Prach,
    You can add one sales employee per line item. In one line item you cannot add morethan one sales employee however.
    If you want to include morethan  one sales employee to EVERY LINE ITEM, then
    1. Create some PFs like Salesperson1, Salesperson2 etc, say upto 5.
    2. Now assign this PF to the sales document header and item category,
    3. For all the PFs, you can have the same account group.
    4. Now you can create customer master for all these sales person.
    5. Once this is done, you can link multiple sales persons for each line item.
    Hope thsi helps you
    Pls reward if thsi helps you

  • Commission is given to each sales employee

    Dear all,
    I have senario where i wanted to give a commission to each sales employee. Also i dosenot want to create Sales Employee?bcoz HR module is not implemented?
    Is it possible to  give commission to sales employee?
    Plz send what are the customization for the same?
    Thanks & Regards,
    PM

    Dear all,
    I have senario where i wanted to give a commission to each sales employee. Also i dosenot want to create Sales Employee?bcoz HR module is not implemented?
    Is it possible to  give commission to sales employee?
    Plz send what are the customization for the same?
    Thanks & Regards,
    PM

  • Sales Order Creation With out Exicse Duty

    Dear All,
    I want to create the sales order with out excise duty calculation. But for this customer is excise applicable for other material.
    Thanks
    Saravanan R

    Dear Sarvanan,
    Looking to your issue what I understood is -
    1. Customer is exciseable.
    2. There is a mix of exciseable and non-exciseable material.
    3. In sales order you want to calculate or don't want to calculate the excise depending on the material.
    If you are having TAXINN tax procedure then for excise conditions,
    1. Update access sequence by adding an access having material code, customer code with plant as the key.
    2. Please nesure that this access must be on the higher priority else this access may not get populated.
    3. Maintain the condition record as per the new access.
    If you are having TAXINJ procedure then for UTXJ condition,
    1. Update access sequence by adding an access having material code, customer code with plant as the key.
    2. Please nesure that this access must be on the higher priority else this access may not get populated.
    3. If required, create a new tax code having only tax data in the tax code.
    3. Maintain the condition record as per the new access.
    I think it will resolve your issue.
    Thanks & Regards
    Piyush

  • 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>

  • Setting Sales Employee Commission

    Hello All -
    Can we adjust commission for a sales employee for a specific Business Partner?  For example, for some Business Partner's that the sales employee is responsible for they get a 10% commission...for other BP's they get an 8% commission, etc.
    Please advise how to do this.
    Thanks,
    Mike

    Thanks Marcia!
    If we have both the Set Commission By Sales Employee and Set Commission By Customer checked then is the default commission the commission by sales employee if we do not set a User Defined Commission? 
    We do not want to go through and set User Defined Commission for every BP -- just a handful.  The rest we would like the detault to be the Sales Employee Commission.
    Please advise.
    Thanks!
    Mike

  • Enhancement of 2lis_11_vaitm with sales employee

    Hi,
    I have a scenario to display the sales employee and execution employee for sales order.
    i am using standard data source 2lis_11_vaitm, which has filed PVRTNR for which in data is coming from VBPA table PERNR filed.
    In cmod, customer exit , code is written to populate the data for this field PVRTNR from table VBPA.
    For every sales document there are two employees -- sales employee with partner function as VE and sales execution employee with partner function ZZ. But both the employee entries are getting stored in same table VBPA.
    But when we write the code in CMOD, the vales for the field PVRTNR, it is taking the values whose partner funtion is VE.
    Now user wants both the employees to be displayed i.e, employee with partner function VE and partner function ZZ.
    How can I do it?

    Hi,
    Check the Code writen in Cmod, select command must have where clause with condition on partner funtion is VE
    so after that add OR operator condition for ZZ
    post you code so I can give the proper solution for that
    Best Regards
    Obaid

Maybe you are looking for