Report Render as blank

Recently we have updted from Crystal Reports Basic for Visual Studio 2008 (Publisher:Business Objects,Version : 10.5.0.0) to Crystal Reports Server Embedded 2008 SP3 (Publisher:SAP AG,Version:
12.3.0.601,OEM edition).
Issue : Dataset is populating with data but report is rendering as a blank page.
Any help will be appreciated.

Same as Crystal Report Render as blank page

Similar Messages

  • Crystal Reports 9 ActiveXViewer blank report

    Post Author: dougbaker
    CA Forum: Crystal Reports
    I had this same problem with Crystal 11 and opened a case, but it was never resolved because the client who had the problem accepted the workaround and was only going to be using our software package for a short time longer.  I haven't yet found anything relevant in the KB.
    I support an ASP (not ASP.NET) web application that uses the Crystal Reports ActiveXViewer which is downloaded from a web site running IIS 6.
    The ActiveXViewer download to the IE browser (6 or 7, it doesn't seem to matter) works fine.  But the report is completely blank.  I can resize, refresh, and use the various controls for the viewer, but nothing changes.  If I export the report to a word doc, it works and the data is in the word doc.  So, the workaround for Crystal 11, to export to a word doc and then print that, works for Crystal 9 as well.  My customer installed SP5 on the IIS machine, but that did not make any difference.
    I'm just wondering if anybody has run into anything like this.

    Post Author: IdoMillet
    CA Forum: Crystal Reports
    Change the number of colors in the display setup.

  • SQL Server 2008 reporting services reports just went blank even though I can still download excel pdf etc....

    I'm quite stumped.  All of my reports are suddenly blank. I see the icons for the reports, and I can even download the PDF by exporting to Excel of PDF.
    Can someone help explain what may have happened to my instance and how to correct this?

    Hi JMitchell1,
    According to your description, your reports become blank when you access them on Report Manger. Right?
    In this scenario, does the exported file also show you a blank report? Since you can access the Report Manager successfully and open report means the report server is still working. It can be running out of memory. You can open the report with Report
    Builder to see if the report is damaged. Also try to restart report server and reconnect the database. If it's still not working, you may need to redeploy your reports.
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou 

  • Crystal Report Viewer shows blank but exporting shows results

    I'm getting a really strange issue when opening a report using the CrystalReportViewer class.  The Crystal Report Viewer shows up nicely in my webpage....but the report is completely blank.  When I click on the Export button in the Viewer & export to any format,  the results show up nicely.  Also when I right click on the Viewer page & view source, I can see all my report data there in Javascript....but for some reason it's just not being rendered on the page.
    I'm using Crystal Reports 2008 & I believe I've added the necessary jars & also included the entire crystalreportviewers folder (with all js files) in my Web folder.  Also, I don't see any exceptions in the crystal_exception_log_file.
    Any help would be greatly appreciated
    Thanks

    The same problem to me also.
        I was using the crystal report in visual studio 2008, the report was perfectly working. But when we migrated the project into visual studio 2010, the crystal report simply shows the blank report. But the javascript is having the actual data but not only rendered in the screen.
       Please anybody have valid solution for this, let us know.
    Thanks

  • Crystal Report Coming out Blank

    Hi Guys
    I have been struggling for days now with a my vb.net app that is using sql server as DB. I am creating a crystal report but it seems it always comes out blank when i use my dataset as the datasource. If i change the datasource to my-pc it all works fine
    but i dont want this as it will be using another server after deploying the app.
    I have created a CrystalReportViewer1 and a rptAllEmployeesSalaries.rpt crystal report .The report is displaying data from two tables which i used an INNER JOIN Select statement. This is my code on the form load event;
    Private Sub frmrptAllEmployees_Load(sender As Object, e As EventArgs) Handles Me.Load
            Dim rpt As New rptAllEmployeesSalaries 'The report created.         
            Dim myConnection As New SqlConnection(ConfigurationManager.ConnectionStrings("TMS.My.MySettings.xConnectionString").ConnectionString)
            Dim MyCommand As New SqlCommand()
            Dim myDA As New SqlDataAdapter()
            Dim myDS As New xDataSet4 'The DataSet  created.  
            myConnection.Open()
            Try
                MyCommand.CommandText = "SELECT employeeWork_infor.jobTitle, employeeWork_infor.status, employeeWork_infor.branch, employeeSalaries.salary, employeeWork_infor.employeeSurname, employeeWork_infor.employeeName, employeeWork_infor.employeeNo
    FROM employeeWork_infor FULL JOIN employeeSalaries ON employeeWork_infor.employeeID = employeeSalaries.employeeID"
                MyCommand.CommandType = CommandType.Text
                myDA.SelectCommand = MyCommand
                MyCommand.Connection = myConnection
                myDA.Fill(myDS, "employeeWork_infor")
                myDA.Fill(myDS, "employeeSalaries")
                rpt.SetDataSource(myDS)
                CrystalReportViewer1.RefreshReport()
                CrystalReportViewer1.ReportSource = rpt
            Catch Excep As Exception
                MessageBox.Show(Excep.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
            End Try
            myConnection.Close()
        End Sub
    End Class
    Please help my report always comes out blank im not sure why
    Trevor

    Thanx Venkat786
    1) i tried Running my T-sql query in SSMS and it does give me the data that i     want.
    2) I put the "myDS.WriteXml("c:\temp\result.xml")" before my set datasource line inside my code and it does write all the retrieved data to the result.xml file.
    3)When the designer previews the report it populates it with what looks like sample data and not data from my DB.
    From steps 1 & 2 it looks like all is working fine not sure if the result im getting on 3 is ok, but still after all this my report is still coming out blank.
    Would really appreciate it if you continue to assist...
     

  • Report is displaying blank?

    hi all
    my report with less parameters is working fine but when i increased parameters its showing me report can anyone guide me plz.its displaying blank page
    here is my codes:
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    plid ParamList;
    vParamValue number;
    BEGIN
    plid := Get_parameter_List('tmp');
    IF NOT Id_Null(plid) THEN
    Destroy_parameter_List( plid );
    END IF;
    plid := Create_parameter_List('tmp');
    add_parameter(plid,'P_num',text_parameter,to_char(:pays.num));
    add_parameter(plid,'p_code',text_parameter,to_char(:pays.code));
    add_parameter(plid,'p_basic',text_parameter,to_char(:pays.basic));
    add_parameter(plid,'p_housing',text_parameter,to_char(:pays.housing));
    add_parameter(plid,'p_water',text_parameter,to_char(:pays.ele_water));
    add_parameter(plid,'p_transport',text_parameter,to_char(:pays.transport));
    add_parameter(plid,'p_desc',text_parameter,to_char(:pays.description));
    add_parameter(plid,'p_amount',text_parameter,to_char(:pays.amount));
    add_parameter(plid,'p_deduct',text_parameter,to_char(:pays.deduction));
    add_parameter(plid,'p_net',text_parameter,to_char(:pays.net_amount));
    add_parameter(plid,'p_total',text_parameter,to_char(:pays.total));
    add_parameter(plid,'p_other',text_parameter,to_char(:pays.other));
    add_parameter(plid,'p_money',text_parameter,to_char(:pays.money_in_words));
    add_parameter(plid,'p_num2',text_parameter,to_char(:payslip.num));
    add_parameter(plid,'p_name',text_parameter,to_char(:payslip.employee_name));
    add_parameter(plid,'p_gender',text_parameter,to_char(:payslip.gender));
    add_parameter(plid,'p_nat',text_parameter,to_char(:payslip.nationality));
    add_parameter(plid,'p_martial',text_parameter,to_char(:payslip.martial_status));
    add_parameter(plid,'p_date',text_parameter,to_char(:payslip.join_date));
    add_parameter(plid,'p_job',text_parameter,to_char(:payslip.job_title));
    add_parameter(plid,'p_bank',text_parameter,to_char(:payslip.bank));
    add_parameter(plid,'p_account',text_parameter,to_char(:payslip.account_no));
    add_parameter(plid,'p_year',text_parameter,to_char(:payslip.year));
    Add_parameter(plid, 'PARAMFORM', TEXT_parameter, 'NO');
    repid := FIND_REPORT_OBJECT('REPORT6');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER, 'paramform=no');
    v_rep := RUN_REPORT_OBJECT(repid,plid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://sara:8889/reports/rwservlet/getjobid'
    ||substr(v_rep,instr(v_rep,'_',-1)+1)
    ||'?'
    ||'server=repserver&P_num='||:pays.num
    ||'&p_code'||:pays.code
    ||'&p_basic'
    ||:pays.basic||'&p_housing'
    ||:pays.housing||'&p_transport'||:pays.transport
    ||'&p_water'||:pays.ele_water||'&p_amount'
    ||:pays.amount||'&p_deduction'||:pays.deduction
    ||'&p_netamount'||:pays.net_amount
    ||'&p_total'||:pays.total||'&p_other'
    ||:pays.other||'&p_word'||:pays.money_in_words
    ||'&p_num2'||:payslip.num
    ||'&p_name'||:payslip.employee_name
    ||'&p_gender'||:payslip.gender||'&p_nat'
    ||:payslip.nationality||'&p_martial'
    ||:payslip.martial_status||'&p_date'
    ||:payslip.join_date||'&p_job'
    ||:payslip.job_title||'&p_bank'
    ||:payslip.bank||'&p_account'
    ||:payslip.account_no||'&p_year'
    ||:payslip.year||'&paramform=no','_blank');
    END;
    Edited by: SarahSarahSarah on Aug 16, 2009 4:20 AM
    Edited by: SarahSarahSarah on Aug 16, 2009 4:23 AM

    sarah,
    Check the query in the report. The reason for blank report will be the query returning blank. So check the report's query in SQL *PLUS or other softwares like TOAD, SQL Developer etc.
    Regards,
    Manu.

  • Instead of showing 0 in report its getting blank space

    Hi Sap Gurus.
    I am running the query in rsrt, in my report i am getting instead of 0 values it is showing Blank space. But in my source data there is value is 0. But when i execute the query its getting blank space. How to over come this problem.
    could u please let me know.
    Best Regards,
    venkat.

    Hi,
    Check out this.. it might solve your issue.
    in Query Properties
    Tab: value display >> Zero value Display >> Select "zero as Default Text"  under Display Zeros
    And Tab:  Rows/Columns >> Supress Zeros Option  >> "Do not Supress"  is selected.
    Thanks
    Jitu
    Edited by: Jitenderkumar Danduvia on Feb 23, 2010 12:45 PM

  • BI 7.0 Analysis Authorization issue: some reports displaying a blank page.

    Hi All,
    This is regarding BI 7.0 Analysis Authorization issue.
    Overview:
    we have restricted some queries at infoobject level.
    Issue:
    a. For some of the queries, we can see the selection screen but when we try to execute the query by clicking on the execute button (Queries WAD) we get a blank page, meaning nothing is displayed on the output (white/Blank screen).
    b. When we execute the same query through RSRT, we get a message which says "Disconnecting from BW server..".
    c. Let me explain further on this. Basically we are doing this in order to have limited access to Auditors at the client side. At the same time normal users should not get impacted due to this, hence we created two roles. One for normal users and other for Auditors.
    d.  Now the thing is that we execute the same report with normal user ID's the report executes properly and displays the output. it does not show the blank page.
    e. But when we execute the same report with Auditors ID then we get a blank page.
    Any idea why this is so?

    Hi Neha,
    I tried the below also,
    GL Acnt
    I EQ 0000134010
    I EQ :
    but still it didn't work.
    No Infoobject is missing in Authorization Object.
    For your point, "rsecadmin - > analysis -> execute as -> check for the desired user & analyze the log" it didnu2019t allow me to analyze, since as soon as click on execute button a pop-up comes up saying "Disconnecting from the BW server..."
    As mentioned earlier also it is giving me the below message,
    ""I>> Row: 103 Inc: AUTHORITY_02 Prog: CL_RSR_RRK0_AUTHORIZATION                                                                       RS_EXCEPTION        301CL_RSR_RRK0_AUTHORIZATION                         AUTHORITY_02"
    Kindly suggest, since this is a show-stopper for us!
    Thanks,
    Ishdeep Kohli.

  • SSRS report parameter left blank to select all

    Hello,
    Before posting this question I have looked at related topics and couldn't find a clear answer!
    Question: Is there a workaround for a parameter to select all if blank?
    I have a report that has a multivalue parameter, my user is asking if there is a way to have an empty parameter box that will default to selet all, so if the user does not fill parameter and clicks on view report it should work.
    I have tried:
    SELECT Item FROM ItemTable
    UNION ALL
    SELECT '' AS Expr1 ORDER
    BY Item
    Then checked Allow Blank Value ''
    and checked Allow Null Values
    and did the change in my query. The problem here is that the parameter will have null check box which the user does not want see?
    Thanks

    Hi There
    Thanks for yourposting. I think you do not need to click on checkbox allow null value, just check allow blank value and change in your dataset query like this.
    Please change the query but the synxtax might look like this
    if @commenttype=''
    select * from Comment_Type
    else
    select * from Comment_Type
    where
    Comment_Type=@commenttype
    if @commenttype=''
    select * from Comment_Type
    else
    select * from Comment_Type
    where
    Comment_Type=@commenttype
    By default your parameter is blank and you display all records, but when user type something it will filter the datset based on the user input
    I am putting some screenshot for your help.
    If you have any questions pelase let me know
    Many Thanks
    Syed Qazafi Anjum
    Please click "Mark as Answer" if this resolves your problem or "Vote as Helpful" if you find it helpful.

  • Report Painter insert blank line after report header

    Hi Expert,
    I have a problem to insert a blank line (a spacing) after the report header of my customized report painter.
    For example, in standard cost center report, S_ALR_87013611, there is a small box listed information like cost center/group ... and reporting period.
    Right after reporting period, the report header box ends, and there is a space line between it and the cost element data ...
    For my customized report painter, I cannot make this space line.
    I tried edit > row > insert blank line ... but not successful ... kindly advise.
    Thanks and regards,
    -CK

    Hi
    In KKO2 go to output tab, here under layout, tick header and then press pencil symbol and in the editor you write your header. I think this will give you desired result.
    Regards
    Rajneesh Saxena

  • Web service works when tested, but a report on is blank

    Hi All,
    I have created a web service reference in apex using WSDL option. It works very well when tested.
    Then I built a report on top of it. But I always see the message "no data found".
    I even created the same web service reference manually. This also works fine when tested.But still a report on top of it is blank.
    This web service does not take any input parameters.
    I also tried the most popular Movie Information web service reference, and a form and report on top of it. Everything works fine for this.
    I am wondering what could be wrong with my web service...?
    Please help me with this.
    Thanks and regards,
    Deepika.

    Hi All,
    As I already mentioned, the web service definition works fine when tested from shared components, but when I create a web service report or sql report with onload web service process, or a form and report.. nothing works.
    Always I see "no data found".
    It would be very helpful if some body could throw light on this issue.
    Thanks and regards,
    Deepika.

  • Alerts and Most Common Alerts Report information Displays Blank

    Hello Sir,
    Could some one help me on my Issue in SCOM 2012 R2.
    Previously we use to generate all reports with out any issues, But very recently we had an issue while generating reports for "Alerts" and "Most common Alerts" Reports (from Microsoft Generic Library) its giving a blank with out any data.
    Where in CPU, Memory, Disk Utilization are coming fine as expected. Only issue with "Alerts Reports"  and "Most Common Alerts Report".
    Not sure how to proceed further to trouble shoot this issue.
    Regards,
    SA

    Thank you Sir,
    Previously all reports works fine, but recently we had issue only for "Alerts" and "Most Common Alerts" reports which is giving the blank DATA. Please find the below screen shot of the report.
    <v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe" stroked="f"></v:shapetype>
    <v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe" stroked="f">Could
    you please assist me how to fix this issue.</v:shapetype>
    Regards,
    Sanjeev Kumar N
    <v:shapetype coordsize="21600,21600" filled="f" id="_x0000_t75" o:preferrelative="t" o:spt="75" path="m@4@5l@4@11@9@11@9@5xe" stroked="f">
     <v:stroke joinstyle="miter">
    <v:formulas>  <v:f eqn="if lineDrawn pixelLineWidth 0">
      <v:f eqn="sum @0 1 0">
      <v:f eqn="sum 0 0 @1">
      <v:f eqn="prod @2 1 2">
      <v:f eqn="prod @3 21600 pixelWidth">
      <v:f eqn="prod @3 21600 pixelHeight">
      <v:f eqn="sum @0 0 1">
      <v:f eqn="prod @6 1 2">
      <v:f eqn="prod @7 21600 pixelWidth">
      <v:f eqn="sum @8 21600 0">
      <v:f eqn="prod @7 21600 pixelHeight">
      <v:f eqn="sum @10 21600 0">
     </v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:f></v:formulas>
     <v:path gradientshapeok="t" o:connecttype="rect" o:extrusionok="f">
     <o:lock aspectratio="t" v:ext="edit">
    </o:lock></v:path></v:stroke></v:shapetype><v:shape alt="" id="Picture_x0020_1" o:spid="_x0000_i1025" style="width:431.25pt;height:277.5pt;" type="#_x0000_t75">
    <v:imagedata o:href="cid:[email protected]" src="file:///C:\Users\15147\AppData\Local\Temp\msohtmlclip1\01\clip_image001.jpg">
    </v:imagedata></v:shape>

  • In IPCC express,last 4 month report i;m not getting in historical report. in report it shows blank.

    Hi all,
    we are using IPCC express 5.0 with high availability and call manager 6.0.
    Now i;m facing an issue in historical reports.i'm not getting last 4 month reportin the historical report and the report is blank.
    when i troubleshooted, i checked for filter in scheduler file, logs and i couldn;t find any issues in that.
    i observed in datastore control center, agent, historical, repository status is stopped in publisher and replication status also stopped. i tried to start it but it stopped again.
    as per customer information, also agent phones are communicating with standby server not with publisher for last 4 months.
    so i'suspect it is database replication problem for long time that is why i;m getting the report also for these 4 months.
    please find the attachment for your reference..
    please anybody can help me in this..
    thanks in advance..

    Jneklason wrote:
    ~snip~
    I know this email is confusing and really hard to understand...perhaps now you will know how i've been feeling--lost and confused with all the mis-information, with a hit and miss phone, and out of time with all the 1 1/2 hr to 2 hrs EACH wasted on this issue.
    On top of all this, I can't even find out how to file a complaint with anyone higher up than Customer Service.
    I hate to tell you this, but you didn't write an email. You wrote a discussion post on the Verizon Wireless Community forum which is a public peer to peer forum. Unfortunately since you didn't mark your post as a question, the VZW reps that roam this community won't ever see your post. Before you re-post it, don't. Duplicate posts get removed from the community.
    I see there were several missteps both by the reps and yourself in your post. First you should have insisted on returning the phone within the 14 day return policy period. Second which Samsung Galaxy mini model did you purchase? The S3 mini or the S4 mini? Did you do any research prior to deciding on this device. The reps at that time deflected the easiest course of action, by trying to get you to replace the phone under insurance instead of returning the phone. The Early Edge payment option requires the current phone on the line using the early Edge must be returned to Verizon Wireless. Did you once considered going to a third party site like Swappa to purchase a gently used device for your daughter?

  • Error Report(daily upload) - Blank sheet

    Hello-
    We have our daily uploads from SAP BI system to BPC. We have created a SSIS package and scheduled the upload.
    Initially we were getting error for few cost centers, that has been rectified and now data is getting in to the BPC server, but still we get u2018Application error reportu2019 to all users through email. The sheet has no data in it, it is completely blank, except the header column of the data.
    Type
    Account
    Category
    Entity
    u2026u2026.
    Error
    I checked the u201Cdbo.errors_application_inu201D table it has no error data.  I dont want this blank sheet to be seen as an error report in daily email. How to solve this?
    Thanks!
    Vijay Venkatesh

    Looks like something custom. My guess is that you are going to need to modify the SSIS package to not send out an email if there aren't any rejects.

  • MSS My staff reporting always returns blank page

    Hello,
    We are working with ESS(v60.2)/MSS(v60.1) Sap Portals 6.40 with ECC 5.0. We have a problem with the reports of "My staff". We are using the default scenario "RPT0" with the standard reports but when we execute them after choose the selection criteria the result always is a blank page, without any error or result.
    Can anyone help us? We have checked all the configuration/customizing...
    Many regards.
    Pablo.
    Message was edited by:
            Pablo García Sanz

    Hi,
    Are these webdynpro applications or ITS based screens ?
    Incase they are webdynpro applications, please check if the ess business package is deployed. You can go to Content Administration -> Webdynpro -> sap.com -> click on the application -> run as preview. Check if you are able to view it there.
    Check the iview properties and also check this link : http://help.sap.com/saphelp_erp2005vp/helpdata/en/e4/2eb47fed444bb885c244f5ff979f16/frameset.htm
    Hope this helps.
    Regards,
    Sunil
    PS: Reward points for helpful answers.

