Sales Commision Functionality

Hi,
Can anyone explain in detail the Sales Commision functionality?
Few questions are
-> If there are multiple salespersons involved, how to attach them at S.O. level?
-> Where we can see, how much a Sales person has earned the commision?
-> Accounting for sales commision
With Regards,
Vishal Majithia

Hi Shankar,
There is "Non-quota" type of sales credits which can be entered in OM. This will not be used by accounting. Please check if this is of any use to your need.
Regards,
Swapna.

Similar Messages

  • Sales Commision / Free of Cost Sales Report

    Dear Experts,
    Is there any standard report in SAP to get the details of all sales created under "Sales Commision" / "Free of Charge" sales order.
    Sold Party - Quantity - etc
    Thanks

    Dear Simon John,
    There is no such standard report.
    Either you can use VA05 and select ALL ORDERS and then FILTER it based on your document type for FOC .
    Or else you can create a QUERY with VBAK-VBAP table join.
    Thanks & Regards,
    Hegal K Charles

  • Sales Commision

    Hy Gurus
    I Need to Capture sales Commision in Order Management which Should not be reflected in invoices WHich i have to Pay Back to the customer.
    Hoe to capture This and How Will i Have My Accoun entries Done For the Pay Back

    Hi Shankar,
    There is "Non-quota" type of sales credits which can be entered in OM. This will not be used by accounting. Please check if this is of any use to your need.
    Regards,
    Swapna.

  • Consignment sales commision

    in consignment sales how we can settle the commision for special stockist thru business since he tooks the sale and returns

    Hi,
    By defining a special partner function you can manage all the special stocks under one partner.
    It makes sense to use the special stock partner if your customer is using decentralized order processing but manages consignment stock centrally.
    Consignment goods which have been entered in a consignment fill-up are always posted to the stock of the special stock partner when goods issue is carried out.If a special stock partner does not exist in the document header, inventory management is carried out using the sold-to party.
    Prase

  • Sales Partner Functions - Restricted access for assigned partners

    Sales Department would like to use a partner function to assign a responsible salesman to a customer.  They would also like to restrict the access of the salesman to only those customers (and their associated sales orders/deliveries) that are assigned to him.
    How is this done from an authorization perspective?

    Hi,
    This can be achieved thru user exit.  You might need to create the authorization objects for document type, partner function and this has to be assigned to the concerned user.  The validation can be done with the field ERNAM and SYUNAME. 
    Thanks
    Krish.

  • Impacts of Activating Plants abroad ( tax on Sales/Purchases )  Functionality ?

    Hi Everyone,
    Can anyone let me know the impacts or things we need to consider before activating the Plants Abroad Functionality under Tax on Sales and purchase ?
    Do we need to change the existing tax procedure or Tax Codes ?
    Do we need to change Customer or Material Master Data ?
    What happens to the existing documents ?
    Thanks in Advance
    M.Shiva Kumar

    pls check the following note if you have access to SAPportal:
    Note 110615 - FF800 Diff. tax countries not permitted in one doc.
    pls reward if helpful
    Note 682596 - FF800 due to reporting country of tax codes from OBCL (might be also helpful, depends on the error)
    thank
    kr
    hakan

  • Sales - Quoting Functionality - XML Publisher and XSL.

    Hi ,
    We have changed output in Quoting to use XML Publisher instead of Reports Server.
    How can we view the XML tags to create the XSL file?
    Its possible to see XML output from PO's , SOA's etc when printed vis Concurrent Mgr and Oracle Forms but the raw XML is not available when using in Sales and Printing a Quote ( uses sample xsl in XML Publisher at the moment...Am formatting this.. but have no raw xml).
    Any ideas?
    Cheers
    Stephen

    I know what I can do in RTF and maybe it´s enough:
    1. Ensure you are using both tabs of the help text, you can start in Status Bar and continue with Help Key.
    2. You can also use multiple fields one after another.
    3. If you fill all of that and need more space I would consider moving the function out into its own XSL template and register it as a sub template and reference it from your main template. This is especially useful if you are going to need the same function across multiple templates.
    My problem was why I can´t use XSL-FO - XML in XMLSPY, have´nt anybody tried to go out of the WORD-RTF and code som XSL? Maybe it´s not possible and I have to use WORD-RTF.
    /Daniel

  • Sales Order function module to retrieve the item availability values

    Hi,
      Is there any function module to retrieve the item availability schedule line values.
    Navigation:->
    Go to sales order (Change Mode) -> Schedule lines tab ->  In application toolbar you can find Item availability icon.
    When this is pressed, next screen you can find the split up of schedule line values. I am developing an ALV report and is required to retrieve the Split up of the schedule line values.
    Is there any function module to retrieve the same.
    BR/ Josh

    HI,
      I have found one function module ATP_EXPLANATION. I am not able to figure out the parameters that needs to be inputted to this function module. If anyone has used this before, could you kindly help me out.
    This function module returns the Split up for Schedule lines in the tablea 'MDVEX'.
    BR/ Josh

  • Direct Delivery Sales Order - Function Module for Purchase Requisition

    Hello Experts,
    When we creat a Direct Delivery Sales Order at Production Plant  then one Direct Delivery Purchase Requisition automatically gets generated at the Distribution Warehouse. If anyone knows the function module which actually generates this Direct Delivery PReq, then request him/her to please let us know.
    Thanks and Regards
    Joseph

    Hi,
       Whatever Function Module's given are for or  above 4.6C versions.
       I want for 4.6B version.
      At the same time, the returned tables should return more than 1 Pur.Req number as the FM's mentioned returns only 1.
    Thanks,
    Mich

  • Sales pricing function module

    I would like to know if there is a FM that can be used to perform pricing outside of a sales document.  I would like a FM that the key pricing data can be passed to and a table returned with all relevant pricing.
    Is there a way to do this?  Any suggestions are appreciated.
    Thank you.

    Hi,
    Try this code..
    DATA: t_t682i LIKE TABLE OF t682i.
    DATA: lwa_t682i LIKE t682i.
    DATA  l_koprt TYPE koprt.
    DATA: lwa_komk TYPE komk,
          lwa_komp TYPE komp.
    DATA l_condition_records TYPE STANDARD TABLE OF a000.
    DATA: lwa_condition_record TYPE a000.
    DATA: lwa_konp TYPE konp.
    PARAMETERS: p_vkorg TYPE vkorg OBLIGATORY,
                p_matnr TYPE matnr OBLIGATORY,
                p_vtweg TYPE vtweg OBLIGATORY,
                p_waerk TYPE waerk OBLIGATORY,
                p_pltyp TYPE pltyp.
    lwa_komk-vkorg = p_vkorg.
    lwa_komk-vtweg = p_vtweg.
    lwa_komk-prsdt = sy-datum.
    lwa_komk-pltyp = p_pltyp.
    lwa_komp-matnr = p_matnr.
    lwa_komk-waerk = p_waerk.
    lwa_komp-pmatn = lwa_komp-matnr.
    * Get access
    CALL FUNCTION 'SD_T682I_SINGLE_READ'
      EXPORTING
        kvewe_i      = 'A'
        kappl_i      = 'V'
        kozgf_i      = 'PR00'
        count_i      = 50
      TABLES
        t682i_tab_io = t_t682i
      EXCEPTIONS
        OTHERS       = 1.
    LOOP AT t_t682i INTO lwa_t682i.
    * Get condition
      CALL FUNCTION 'SD_COND_ACCESS'
        EXPORTING
          application          = 'V'
          condition_type       = 'PR00'
          date                 = lwa_komk-prsdt
          header_comm_area     = lwa_komk
          position_comm_area   = lwa_komp
          t682i_i              = lwa_t682i
          koprt_i              = l_koprt
        TABLES
          condition_records    = l_condition_records
        EXCEPTIONS
          field_is_initial     = 1
          not_read_unqualified = 2
          read_but_not_found   = 3
          read_but_blocked     = 4
          t682z_missing        = 5
          t681v_missing        = 6
          t681z_missing        = 7
          mva_error            = 8
          OTHERS               = 9.
      READ TABLE l_condition_records INTO lwa_condition_record INDEX 1.
      IF sy-subrc <> 0.
        CONTINUE.
      ENDIF.
      SELECT SINGLE * FROM konp
             INTO lwa_konp
             WHERE knumh = lwa_condition_record-knumh.
      WRITE: / lwa_konp-kbetr.
      EXIT.
    ENDLOOP.
    Thanks
    Naren

  • Configuration of sales commision

    hi friends
    please give the details of configuraton of sales commission during sales order.how to create accounting document?which condition to be used?please give me all the details
    regards
    krn

    Based on this thread, it is correct:
    Re: local settings during creation of a new company

  • Commision to sales employee

    Hi,
    I like to calculate sales commission to sales employee every month end after sales closing.
    The scenario is:
    Upon achievement of 100% of targeted sales - commision is 4% of total sales
    Upon achievement of 95% of targeted sales - commision is 2% of total sales
    Upon achievement of 90% -commison is 1% of total sales.
    Now how to map this, please help me .
    Regards,
    Venkat.

    Hai Venkat,
    How are you maintaining the targeted sales against sales Employees?
    Are you using any standard functionality?
    Bcoz we created Z table for Maintaining target in a combination of
    Employee/ material group/ month / state  / quantity
    And we created report that will compare the actual sales in a state again the sales employee from the ZTABLE.
    and will show the Percentage growth and Volume growth.
    Regards,
    Mani

  • Sales Analysis Item Tab Function Not Showing Orders Dollars

    Hello Gurus of SAP B1.
    This pertains to SAP B1 SP 00 PL 16 Version 8.8. 
    While doing the Sales Analysis function under Sales A/R > Sales Reports > Sales Analysis > Item Tab, the system does not report on the dollars for the day when I select "Orders" or "Delivery Notes'.  The system does display the proper dollars when I select "Invoices" on the "Item" Tab. 
    And the "Invoices" and "Orders" and "Delivery Notes" buttons display correct dollars on the other tabs for Customer and Sales Employee...so why not on the "Items" tab???
    Does anyone know why this might be happening and/or how to fix this???
    Thanks in Advnace - Zal

    Thanks for the quick reply Gordon - hope things are continuing to go well in your new endeavors &;-D
    Well that is really strange that items is handled that way - I have created SQL to get the results but I always like to balance out to what SAP B1 is reporting.  My SQL detail and grand totals are fine by Customer and I have been able to reconcile in that manner, but wanted to reconcile by items also.  I am certain I have done it before in SAP 2007A...
    Has there been a change to the item/sales order table in Version 8.8???
    Take care my FFF - Zal

  • In KA02 screen how can I get different functional area like (Production, Sales, Adminstration etc)

    In KA02 screen how can I get different functional area like (Production, Sales, Adminstration etc)

    Hi,
    Please check below configuration for defining functional areas for cost elements
    SPRO> FI > FI Global settings> company code> cost of sales accounting>Functional area > enter functional area
    Regards,
    Jyoti

  • Sales Analysis Item Tab Displays Zero Dollars for "Orders"

    This pertains to SAP B1 SP 00 PL 16 Version 8.8.
    While doing the Sales Analysis function under Sales A/R > Sales Reports > Sales Analysis > Item Tab, the system does not report on the dollars for the day when I select "Orders" or "Delivery Notes'. The system does display the proper dollars when I select "Invoices" on the "Item" Tab.
    And the "Invoices" and "Orders" and "Delivery Notes" buttons display correct dollars on the other tabs for Customer and Sales Employee...so why not on the "Items" tab???  Strange that a button would be displayed which does not work...
    Does anyone know why this might be happening and/or how to fix this???
    Does SAP plan on fixing this in any upcoming patch levels???
    Regards - Zal
    Responses received from SAP B1 Core Forum:
    Sales Analysis Item Tab Function Not Showing Orders Dollars

    Thanks for the quick reply Gordon - hope things are continuing to go well in your new endeavors &;-D
    Well that is really strange that items is handled that way - I have created SQL to get the results but I always like to balance out to what SAP B1 is reporting.  My SQL detail and grand totals are fine by Customer and I have been able to reconcile in that manner, but wanted to reconcile by items also.  I am certain I have done it before in SAP 2007A...
    Has there been a change to the item/sales order table in Version 8.8???
    Take care my FFF - Zal

Maybe you are looking for

  • MBP Some applications wont start

    When I try to start Miro or MS Office they wont start and want to send error reports. I send them but it doesnt solve anything.  All the other applications open fine.  I started another user on my mac book and tried to open the applications and they

  • External Monitor Clam Shell

    Hi, I have a new june 2009 15 macbook pro and an external monitor hooked up to it. The awakening and everything works, but here's my question: The computer gets hot, real hot... What are the effects of the labtop's monitor and internals with using it

  • Deleting HU's from delivery

    Hi, I have to delete HU's from a delivery. I need to delete all of them except a couple. I found this link in SDN Re: Delete handling unit have been trying to implement this but everytime I get a short dump saying 'Runtime error CSSQL_ARRAY_INSERT_DU

  • Dynamic table offline scenario

    Hi, I have the following scenario. An empty pdf document with some inputfields and 1 dynamic table should be filled by the customer. Initially the inputfields are all empty as well as the table where a button to add rows is foreseen. When the documen

  • No Sound From Center Speaker [Win 7]

    $No Sound From Center Speaker [Win 7]? Hi, I downloaded the Darkest of Days demo and noticed that the speech volume was very low if i positioned it center of the camera. But if i positioned it on the left or right of the camera, the speech volume wou