How to  calculate salesperson commission from receivables TRX

Hi All
I need to know how i calculate salesperson commission from receivables trx
Regards;

Hi,
If  you charge commission or brokerage as a service to other vendors and customers, then raising an Invoice for the Service performed can be checked in the database.
It would be good, if you can give a detailed example of the business activity, so that we can further check.
Kind Regards,
Jitin
SAP Business One Forum Team

Similar Messages

  • How to calculate overwrighting commission to the third party

    hi,
    sap gurus,
    here is the scenario:
    my sold to party is different
    and
    ship to, bill to and pyr is different.
    but
    the order will be on sold to - ie on third party.
    and
    the rest are the same ie - delivery, billing, payment is from the party to whom we have delivered, billed, and paid.
    and
    after the party paying the full amount then we have to
    calculate over writing commission to the party ie sold to.
    how to calculate that commission.
    hint: we hav to think from Partner Determination Procedure perspective and requesting to find a solution for that.
    this is specifically only TRANSACTION SPECIFIC.
    BUT NOT PERIOD SPECIFIC.
    help me on this.
    regrds,
    balaji.t
    09990019711
    and

    Hi
    yopu can make use of existing query in APD and update a Direct Update DSO and then a cube , then u can define your new query on the new Cube with required Keyfigure values .
    Rajesh

  • How to calculate week number from system date

    Hi experts,
    how to calculate week number from system date  ?
    thanks.
    SK

    hi,
    The above FM can be used for BADI or customer exit, if it is design level then you can use formula as well, under formula date functions you can use DATE_TO_WEEK.
    regards,
    Arvind.

  • How to calculate the total from users input in switch?

    I dont know how to hold the input from user. But here is part of my coding :
    System.out.println ("Type 1 for buying Ruler"+
    "\nType 2 for buying Pencil");
    stationaries = console.nextInt();
    switch (stationaries)
    case 1 : System.out.println("Ruler per unit : MYR1");
    System.out.println("How much does you want? : ")
    wantRuler = console.nextInt();
    sum = wantRuler * 1;
    break;
    case 2 : System.out.println("Pencil per unit : MYR2");
    System.out.println("How much does you want? : ")
    wantPencil = console.nextInt();
    sum = wantPencil * 2;
    break;
    How can I calculate the total for both of the stationaries if user wants 5 for ruler and 6 for pencil?

    Note: This thread was originally posted in the [Java Programming|http://forums.sun.com/forum.jspa?forumID=31] forum, but moved to this forum for closer topic alignment.
    Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.

  • How to calculate Amount of goods received bill not received

    Hi Gurus,
    In my vendor aging report client require one filed which is amount of goods received bill not received (Goods received amount- Invoice amount)
    can u please tell me what should i do?
    Thanks in Advance
    Kavita

    Hi,
    Actually i written a code in CMOD and enhanced the data source but the value is not proper......
    something is missing ...can anyone explain
    here is my code
    when '0FI_AP_4'.
      data  wa_DTFIAP_3 type  DTFIAP_3.
        loop at c_t_data into wa_dtfiap_3.
         select single ebeln lifnr from ekko into  (it_ap03-ebeln,it_ap03-lifnr)
            where lifnr = wa_dtfiap_3-lifnr.
           it_ap03-budat = wa_dtfiap_3-budat.
           it_ap03-budat = wa_dtfiap_3-belnr.
          if sy-subrc = 0.
            append it_ap03.
           endif.
        endloop.
      loop at it_ap03.
       select SINGLE mblnr from mkpf into mkpf-mblnr WHERE budat =  it_ap03-budat and blart = 'WE' AND
         VGART = 'WE' .
         IF SY-subrc = 0.
         SELECT SUM( dmbtr ) from mseg into   it_ap03-dmbtr where mblnr = mkpf-mblnr and xauto = '' and
           bwart in ('101','102') and lifnr = it_ap03-lifnr .
       SELECT SINGLE ebeln matnr from mseg into (mseg-ebeln,mseg-matnr) where mblnr = mkpf-mblnr.
         select sum( dmbtr ) from ekbe into it_ap03-dmbtr1
         where ebeln = mseg-EBELN  and vgabe = 2  and matnr = mseg-matnr  and budat = it_ap03-budat.
         it_ap03-tamt = it_ap03-dmbtr - it_ap03-dmbtr1.
        ENDIF.
    select sum( wrbtr ) from ekbe into it_ap03-dmbtr
    where ebeln = it_ap03-EBELN  and bewtp = 'E' and budat = it_ap03-budat.
      select sum( wrbtr ) from ekbe into it_ap03-dmbtr1
    where ebeln = it_ap03-EBELN  and bewtp = 'Q'  and budat = it_ap03-budat .
      modify it_ap03.
      clear it_ap03.
      endloop.
    loop at c_t_data into wa_dtfiap_3.
    read table it_ap03 with key lifnr = wa_dtfiap_3-lifnr belnr = wa_dtfiap_3-belnr.
    wa_dtfiap_3-zzbillamt = it_ap03-tamt.
    modify c_t_data from wa_dtfiap_3.
    endloop.
    endcase.
    Edited by: kavita on Sep 11, 2010 8:48 AM

  • HT201401 how to repair sound coming from receiver

    please tell me how to resolve this problem?

    That would depend on what the actual issue is.
    Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).

  • How to calculate Average time from a date field

    Hi All,
    I have a date type field in my table .
    I want to calculate average time for a given country in a select query. Date has to be exculded. Only time has to be taken into consideration.
    Kindly help me.
    Sample data
    india 25-JUN-09 08:12:45
    india 25-JUN-09 09:01:12

    Take which one you want.WITH dates AS
      (SELECT sysdate x FROM dual
        UNION
       SELECT sysdate + 1 +1/24 FROM dual
    SELECT TO_CHAR(to_date(AVG(to_number(TO_CHAR(to_date(TO_CHAR(x,'HH24:MI:SS'),'HH24:MI:SS'),'sssss'))),'sssss'),'hh24:mi:ss')
       FROM dates;
    WITH dates AS
      (SELECT sysdate x FROM dual
        UNION
       SELECT sysdate + 1 +1/24 FROM dual
    SELECT floor(24 * AVG(x- TRUNC(x)))
      || ':'
      || floor(mod(24 * AVG(x- TRUNC(x)),1) * 60)
      || ':'
      || floor(mod(mod(24 * AVG(x- TRUNC(x)),1) * 60,1) * 60)
       FROM dates;By
    Vamsi

  • How do I prevent someone from receiving my iMessages on my old iPhone?

    The new owner of my old iPhone is receiving iMessages that are intended for me (by simply "texting" me). People say when they "text" (fellow iPhone/iMesssage" friends), the messages bounce back. Is there anything I can do on my end to prevent this from happening? I have changed my iTunes ID & password... Many thanks!

    You need to log turn imessage off on the old phone and change your Apple ID password.
    Delete the phone from your profile in https://supportprofile.apple.com if you registered your phone there

  • How can I stop someone from receiving iMessages on their old disconnected iPhone, w'hich is still active in iMessage, when the number now belongs to someone else with a non apple device!?!

    To further clarify my dilemma ....
    A friend of mine just got a new phone number on her LG cell phone.
    When I try to text her, my messages are going to someone else's iPhone.
    The iPhone has been deactivated off the VZ cell network, but they are still using it on WIFI.
    They used to have this number on their iPhone, and it's still active in iMessage.
    So, when I try to send a text message to my friend on her LG, from my iPhone,
    they instead go to this total stranger, cuz they still have that number active in their iMessage account.
    This is a serious issue!!
    The only suggestion I get from apple support is to have my friend get a new number, or for me to turn off iMessage when I want to text her.
    Not really the optimum solution.
    Something really should be done to prevent this from happening!
    Strangers are effectively intercepting text messages!
    Help!?!

    Tell her to contact her carrier and get a new phone number.

  • HT1688 My phone's iMessages are being sent to a the intended addressee. However in addition to him, his father's email account just recently started receiving our texts last night. How can we stop him from receiving our texts and replying in our thread?

    I've tried turning iMessage on and off, his son has deleted his iCloud account in suspiscion that that was the cause of the problem, etc.
    We've been texting for months without problem. This morning his son texts me, "Good morning," and then his father replies into our thread, "Good morning to you too!" I checked my contact, and I never had his father's email account before nor was his email a part of his son's contact. Please help me to stop him reading our messages. Thank you.

    You don't necessarily need to change the Apple ID for iMessage, in Settings > Messages > Received At > On each device have them uncheck any number/email that does not belong to that device

  • How to calculate the value from prompt and use the value as filter

    Hi everyone,
    I am designing a OBI query. I want to write a query and one of it filters comes from the dashboard prompt. Say I want to make a query to pull out the record for 3 consective years and user wants to enter the last year # and omit entering the first 2-year code#.Thanks!

    Hi,
    if i understand your question
    you have a prompt for year.. and it's assigned with presentation variable, say: var_year
    And you are just entering value for only one year, say 2000.
    Then, the request (which is using that prompt value as filter) should display year values 2000, 2000-1 (i.e. 1999), 2000-2 (i.e. 1998).
    Is this your requirement?
    If then,
    Hope you are using edit box as control for year prompt and assign a presentation variable for that prompt.
    Now, in report go to filter of year prompt, click on advance > Convert this filter to SQL.
    write here... *Times.Year between @{var_year} and @{var_year}-2*
    And make sure that your var_year is integer, if not cast it to integer

  • How can I BLOCK others from receiving return receipts on mail they send me?

    I would rather others not know when I read their emails. Can Mail block return receipts?
    I searched for an existing string on this and didn't find one. Excuse me if I missed one.

    As Allan said, Mail does not support receipts, but sometimes HTML messages download images from a server, and this connection could be used to confirm that the message was opened. To prevent that,
    Preferences > Viewing, Un-check "Display remote images in HTML messages".

  • Calculate previous Sunday from the current day

    Hi Gurus,
    Can anybody tell what is the name of the function module which caluclates the previous Sunday from the Current system date. or any other idea how to calculate previous sunday from the current system date in Query.
    Thanks
    Liza

    Hello,
    See my previous thread to you for a similar Re: Find out previous Monday based on 0CALDAY
    Thanks
    Chandran

  • How to calculate rms voltage, rms current and frequency from real time data?

    Hello,
    I need to calculate the real time rms voltage, rms current and frequency of the received voltage and current graphs using visa read. Actually am trying to monitor the voltage and current parameters of AC load, in this case, am using a set of 4 light bulbs at the moment. Expected frequency is 50 Hz, and rms voltage close to 240v AC, current about 1A. 
    Attached is the vi picture of what I have been able to achieve so far, courtesy of labview forums. But I need to finally finish this vi by calculating the Vrms, Irms and frequecy. The front panel shows the voltage (Chart V) and current (Chart I) after scaling. Chart VI represents ADC value 0 ~ 1023 of received data. Aray V & I show the binary bits received up to 10 bits of useful data from ADC. Each sine wave from ADC is sampled at 25 samples for the ADC conversion, and sampling frequency of 1.28kH.
    I have tried using the RMS vi, but seems I don't know how to configure it correctly to get desired results. Also when I make changes like switching of one of the bulbs so that their is current change, I need to refresh the SERIAL port first before changes show up on the VI. Any ideas on how to improve on this are highly appreciated.
    Otherwise, I would appreciate if somebody helps me MODIFY my VI to read the rms values and frequency from received data. This is the last piece of my project, I do appreciate all the help rendered. Am currently using labview labview 2014, student version!
    Gavin.
    Attachments:
    Test_revised1.vi ‏39 KB
    Test_frontpanel.png ‏196 KB
    Test_blockdiagram.png ‏187 KB

    hello,
    note that peak voltage (Vpeak) is (240 * 1.414) = 399 V and peak current about 1.414 if intended rms current is 1A.
    Gavin.

  • How to calculate the number of sent/received emails of a certain domain

    Thank you for what you have helped me with!
    How to calculate the number of sent/received emails of a certain domain in a certain period? It is Messaging Server 5.2, Directory Server 4.2. Is there a log option for this?
    Thank you.

    Not sure where you find, "LOG_MESSSAGE_ADD". I don't actually find this option in the documentation.
    The domains that mails are coming from and being sent to are certainly logged in the normal mail.log, so why mess with additional logging options? If you're talking about "LOG_CONNECTION", I actually see no additional data that is useful to you.
    If you decide to change the option.dat, you do indeed need to
    imsimta cnbuild (note, it's not cnrebuild)
    imsimta restart
    If I were facing the same issue, I'd be looking at the log parsing perl script, and simply modifying it to do what I wanted.

Maybe you are looking for

  • Inutilização de NF-e Erro GRC 109 - Não sincroniza com ERP.

    Foi enviada uma solicitação de cancelamento de uma NF-e que não estava autorizada para a SEFAZ. Acredito que não foi aguardado o tempo de retorno da SEFAZ e na sequencia foi solicitada a INUTILIZAÇÃO. Após esta ação, ocorreu o erro : Document 0006776

  • Site Synchronisation

    Hello, and thanks for taking a look at this question. We have 3 web developers all working on the same project. I have configured all of their Macs to have a single Site where the 'Local' Site points to the same folder on our server. This way all of

  • After synching ipod file not found

    I am trying to sync a 20g ipod manually, it says it is synching...but at the end a note comes up saying that the file wasn't found. The ipod is only synching through 1/2 the alphabet.

  • Time Machine. Restore multiple partitions in to one. Is it possible?

    Hi. I currently have 3 partitions in my iMac running Mountain Lion but I want to clean install the OS and format the disk as just one partition. Can I use time machine to back up all the 3 partitions and then restore all the data to the "new" disk as

  • FCP 5.1 on snow Lep.

    Hi, I have a question.. will FCP 5.1 work on snow Lep? Planning to get a imac i5 but dont want to buy the upgrades... thanks..