Report not display graph with desformat=HTML with PDF runs ok

Hi, I have a report (.rdf) which have a graph, when I run on oas with desformat=PDF it runs ok:
https://oasff:4444/reports/rwservlet?genprod&report=grafico.rdf&desformat=PDF
, but when i run with desformat=HTML or HTMLCSS doesn't show the graph:
https://oasff:4444/reports/rwservlet?genprod&report=grafico.rdf&desformat=HTML
i found on /opt/oracle/bi_forms/reports/cache the htm file and the jpg file, if i copy this files and run it on my pc on my jdeveloper shows the jpg with the graph ok, but on oas doesn't work......
any ideas .......
my oas is 10.1.2.3.0 on suse 10. And my reports is 10g.
thanks.

What do you mean by "different"? (In our
experience, Oracle html output has too many
columns, which are not visible in the
browser but are obvious in Excel.)
We build our own html programmatically, so
that Excel matches the browser more closely.
-- Allan Plumb

Similar Messages

  • Crystal 8.5 report not displaying graphs

    I have an issue where a client is using MYOB RetailManager v8 which uses Crystal 8.5 engine.
    I have written a report that includes Graphs for him. The report works fine on PC with Crystal 8.5 or XI installed but does not print graphs on PC with the MYOB RetailManager Crystal engine.
    I suspect missing .dll files. Could someone confirm what is required. Client has installed the Runtime Crystal 8.5 available from jeff-net.com, but still cannot display the graphs.

    Thanks for that Graham, but that .dll is present and registered.
    I am getting an error message
    "Error occurred retrieving key words in report file in
    clsCrystal:rptGetKeyWordsInRepor tFile.
    Invalid TLV record."
    (yes there is a gap between the r and t of Repor t)
    What .dll could cause that?

  • Why Reports format behaves different in Excel and browser(if desformat=html or pdf)?

    1-Why Reports format behaves different in Excel and browser(if desformat=html or pdf)?
    2-I made three queries Q1,Q2 & Q3 and linked them with proper field links but suppose Q3 returns no records for some Q1&Q2 records & when the report runs for delimited options it reflects only those records as output for which all the queries return records(if Q3 returns no record then the related records from queries Q1,Q2 don't reflect) while the output in desformat=html or pdf is ok..
    can you please resolve my problems
    ( I have installed patch 5a in my report server machine)
    Thanks & Regds.
    Suneel
    null

    What do you mean by "different"? (In our
    experience, Oracle html output has too many
    columns, which are not visible in the
    browser but are obvious in Excel.)
    We build our own html programmatically, so
    that Excel matches the browser more closely.
    -- Allan Plumb

  • SSRS report not displaying data in correct order

    Guys,
    I have a SSRS 2012 report not displaying returned records from SQL in the correct order.  Running the stored procedure in SSMS and supplying the parameter values returns the data correctly and running Query Designer in SSRS using the stored procedure
    on the dataset in question, likewise returns the data correctly.  Only when I run the actual report does the data display incorrectly(always last name order).  I've done similar reporting using very similar stored procedures and I've never had this
    problem.  Below is the stored procedure.  "@SortBy" is the parameter with the sorting value. 1=Due Date; 2=Denial Amt and 3=Last name and is passed by SSRS to SQL.  Wish I could supply screen shots.  
    Thanks for any help,
    Dave
    ALTER PROCEDURE [dbo].[RAC_PT_List]
    @Level as int,
    @SortBy as int,
    @PTLName as varchar(30) = NULL,
    @User as varchar(10) = NULL
    AS
    SELECT pat.headerID,
    pat.PT_LName + ', ' + pat.PT_FName AS PTName,
    pat.PT_AcctNo,
    rco.RCO_CLMREF,
    rco.RCO_AppealLevel,
    rco.RCO_LevelNo,
    rco.RCO_AuditorStatus,
    let.LET_DEN_DueDate,
    CONVERT(varchar(12),let.LET_DEN_DueDate) as DueDate,
    let.LET_DEN_Dollars,
    let.userID
    FROM Master_PT_List pat
    INNER JOIN Master_RCO_Work rco on RCO.PT_headerID = pat.headerID
    INNER JOIN Master_Letters let on LET.PT_headerID = pat.headerID
    WHERE (@PTLName IS NULL OR(pat.PT_LName LIKE + '%' + @PTLName + '%'))
    AND (rco.RCO_LevelNo = @Level)
    AND (let.userID = @User)
    --AND (rco.RCO_AuditorStatus <> 'Closed' and rco.RCO_AdminStatus <> 'Closed')
    ORDER BY 
    CASE WHEN @SortBy = '1' THEN LET_DEN_DueDate
    END
    DESC,
    CASE WHEN @SortBy = '2' THEN let.LET_DEN_Dollars
    END
    DESC,
    CASE WHEN @SortBy = '3' THEN pat.PT_LName
    END

    Hi DaveMac1960,
    According to your description, when you render data in report, you find it always shows the data with unexpected order. Right?
    In Reporting Services, if we don't set any sorting in tablix, it will order the data as your query in SSMS or Query Builder. In some scenario, for example, we add parent group for data rows, it will have the rows sort by the group on data field by default,
    and the "order by" in your query will be ignored. So please check the Sorting tab in Tablix Properties, in this scenario, we suggest you delete any sorting in the Sorting tab so that the "Order By" clause can work.
    Reference:
    Sort Data in a Data Region (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Report not displaying data from one of the infoproviders

    Hi Experts,
    Issue: Report not displaying data from one of the infoproviders
    I have a report 'ReportA' which has multiprovider MP1 as the source.
    MP1 has two Infocubes IC1, IC2 in its design.
    Now, when i execute the report, data from IC1 is displayed. But no data from IC2 is displayed.
    Is there a setting i need to enable in MP1 ? or is there anything else that needs to be enabled ?
    Please reply.
    Regards,
    Suraj S Nair

    Hi All,
    When i display data directly from the multi provider, without any restrictions, i cannot view the data from infocube IC2.
    I feel its not an issue with the Query. It must be a problem with the setting in the Multiprovider MP1.
    Infocube IC2 is a copy of Infocube IC1. Multiprovider MP1 first only had IC1 in its design. It was recently IC2 was also included.
    I checked the Characteristics, all of them are assigned corectly.
    Now, this issue sure has something to do wiht the setting of Multiprovider or please correct me if wrong.
    Regards,
    Suraj S Nair

  • Report not display in report viewer

    i try to show ssrsc reports in asp.net web page using report viewer
    code
    protected void Button1_Click(object sender, EventArgs e)
    ReportViewer2.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
    ReportViewer2.ServerReport.ReportServerUrl = new Uri("http://lenovo-pc/ReportServer");
    ReportViewer2.ServerReport.ReportPath = "/Report Project1/Report1";
    ReportViewer2.ServerReport.Refresh();
    where is the probelm... and why report not display?

    Hello,
    In SSRS, the issue is occurred when the credential of the datasource is configured with “Prompt for credentials”. Please check if you configured the credential with "Stored Credential" of the datasource. You can refer to the following steps:
    Click the black arrow of the report, select Security option.
    Click Data Sources in the left pane.
    1) If it is a "A custom data source”, please check the item "Credentials stored securely in the report server", and type the valid username and password. If the user is a Windows Account, you need to check item "Use as Windows credentials when connecting
    to the data source".
    2) If it is a "A shared data source", please remember the path, and then open the data source from the Report Manager.  Make sure the credential type is "Credentials stored securely in the report server".
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • XML Publisher Report not displaying Chart/Graph in Excel Output

    Hi All,
    We are currently on Oracle EBS 11.5.10.2
    I am facing an issue with XML Publisher based report when i try to fetch the output in Excel.
    We have created an RTF in which i have embedded a graph. While viewing the output in PDF everything seems to work fine.
    however when i try to run the report with output as Excel the Graph is not displayed.
    Can you please let me know if i missed anything.
    Also it would be very helpful if someone can tell me how to get the output of Excel in .XLSX format.
    I have seen in various forums that you need to select the output type as Excel 2007, but i am not getting any such option while submitting the report.
    I am on EBS version 11.5.10.2 do we need to install any patch to get the output option.
    Regards,
    Sandeep

    Hi,
    Check this links that might help you..
    https://forums.oracle.com/thread/1018488
    http://docs.oracle.com/cd/E10091_01/doc/bip.1013/e05000/toc.htm
    Here the Exact solution from Oracle
    In the XML PUBLISHER ADMINISTRATOR Resp..
    Click the administration..
    then Click HTML Output
    Then in the Base Image URI Give the url of your application for example
    http://Test.Test.com:8000/OA_MEDIA/
    And then
    Image File Directory give this as per your application setup
    /u01/app/oracle/apps/apps_st/comn/java/classes/oracle/apps/media/
    Thanks & Regards
    Srikkanth.M

  • PowerDesigner 16.5 SP02 HTML Report not displaying diagrams in IE8

    I am creating an HTML report in PowerDesigner 16.5 SP02 and the diagrams are not displaying in IE8.
    I am aware that these are SVG images and that a download/install of SVGViewer would fix this BUT I don't want to have to download something to view the report in IE.
    I am also aware that IE11 displays the diagrams but we are using IE8 company wide due to legacy applications that were built on it.
    Any suggestions on how to fix this when building the report? Is it possible to change format of the diagrams? I know there is a way in PD Portal but can't seem to find a way to do it in PowerDesigner.
    Any help would be appreciated.
    Thanks in advance.

    Hi
    1st create the report using the wizard that uses the default image type.
    Go to the html source directory and find the image.
    Copy and rename it to a jpg / bmp / png etc
    Next create a custom template report.
    Once you are at the selection criteria - select the Graphic File from the Available items on the left.
    Import the graphic image as a .jpg / bmp /png etc
    continue selecting reporting options.
    once done - save as a new template
    Go back to your model and select the newly created reporting template and continue as per normal.
    Alternatively
    I know this is not the most elegant solution but you could try the following.
    1) Go the the directory where the html report files was saved.
    2) copy and rename the image file to the desired format i.e .gif / .jpg
    3) go to the html link in the report where the image is displayed.
    4) right-click the image and select inspect element
    5) check what the name of the source .html file is
    6) edit the html page and rename the image in the .html file to what you changed it to.
    7) save and refresh
    hope this helps
    regards
    JC

  • [Urgent Help Required] Report not displaying

    Dear All,
    Please help me with a issue in running report from form. I am using the following code to run a report from a form. The issue is that when i click the button i get all the success messages which are in the code and a new browser window opens but my report is not displaying. Please can any one help me with this issue. I have to submit my project with a week so this is very urgent.
    This is the code I am using:
    DECLARE
         v_report_id Report_Object;
         vc_report_job_id VARCHAR2(100); /* unique id for each Report request */
         vc_rep_status VARCHAR2(100); /* status of the Report job */
    BEGIN
         /* Get a handle to the Report Object itself. */
         v_report_id:= FIND_REPORT_OBJECT('REPORT7');
         message ('report found');
    SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESTYPE,cache);
         SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_DESFORMAT,'HTML');
         SET_REPORT_OBJECT_PROPERTY(v_report_id,REPORT_SERVER, 'repserver90');
         vc_report_job_id:=RUN_REPORT_OBJECT(v_report_id);
         message (vc_report_job_id);
         vc_rep_status := REPORT_OBJECT_STATUS(vc_report_job_id);
         message (vc_rep_status);
    IF vc_rep_status='FINISHED' THEN
         web.show_document 'http://localhost:8888/reports/rwservlet/getjobid='||vc_report_job_id ||'?server='|| 'repserver90','_blank');
         ELSE
              message ('Report failed with error message '||vc_rep_status);
         END IF;
    END;

    Any Help in this Regards will be highly appreciated

  • Report not displaying all values

    Experts,
      I am accessing BW report through portals .I have a variable  with drop down box in my report .When i click on the drop down box ,it is not showing only 200 values .
    but user want to see all  500 values in that drop down box.Is there any way to increase max no of hits.
    Any advice appreciated .
    Thanks
    Mano

    Manohar,
        try this code and let me know... directly insert  this code in HTML or In the properties of the Drop Down Web Item you could see "Maximum Number of the Displayed Values" assign this 0 in the Properties.
    or insert the cod ein HTML block:
    <object>
         <param name="OWNER" value="SAP_BW"/>
         <param name="CMD" value="GET_ITEM"/>
         <param name="NAME" value="DROPDOWNBOX_1"/>
         <param name="ITEM_CLASS" value="CL_RSR_WWW_ITEM_FILTER_DDOWN"/>
         <param name="DATA_PROVIDER" value="DATAPROVIDER_2"/>
         <b><param name="MAXVALUES" value="0"/></b>
    ITEM:            DROPDOWNBOX_1
    </object>
    all the best.
    try this code and let me know.
    Regards,
    Nagesh Ganisetti.

  • Crystal Report not displaying in production server

    I am using crystal report with ASP.Net web application which is working fine on client machine, client machine configuration is: •Windows 7 64bit •Visual studio 2012 •.Net framework 4.5 •SAP Crystal Reports, version 13.0.2000.0 I need to deploy it on Windows Server 2008 machine; however, when I deploy web application on this machine Crystal Report opens when do not display data. Kindly help to get around with this issue.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Thank you in advance

    Please see if the resources that come up using the search string 'crystal blank empty net' will help. Search box is in the top right corner.
    Also see:
    http://scn.sap.com/thread/3531678
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • KE30 Report not displaying value in element line  , why ?

    Dear COPA Experts ,
    IN KE30 ,there is a line element displaying for main prodcut (Value field used is Qty ) ,in the Same way i have created new element line for displaying by-prodcut qty (value field used is Qty ) ,after report generated and executed ,but it does not displaying the qty value of by -prodcut . but when drilling down to line item ,this KE30 is displaying line items of by-Prodcut .
    the cost elements groups used for both are different and when run KE24 i was able to see by-Prodcut qty .
    Can any one suggest ,wehther i have missed any setting ?
    Thanks
    Partha

    Hi DaveMac1960,
    According to your description, when you render data in report, you find it always shows the data with unexpected order. Right?
    In Reporting Services, if we don't set any sorting in tablix, it will order the data as your query in SSMS or Query Builder. In some scenario, for example, we add parent group for data rows, it will have the rows sort by the group on data field by default,
    and the "order by" in your query will be ignored. So please check the Sorting tab in Tablix Properties, in this scenario, we suggest you delete any sorting in the Sorting tab so that the "Order By" clause can work.
    Reference:
    Sort Data in a Data Region (Report Builder and SSRS)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • Conditionally displayed columns of interactive report not displayed

    We have an interactive report in which few of the columns have been defined with conditions for display.
    But on the interactive report page, when the conditions are satisfied these columns do not display in the report by default.
    These columns are found in the 'Select Columns' -> 'do not display' pane. Everytime the report is run, these columns need to be selected using the select column.
    Is there anyway to make the columns appear in the report by default, when conditions are true.

    Thanks Jari for your help.
    For this issue, we finally came up with a work around.
    we removed the conditions from all the columns then ran the application report page.
    Clicked on Select Columns and moved the columns from the do not display pane to the right pane.
    Ordered them as needed. Then saved the report as primary.
    Then again went to the edit page-> interactive report and applied the conditions to the necessary columns.
    and it worked.
    When I went to the report these columns are displayed by default.

  • OBIEE 11g: Report not displaying maximum rows per page

    I have an OBIEE report that is not displaying the maximum rows per page. When I click on the UP/DOWN arrow at the bottom of the report there is no change.

    Hi,
    Refer the below link.
    http://satyaobieesolutions.blogspot.in/2012/08/limit-row-in-table-and-graph-in-initial.html
    OR,
    https://supporthtml.oracle.com/ep/faces/secure/km/DocumentDisplay.jspx?id=1198961.1
    Add the following to your instanceconfig and then restart the presentation service.
    file path
    D:\Oracle\Middleware\instances\instance1\config\OracleBIPresentationServicesComponent\coreapplication_obips1\instanceconfig.xml just add below lines
    <Views>
    <Pivot>
    <MaxCells>6500000</MaxCells>
    <MaxVisibleColumns>100</MaxVisibleColumns>
    <MaxVisiblePages>100</MaxVisiblePages>
    <MaxVisibleRows>65000</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>500</DefaultRowsDisplayed>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>65000</DefaultRowsDisplayedInDownload>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DisableAutoPreview>false</DisableAutoPreview>
    </Pivot>
    <Table>
    <MaxCells>6500000</MaxCells>
    <MaxVisiblePages>100</MaxVisiblePages>
    <MaxVisibleRows>65000</MaxVisibleRows>
    <MaxVisibleSections>25</MaxVisibleSections>
    <DefaultRowsDisplayed>500</DefaultRowsDisplayed>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDelivery>75</DefaultRowsDisplayedInDelivery>
    <!--This Configuration setting is managed by Oracle Business Intelligence Enterprise Manager--><DefaultRowsDisplayedInDownload>65000</DefaultRowsDisplayedInDownload>
    </Table>
    </Views>
    Hope this help's
    Thanks,
    Satya

  • CR runtime 13: report not displayed in production environment

    Hi, i've the following situation..
    i'm developing on VS2010 a webapp using the final release of CRfVS2010 (s.o. is Windows 7 Ent x64) without any problems.
    Today i'm trying to test the app on a server (Windows Server 2003 with CR2008 redist already installed for a previous site) but i've some problems.
    First i've installed .net framework 4, then CRRuntime_32bit_13_0.msi, all installation ok.
    When i published the app (file system mode), the first time an error occurred, because was impossible to load log4net assembly. I've solved it inserting a new reference and setting 'copy locally' for publishing.
    Next error is that the report is not displayed
    I've copied from wwwroot the aspnet_client folder into my webapp folder.
    I've copied the report on the server into the right folder which i've granted everyone access to read and write.
    No report displayed
    I don't know to do because in the iis log or in the windows events i'm not found errors. I've tried to make a remote debug but the environment is not able to connect to the right process...
    Any ideas? Thanks al lot

    i've installed as domain admin (member of Administrators), everyone option were not present..
    i see in C:\Programmi\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common these folders
    Crystal Reports 2011\crystalreportviewers
    SAP BusinessObjects Enterprise XI 4.0\win32_x86
    it's all right?
    now i've uninstalled the package and launched installation with cl command
    msiexec /i crruntime_32bit_13_0.msi /Lime c:\temp\logfile.txt
    i don't see errors, the last messages are:
    Action start 9.37.51: CreateFolders.
    Action ended 9.37.51: CreateFolders. Return value 0.
    Action start 9.37.51: MoveFiles.
    Action ended 9.37.51: MoveFiles. Return value 1.
    Action start 9.37.51: InstallFiles.
    Action ended 9.37.53: InstallFiles. Return value 1.
    Action start 9.37.53: DuplicateFiles.
    Action ended 9.37.53: DuplicateFiles. Return value 1.
    Action start 9.37.53: PatchFiles.
    Action ended 9.37.53: PatchFiles. Return value 0.
    Action start 9.37.53: BindImage.
    Action ended 9.37.53: BindImage. Return value 1.
    Action start 9.37.53: InstallExecute.
    Action ended 9.39.39: InstallExecute. Return value 1.
    Action start 9.39.39: CreateShortcuts.
    Action ended 9.39.39: CreateShortcuts. Return value 0.
    Action start 9.39.39: RegisterClassInfo.
    Action ended 9.39.39: RegisterClassInfo. Return value 0.
    Action start 9.39.39: RegisterExtensionInfo.
    Action ended 9.39.39: RegisterExtensionInfo. Return value 0.
    Action start 9.39.39: RegisterProgIdInfo.
    Action ended 9.39.39: RegisterProgIdInfo. Return value 0.
    Action start 9.39.39: RegisterMIMEInfo.
    Action ended 9.39.39: RegisterMIMEInfo. Return value 0.
    Action start 9.39.39: WriteRegistryValues.
    Action ended 9.39.39: WriteRegistryValues. Return value 1.
    Action start 9.39.39: WriteIniValues.
    Action ended 9.39.39: WriteIniValues. Return value 1.
    Action start 9.39.39: WriteEnvironmentStrings.
    Action ended 9.39.39: WriteEnvironmentStrings. Return value 1.
    Action start 9.39.39: RegisterFonts.
    Action ended 9.39.39: RegisterFonts. Return value 1.
    Action start 9.39.39: InstallODBC.
    Action ended 9.39.39: InstallODBC. Return value 0.
    Action start 9.39.39: RegisterTypeLibraries.
    Action ended 9.39.39: RegisterTypeLibraries. Return value 0.
    Action start 9.39.39: SelfRegModules.
    Action ended 9.39.39: SelfRegModules. Return value 1.
    Action start 9.39.39: RegisterComPlus.
    Action ended 9.39.39: RegisterComPlus. Return value 0.
    Action start 9.39.39: InstallServices.
    Action ended 9.39.39: InstallServices. Return value 1.
    Action start 9.39.39: StartServices.
    Action ended 9.39.39: StartServices. Return value 1.
    Action start 9.39.39: RegisterUser.
    Action ended 9.39.39: RegisterUser. Return value 1.
    Action start 9.39.39: RegisterProduct.
    Action ended 9.39.40: RegisterProduct. Return value 1.
    Action start 9.39.40: PublishComponents.
    Action ended 9.39.40: PublishComponents. Return value 0.
    Action start 9.39.40: MsiPublishAssemblies.
    Action ended 9.39.53: MsiPublishAssemblies. Return value 1.
    Action start 9.39.53: PublishFeatures.
    Action ended 9.39.53: PublishFeatures. Return value 1.
    Action start 9.39.53: PublishProduct.
    Action ended 9.39.53: PublishProduct. Return value 1.
    Action start 9.39.53: InstallFinalize.
    Action ended 9.41.29: InstallFinalize. Return value 1.
    Action ended 9.41.29: INSTALL. Return value 1.
    Action ended 9.41.29: ExecuteAction. Return value 1.
    Action start 9.41.29: Exit_Dialog.
    Action ended 9.44.03: Exit_Dialog. Return value 1.
    Action ended 9.44.03: INSTALL. Return value 1.
    === Logging stopped: 30/11/2010  9.44.03 ===
    MSI (c) (9C:2C) [09:44:03:143]: Product: SAP Crystal Reports runtime engine for .NET Framework 4 (32-bit) -- Installation operation completed successfully.
    -> no success, same behaviour again
    [quote]The install log for CRVS2010 shows we do install version 2.1.10[quote]
    i don't understand this

Maybe you are looking for