Partner Sales Agent in VA05 report

Hi All,
When i create a Sales order (Credit Memo)  i maintain  sales agent partner in that, but after checking in List of sales order from VA05, i don't get the sales agent field.
Could anyone help, how to get the required field from the report?
Thanks in advance,
Regards,
Siddaram

HI
You can add the partner function in report VA05. For this u need to go SPRO and follow the path below
SPRO:-
> Sales and Distribution
> Sales
> Lists
> Set Updating of Partner Index.
and add the partner function as said by Mr Laskhmipathy and when u run the VA05 report include that in your report selection criteria.
Thx.
Edited by: Dwarkesh Thakkar on Jul 3, 2009 11:50 PM

Similar Messages

  • Sales Orders-Collective Billing [Primary Sales Agent-Sub Agent-EndCustomer]

    Dear all,
    Our company is a FerryBoat operator and the following sales schema is used: Primary Sales Agents - PSA sell Tickets to interested parties - End Customers via  Subagents - Brokers.
    Via our Reservation system (not SAP) an interested party can buy a reservation using the services of a subagent who has online access to the system. In case of Trucks the reservation System issues a type of Cargo Invoice for the End Customer (ie the company that owns the truck). Our company is  paid by the PSA  of our SubAgent.
    Up to now for each truck reservation, within our SAP back office we created a SalesOrder via an IDOC, with the following Info:
    SoldTo      = the SubAgent ( has a view in SalesOrganization as a customer - KNVV )
    ShipTo      = the SubAgent ( We didnu2019t keep the EndCustomer in our SAP system )
    BillTo, PayTo = The PSA  ( has a view  within the CompanyCode data u2013 KNB1 )
    Billing is collective and each billing document includes many Sales orders for the Same PSA. The Accounting Document is a summarized one
    Debit PSA-Payer / Credit Revenue .
    From the Billing document an output Statement is produced and sent to the PSA.
    We are obliged from 01.01.2010 to reflect the End Customer sale in our SAP accounting System, even though we will still be paid by the PSA. So the accounting department proposes something like this
    1.     Debit EndCustomer / Credit Revenue     for each CargoInvoice-many End Customers
    2.     Debit PSA / Credit End Customer          (summarized)
    The same Output statement should be produced and sent to PSA since he will continue to pay us.
    It is clear that from now on we should keep a record of the End Customer within our SAP system (should be opened in KNB1) From what I understand the Sales order should have the following info
    SoldTo = the SubAgent
    ShipTo = the End Customer
    BillTo=?
    PayTo=?
    Should we have new Business partner functions? How can we achieve this via SD. What should be the Businness partners involved in each Sales order u2013 Truck reservation ? Is it possible to have a single BillingDocument for the whole production of a PSA as we had before ?
    Thank you in advance for any hint-tip.

    u will get answers for all these at
    http//help.sap.com
    Satish

  • VA05 report exectution  Excel format few line items gets automatically skip

    Dear,
    SAP support Team & Other team Members On SDN.
    As we are generating report from VA05 screen for retail sales order list, the report shows full required data but when the report is executed in Excel format few line items gets automatically skipped & further tried generated in TXT format the whole report get properly dragged.
    This problem is only in PRD Server, when i am teting the same in DEV Server it is properly Generated in EXCEL with Proper LINE ITEMS.
    Please kindly provide me with some Solution regarding the same.
    Warm Regards,
    Mohammed Hassan Naveed
    Deputy SAP Basis Consultant

    Hi,
    Have you tried using VA05N?

  • Sales agent commision in the SO

    Hi,
    In our system we want to configure sales agent commision in the sales order,  requirement is in the saels order we want to enter the customer code for which we want to pay the commiision the commision amount we want to put manually   and whenever the invocie is posted for that SO  the total amount should be credited in the sold to party customer code  and the commision amount separatly  for the commion agent , can u give the stpe for this  we have to create differett customer code or vendor  code for the agent  how to add that commision amount in the sales order header   and that amount to be pay  only aftre receiving th epayment from customer.
    regards,
    zafar

    Hi.
    I think you can create a sales / service partner (Vendor) and do mintain partner determination. also maintain a condition type with an option to feed value manually, it should be assigned to an accruals "ERU" type conditionm in Pricing procedure ( some what like Rebate processing) and further you also refer to the following link for assistance
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/105c1ac6-9d56-2d10-af9e-c747c98439d8?QuickLink=index&overridelayout=true
    Regards
    DSR
    Edited by: D.Srinivasa Rao on Nov 28, 2011 1:27 PM

  • Is it possible to send a copy of invoice as PDF files to sales agents

    Hi All,
    Please let me know my client needs this below requirement,
    Is it possible to send a copy of invoice as PDF files to sales agents by e-mail triggered by the invoicing or is it only possible manually through ZPDF?
    Best Regards
    Aditya

    Hi,
    You need to setup an output for this, with partner fundtion 'External Send' and  Comunication strategy.
    There is SAP note 454893 available, please refer the same.
    regards
    Vivek.

  • Sales Person Commission Payout Report

    Good Day Mentors,
    I am currently working on a report that ought to compute for Sales Agent commission.
    Sources for gross sales computation is A/R Invoice(OINV) and A/R Credit Memo (ORIN).
    Client also wants to exclude the VAT from the computation of gross sales as well as all credit memos issued for a specific period in which the commission of the agent will be based on.
    DocTotal in both OINV and ORIN already have the VAT(VatSumSy) included in them upon commit into the databse. So i subtracted it from the DocTotal. The formula I came up with
    OINV.DocTotal - OINV.VatSumSy -  ORIN.DocTotal - ORIN.VatSumSy
    Now, the main source of the problem is the part in which the report ought to have a date range facility. Since the commissions for the sales people will be computed every month.
    Edited by: Sean Yu on Apr 4, 2009 9:46 AM

    I am now trying to incorporate both queries into  a single one.
    Current code
    /*SELECT FROM [dbo].[OINV] T1*/
    declare @fromdate as datetime
       /* WHERE */
    set @fromdate=   /* T1.[DocDate] */
                  '[%0]'
       /*SELECT FROM dbo.OINV T3*/
    declare @tilldate as datetime
       /* WHERE */
    set @tilldate=   /* T1.[DocDate] */
                  '[%1]'
    SELECT T0.[ChannlBP] 'Upline Code',
           (SELECT CardName
           FROM   OCRD
           WHERE  CardCode = T0.CHannlBP) 'Upline Name',
           T0.[CardCode] 'Downline Code',
           T0.[CardName] 'Downline Name',
           SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy)  'GrossSales',
           Rate = CASE WHEN ( (SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) <= 10000) THEN .03 WHEN ((SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) > 10000
           AND (SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) <= 49999) THEN .025 WHEN ((SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) > 50000
           AND (SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) <= 149999) THEN .02 WHEN ( (SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) > 150000) THEN .015 ELSE 0 END,
           (SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) * (CASE WHEN ( (SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) <= 10000) THEN .03 WHEN ((SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) > 10000
           AND (SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) <= 49999) THEN .025 WHEN ((SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) > 50000
           AND (SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) <= 149999) THEN .02 WHEN ( (SUM (T1.[DocTotal]) - SUM (T1.VatSumSy) - SUM (T2.[DocTotal]) - SUM (T2.VatSumSy) ) > 150000) THEN .015 ELSE 0 END) 'Commission'
    FROM   OCRD T0 INNER JOIN OINV T1 ON T0.CardCode = T1.CardCode INNER JOIN ORIN T2 ON T1.CardCode = T2.CardCode
    WHERE  T1.[DocDate] >= @fromdate
           AND T1.[DocDate] <= @tilldate
           AND T2.[DocDate] >= @fromdate
           AND T2.[DocDate] <= @tilldate
           AND T0.[ChannlBP] IS NOT NULL
           AND T0.[frozenFor] LIKE '%N'
           OR T0.[validFor] LIKE '%Y' GROUP BY T0.[ChannlBP], T0.[CardCode], T0.[CardName]
    The query should be able to show all of the Sales people who have Credit Memos issues to them as well as Sales people who don;t have Cm's issued to them.
    But what I am currently getting from my query above are the people who only have CM's issued to them. I am unable to get the sales people who don't have CM's  in ORIN table for the specified date range, but of course have records in OINV table.
    Did I link the tables incorrectly?
    Also, the commission rate is also being computed in this query using CASE function as you can see from the code above. Which makes the query complex and very rigid. Is there also a good way of handling the commission rate? I am also thinking that in the future, client might change the commission rate. Be it increase the ranges or change the rate for each range. Is there a good way of handling that other than an AddOn? Since currently everything is hardcoded in the query.
    Thanks in advance for everyone's time,
    Sean

  • Characteristic Name of Sales Employee in COPA report is not appear

    Characteristic Name of Sales Employee in COPA report is not appear, it is just the a Code of Sales Employee
    1.I created Characteristic Derivation t.code KEDR Table lookup PA0001 using condition Origin GLOBAL USERTEMP1 until USERTEMP6
    2.During Test Analyze Derivation there was result “Derivation was not carried out. Reason: Not fulfilled” in Field USERTEMP6
    How to solve this problem?
    Thanks & Regards,
    Cyrenia

    You need to use Characteristic Derivations for this to work.
    In transaction KEDR, maintain a "look-up" and provide your Reference table as VBPA and your target field will be the COPA Characteristic that you defined for the Partner Function Sales Employee.
    Select the Characteristics that will allow you to determine the Sales Employee (Partner Function = "VE") and then map the KUNNR field to the COPA Value Field.
    This will allow the flow of Sales Employee Values into COPA and hence the description as well.
    Hope this helps.
    Cheers.

  • Listing sales order with va05 transaction code

    Hi friends,
    I have updated partner function 'SH' in va05. For partner function 'SH' I can list only new orders i.e orders created after making this changes. How do i view older sales orders with the above Partner function. Please advise
    Regards,
    Uday

    Dear freind,
    If you give no date in the VA05 transaction it will show you all the order for that particlular Customer.
    If you want to filter you can do it by further seclectiuon crietera...
    Hope this helps you ...
    award points if helpful.,
    regards,
    Amlan

  • Use a delivers agent on a report with "Is Prompted" column, 11g

    Hi all,
    I have a report with is prompted filter on a column. And the report are working fine.
    But now the customer have asked me to set up a deliver agent on the report. And when the agent is running the report it is not working.
    The column that is set to "is prompted" has a expression in business layer and in that expression we are using a session variable. If I changes "is prompted" to a static filter or no filter the agent works fine. I'm getting this error when the agent tries to run the report:
    [nQSError: 77006] Oracle BI Presentation Server Error: A fatal error occurred while processing the request. The server responded with: Odbc driver returned an error (SQLExecDirectW).
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 23006] The session variable, NQ_SESSION.access_voc, has no value definition. (HY000)
    SQL Issued: {call NQSGetQueryColumnInfo('SELECT "Espor voc fields"."Field name" FROM "Esporingdata"')}
    SQL Issued: SELECT "Espor voc fields"."Field name" FROM "Esporingdata"
    Error Codes: AGEGTYVF
    AgentID: /users/weblogic/Linus_test_agent
    ...Trying main Agent loop again.... Sleeping for 6 seconds.[nQSError: 77006] Oracle BI Presentation Server Error: A fatal error occurred while processing the request. The server responded with: Odbc driver returned an error (SQLExecDirectW).
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 23006] The session variable, NQ_SESSION.access_voc, has no value definition. (HY000)
    SQL Issued: {call NQSGetQueryColumnInfo('SELECT "Espor voc fields"."Field name" FROM "Esporingdata"')}
    SQL Issued: SELECT "Espor voc fields"."Field name" FROM "Esporingdata"
    Error Codes: AGEGTYVF
    AgentID: /users/weblogic/Linus_test_agent
    ...Trying main Agent loop again.... Sleeping for 8 seconds.[nQSError: 77006] Oracle BI Presentation Server Error: A fatal error occurred while processing the request. The server responded with: Odbc driver returned an error (SQLExecDirectW).
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 23006] The session variable, NQ_SESSION.access_voc, has no value definition. (HY000)
    SQL Issued: {call NQSGetQueryColumnInfo('SELECT "Espor voc fields"."Field name" FROM "Esporingdata"')}
    SQL Issued: SELECT "Espor voc fields"."Field name" FROM "Esporingdata"
    Any Help Much Appreciated
    Linus

    Hi Linus,
    Where you able to solve this issue or do you have additional findings to your issue? I'm facing a similar problem: a session variable has no value defined when running from the agent.
    Please let me know,
    Thanks,
    Santiago

  • Sales Order wise contribution report

    Hi Guru's,
    I am using transaction code KVBI to get sales order wise contribution reports for make to order materials.
    Similarly, i want to have such report for male to stock strategy materials.... so can i get it?
    Regards,
    Abhishek

    Thanks for reply Mr.amit,
    Before posted this thread i searched in the SDN forum i got the 2 links based on that i tried but i didn't get satisfied because why
    i am asking this report is mainly required to my client but this is report also normal for each and every manufacturing industries
    that is the reason i think it is available in Standard SAP
    and also i tried another T-Codes SAP1, SAP2 but in that also i couldn't able to find out
    please guide me how to get my report
    Regrads,
    Prasanna

  • Sales tax by state report in BI

    Hi Gurus,
    I have a requirement to design sales tax by state report in BI.
    Could you pls suggest how i need to approach.
    What is the standard datasource and standard DSO and cube.
    Do we have any standard sales tax by state standard query in BI.
    Regards
    Parnith

    Hi,
    I am not sure i got your question correctly (as you have not provided lot of information, its a generic question), so my answer will be, you can use the Datasource 2LIS_13_VDITM, which has the field MWSBP(tax), which brings tax information to BW and the same datasource also has Division, Sales District ,Sales Office etc, which can be used to derive State and you can stage this data in a billing item DSO (go to RSA1-- Business Content--> Datasources (select 2LIS_13_VDITM) and change grouping to Dataflow after and you will information about staging this datasource in BW (DSO, Cubes etc ).
    Cheers,
    CK

  • Sales Agent Commission

    Dear Experts,
    Good Day.
    I need your opinion/solution about a requirement from my client.
    The client is using the invoice list to calculate the sales commission that will be paid to the sales agent/broker. This sales agent is configured customer in SD.;
    A sales commission condition type is created in the master and updated in the Sales Order where the condition unit currency is foreign currency (USD)and condition currency is local currency (MYR). During sales document pricing, the final condition amount will be converted from the local currency to the document header currency based on the exchange rate and the same goes during billing posting.
    Invoice list is created with reference to the billing document to post the sales commission individually once the original billing is cleared. The issue is that the vendor (sales agent) is invoicing my client in local currency and the posting are based on the foreign currency in the system. Finance department is really having a hard time to reconcile the postings and payment.
    Please, can you expert throw some light to solve this issue.
    Many thanks,
    Sutha Subramaniam. 

    Hi
    The payment is generally against each sale transaction and the client process is adhoc.
    Some times they pay after order and some times after delivery .
    They even settle the commission once in a quarter also.
    Could u explain me further
    Thanks
    Srikanth

  • Is it possible to send a copy of invoice as PDF files to sales agents by e-

    Hi All,
    Please let me know my client needs this below requirement,
    Is it possible to send a copy of invoice as PDF files to sales agents by e-mail triggered by the invoicing or is it only possible manually through ZPDF?
    Best Regards
    Aditya

    Hi,
    Yes,It is possible to send an email as PDF file to desired people.
    For this we have to use the medium as "5(External send)".
    Also maintain the further data as "4".
    Ask your ABAPer to write a code to send the e-mail to sales agents.
    We have a similar requirement in our project also to send a PDF.We have developed a "Z" program and developed a "Z" smartform too.
    Regards,
    Krishna.

  • Last stages of Sales Opportunity in XL reporter

    Hi all!
    I would like to print last stage of Sale opportunity in Xl reporter. NOw, i only show all all stages in report but i want only last satges.
    Could you help me!
    Thanks!

    Hi
    Please take the stages in the Parameter. so that you can take the report as per the stages
    Hope it help
    Ashish Gupte

  • The shipment should not allow to save without partner forwarrding agent.

    The CR (forwarding agent) partner is set as Mandatory in the configuration for partner procedure TR, but you can save a shipment without this partner function.  We are only using Shipment type Z003 and the TR procedure is assigned, and the CR partner is set as mandatory but the system is not requiring it.  Why isn't the Mandatory flag working in create mode?  If there is a CR on a shipment already, it will not let you delete it, but it will let you create a shipment and save without the CR partner.  See Shipmentxxx in DX1, it was created and saved without any partners on the partner tab.
    The shipment should not allow to save without partner forwarrding agent.

    Hi,
    Check config for 'Set Up Partner Determination for Shipments'.
    I believe the Partner function for Forwarding agent is FA and here you are talking about CR.
    Also make sure you Partner determination procedure is reflecting in your Shipment type.
    Regards,
    Amit

Maybe you are looking for

  • What is PKCS7 and how to use it?

    Hi! I'm in a project in which I must send a file encrypted with a key that is also encrypted with a public key, the receiver must decrypt the key using his(her) private key, and then, using that decrypted key to in turn decrypt the file. I've been to

  • Can we set default value to dynamic parameter?

    <font size="3"><font face="Times New Roman">Hi,</font></font><font size="3"><font face="Times New Roman"><span> </span>I am using BO XI and CR XI.</font></font><font size="3"><font face="Times New Roman"><span> </span>I want to set default value for

  • Spacing between Words of Variables in Header

    I have spent a lot of time on this and tried everything I can think of, and I have been unable to find a similar thread on this forum. I have now given up and come here for some guidance. The template I am using is set up with A4 paper size, double-s

  • How to access survey and poll portal?

    hi, i got through the document and that say, this is the out of box facility. how can i make a portal link, by clicking that i can access the survey and poll facility? please give me steps? dhananjay

  • Updating and Editing Table View

    I have been facing a very specific problem. I have a Table View populated with certain data. My objective is to edit the data in the table. For that I select a particular row of data and click on a button 'Edit'. This takes me to a new Scene, where t