Maybe you are looking for

  • Photoshop CS6 issue with shortcuts and my keyboard after upgrade from CS5

    I recently upgraded from CS5 Extended to CS6 Extended on my Mac (Mavericks), but installed it in English instead of German this time. I transferred most of my presets just fine, but none of the keyboard shortcuts were working. All I got was an unequa

  • How can I put my program behind a firewall or make it more secure?

    I have a client server program and I was reading through my notes. I had jotted down a recommendation to put it behind a firewall. However, I do not know how to do this in Java at all or even where to begin. How do I even create a firewall in Java? I

  • Latency type changed from fast to interleaved

    My Latency type as changed from Fast to Interleaved, why? From - Latency type: Fast     To - Latency type: Interleaved Can it be changed back to fast ? Since it as changed, it feels like my broadband is now being capped. It as become slow  .5mb when

  • Photoshop CS6 no longer detects graphics driver

    Hello, For some reason, most of the GPU features in photoshop (scrubby zoom, 3d, etc) no longer works for me. When I checked in the Preference->Performance tab, nothing shows up on the "Detected Graphics Processor" tab. I have no idea what could've c

  • Is it safe to run fixmbr/fixboot commands on repair console?

         I get a black screen with cursor when i try to boot to windows xp and i suspect that a virus has harmed my mbr. Thus, i think that runnig the fixmbr/fixboot commmand on repair console will solve my problem. The question though is wether these co