Displaying Record Owner in Opportunity-Product Report

Hello,
How do I display the owner of the record's name in a column for an Opportunity-Product report.
When we display the opportunity-owner currently we see the role instead of the user. When we display the created by we see the role as well.
Instead of "Joe" we would see "Sales Rep"

The opportunity Owner should show the Alias of the Opportunity Owner like JSMITH (i.e if the Alias for Joe Smith is JSMITH). Make sure on your opportunity Owner field is currently populated correctly. Make sure you are pulling Owner data from the Opportunity Section.
If it's not working then your particular instance is having some bug - Am able to populate this info correctly.

Similar Messages

  • Opportunity Product reporting with # of Periods and Frequency

    We are just about to roll out out a business unit and they will be using the frequency, number of periods, and the start/close date fields on the revenue record.
    In staging, I created a test report and it 'explodes' the product to have 12 individual entires, since I picked 12 as the number of periods. I set the qty to 60 and all 11 months have 60 but the first month has 61. Is there a reason for that?

    Product: you do get the dimensions and facts for the Product object... so you'd build a report with Product information
    Opportunity-Product: you do get dimensions and facts for the Products related to an opportunity... so you'd build a report with Opportunity and Product information
    Antonio
    Bexpert, Brazil

  • Opportunity Products report - Unspecified rows

    Hi All,
    I tried to create a report that shows all product lines per opportunity. However the report allways shows an unspecified at the Product Name Columns, even if there are products specified in the opportunity it adds an extra row with 'unspecified'. I used an CASE statement to make the row blank:
    CASE WHEN Product."Product Name"='Unspecified' THEN NULL ELSE Product."Product Name" END
    But, i can't make the row disappear completely. Is the only way to get this richt to make an union (one report with filter on Product Name <> 'Unspecified' and the second with Product Name = 'Unspecified') or are there easier ways?
    Thanks in advance for your help!
    Tim.

    Tim,
    i've had the same problem with all of the Opty-Product reporting and I just add a filter Product Name not equal to unspecified and it removes them all. I asked Customer Care about it and got this back:
    Why does an Opportunity-Product integration create 2 products?
    I recieved confirmation from PM that these records are expected and are automatically created when using recurring revenue. If you do not use the recurring revenue fields suchs as #number of periods and frequency, these records will not be created and the results of the export will be as you expected.
    cheers
    Alex

  • Deleting Opportunity Products

    Hello,
    We imported opportunity products based on a set of external ID's. Somewhere along the lines it created duplicate records against the opportunities. We then tried to run a batch delete on all of the problem opportunities as to my knowledge you cannot batch delete opportunity products?
    The batch delete worked for opportunities that did not have the duplicate entries but failed for the opportunties with duplications. The error message for these records was "This record cannot be deleted". Any ideas of any work arounds?

    Thanks Bob,
    Any ideas how to remove the opportunities so that the opportunity products are also removed? I tried a batch delete but the records with duplicate opportunity-products would not delete, with the error "This Record Can Not Be Delted". The other opportunities that did not have the duplicate opportunity-products deleted successfully.
    Regards
    Oli

  • Filter on a Report to display  records only  from last 12 months

    Hi Folks,
    I have a requirement where I have to display Records for last 12 months. Following is the Filter that I am using
    Opportunity."Close Date" >= TIMESTAMPADD(SQL_TSI_MONTH, 0, TIMESTAMPADD(SQL_TSI_DAY, -(DAY(CURRENT_DATE)-1), CURRENT_DATE)) AND Opportunity."Close Date" <= TIMESTAMPADD(SQL_TSI_MONTH, 12, TIMESTAMPADD(SQL_TSI_DAY, -(DAY(CURRENT_DATE)), CURRENT_DATE))
    But this is showing me records for next 12 months.
    How can I solve this Issue??
    Thanks and Regards,
    Amit Koul

    Dinesh,
    The filter that you suggested works for last 365days, if you try to create a simple report with just Date field in it, you will come to know the difference.
    Using the filter suggested by you it will show me records from 27th Jan 2008 since today the date is 27th Jan 2009.
    I want it to filter records for last 12 months including Jan 2009.(so the interval comes to be Feb 2008 to Jan 2009)
    Hope I made sense!!
    Thanks and Regards,
    Amit koul
    Edited by: Amit Koul on Jan 27, 2009 7:27 PM

  • Mass Updating Opportunity Product Owner field

    We need to change the owner of hundreds of opportunities. We were able to do a batch update on the Owner/Account Manager field for the opportunity, but the opportunity product records still have the old owner.
    Is there a way to mass updates that field without doing an export then reimport with an over-ride?

    This could be done using web services.

  • Opportunity Product Revenue report using Narrative option

    Hi,
    I have created quote report using "Opportunity product revenue report" with the use of narrative option and its working fine but the problem here is if opportunity has multiple product revenue items it shows in multiple quotes. For me it should show in a same quotation if there are multiple opportunity product revenue items in a opportunity. Could anyone help me how can i achieve this.
    Any help would be appreciated. Thanks in advance
    Thanks & Regards
    Ambarish

    You need to modify report and club all revenue to single item / row.

  • Indexed field of Reporting: Opportunity Product Revenues

    Hi all.
    I am using the Indexed field in Revenue.
    "Analytics: Opportunity Product Revenue History" can be found in the Indexed field of the revenue.
    However, "Reporting: Opportunity Product Revenues" can not find it in.
    How can I find the Indexed field of the revenue in Opportunity Product Revenues report ?
    thanks,
    takashi
    Edited by: user10934060 on 2011/11/15 1:56

    Derrick,
    I need a bit more information as to what you are trying to achieve, if you are trying to reflect the product revenue on an opty as a report then filter that opty ID in your report URL in the webapplet and it will work. I've done it.
    cheers
    Alex

  • Production report displaying months

    hi ,
    can anyone help me in getting month wise production report...  i e from jan to dec.... it shoulld display all months and show month wise production....
    example
    ITEM ITEM DESCRIPTION   JAN FEB MARCH
    DS01   SCREW                 10     10       30
    regards,
    Vignesh

    Hi Vignesh,
    Try this....
    select T1.ItemCode,T1.Dscription,
    sum(Case DATENAME(month,T0.Docdate) when 'January' then T1.Quantity else 0 end) Jan,
    sum(Case DATENAME(month,T0.Docdate) when 'February' then T1.Quantity else 0 end) Feb,
    sum(Case DATENAME(month,T0.Docdate) when 'March' then T1.Quantity else 0 end) Mar,
    sum(Case DATENAME(month,T0.Docdate) when 'April' then T1.Quantity else 0 end) Apr,
    sum(Case DATENAME(month,T0.Docdate) when 'May' then T1.Quantity else 0 end) May,
    sum(Case DATENAME(month,T0.Docdate) when 'June' then T1.Quantity else 0 end) Jun,
    sum(Case DATENAME(month,T0.Docdate) when 'July' then T1.Quantity else 0 end) Jul,
    sum(Case DATENAME(month,T0.Docdate) when 'August' then T1.Quantity else 0 end) Aug,
    sum(Case DATENAME(month,T0.Docdate) when 'September' then T1.Quantity else 0 end) Sep,
    sum(Case DATENAME(month,T0.Docdate) when 'October' then T1.Quantity else 0 end) Oct,
    sum(Case DATENAME(month,T0.Docdate) when 'November' then T1.Quantity else 0 end) Nov,
    sum(Case DATENAME(month,T0.Docdate) when 'December' then T1.Quantity else 0 end) Dec
    from oign T0
    inner join ign1 T1 on T0.Docentry=T1.Docentry
    Where T0.JrnlMemo like 'Receipt from %'
    group by DATENAME(month,T0.Docdate),T1.ItemCode,T1.Dscription
    Hope it will help you...........
    Thanks
    Sachin

  • Crystal Reports Displaying records where field 1 is populated but field 2 is empty

    i have 3 fields in my report.
    Job id, date on hold, date off hold
    I need to display records where there is a value for on hold but where off hold is blank so I can see which jobs are still on hold. How do i do this?
    thanks in advance

    Have you tried adding criteria of:
    Not IsNull() and
    IsNull()?
    Alastair

  • Does Reports have an internal manner of displaying records ?

    Hi all,
    Even though there is an order by clause in the code of a query of a group , is there something else internal to Reports which directs it to display records ?

    Hi,
    the order by clause in the query has only impact for the lowest group in a query. For higher groups the Break Order Property of a column is relevant (and vice versa).
    Regards
    Rainer

  • How can i use dataloader ondemand update to opportunity product  records

    I have a requirement to update all records in opportunity product revenue record types. I cannot use import wizard as my records does not have external unique id.
    I'm trying to load theu dataloader ondemand. oracle suggested to use -duplicatecheckoption to choose rowid.
    I get some error as generic.
    Anyone has done this before any suggestions.
    Thanks
    Pallavi

    Bobb,
    Correct me If I am wrong, but web services or data loader both require some unique identifier to update right? And External Unique ID is not filled and row id is not an option as of now(not available in import tool). So how will webservices or data loader check for duplicates?
    thanks
    Gaurav

  • Opportunity Product Weighted Field?

    Is there a opportunity product revenue weighted field? I saw that the forecast area has weighted values. I did not see a field, but just want to make sure I am not missing anything.. I would like to have the weighted value displayed in a report.

    You may be confusing Opportunity fields with Product fields.
    On the Opportunity, you have the following fields:
    (Opportunity) Revenue
    (Opportunity) Probability
    (Opportunity) Expected Revenue (Opportunity Revenue * Opportunity Probability)
    On the Opportunity-Product, you also have these fields:
    (Product) Revenue
    (Product) Probability
    (Product) Expected Revenue (Product Revenue * Product Probability)
    When you are using Opportunity Forecasting, the Forecast uses the Opportunity fields. When you are using Product Revenue Forecasting, the Forecast uses the Opportunity-Product fields. You can only forecast one or the other.
    Mike L

  • Performing Intersect on Opportunity History and Opportunity Product Revenue

    I've reviewed as many postings on Intesect and Union as I possibly can, but I'm still stumped.
    In my case, I'd like to put data from the Opportunity History together with the Opportunity Product Revenue History. I can get it somewhat close to what I'd expect, but I'm not quite there.
    What I want to do is report on some info associated with an Opportunity (including Primary Contact info) and associated Opportunity Product Revenue (like Deductible).
    What I THINK I want is an INTERSECTION. Let's say take the info from Opportunity History associated with a particular Opportunity ID and append (add more columns) from Opportunity Product Revenue History that correspond with that Opportunity ID.
    Well, an INTERSECT gives me no results.
    A UNION does give me results, but I get one row that has Opportunity History info followed by another row that has the info for the Opportunity Product Revenue History, but not the Opportunity History. How do I get this to be one row? (I'm assuming I'll still get multiple rows as there can be several Opportunity Product Revenue records per Opportunity.)

    I thought that might get somewhere. I tried a Pivot Table. By default, I still was getting two lines. I tweaked a few things (like using First as the aggregation rule on most of the columns). I got down to one line. It LOOKED good (though I didn't confirm the results). Unfortunately, I ultimately need to download the file. When I downloaded I was back to the two lines for each Opportunity scenario.
    Other ideas?

  • Help with pushing records to next page in report

    Hi,
    I am trrying to create a report that will display records on seperate pages. My record set has a common reference number with many other detail columns. So an example would be:
    ref num 1         detail        detail        detail
    ref num 1         detail        detail        detail
    ref num 1         detail        detail        detail
    ref num 2         detail        detail        detail
    ref num 2         detail        detail        detail
    ref num 2         detail        detail        detail
    and so on...
    I need the report to take the records from ref num1 for the first page (or more if necessary) and then start a new page for the next record and so on. I have tried using the "New page after" function with no sucess and really hope someone here has overcome this and can help.
    Thanks a mil
    Phil.

    Hi Sastry,
    The report is actually a batch of invoices. I have a stored Procedure returning the records of the invoices and the report template is so far set up as follows,
    the page header has unique invoice details listed there.
    --- name and address etc
    the details section is supressed
    there is a group footer section with the repeating product details of the invoice there.
    --- date, product 1, amount, total
    --- date, product 2, amount, total  etc...
    the report is sorted by the date of the products in the croup section
    there is a page footer section similar to the page header.
    --- totals information
    when the report is for one invocie it will work as the products all appear in the group section as expected. when the report is for more than one invoice it mixes all the records up and prints two invoices with incorrect details. the record set returned by the stored procedure is as per my first thread.
    I hope this makes some sense. I have not had much crystal reports training and may need to start this one from scratch. Bacically we have a system that uses crystal to print our invoices. The system will only ever output one invoice record at a time. I copied the report template hoping i could adapt it to be able to print many records at a time as a report.
    Thanks a mil for you time all the same.

Maybe you are looking for