Crystal Report not opening in Infoview.

I have Crystal Report XIR2 designed and running fine in Designer.I uploaded the report into Invoview and earlier it used to run fine but not it is not opening up at all.I am using the servicecenter OBBC driver 6.1.1 to connect to SQL database.Also Busines Objects version is XIR2.It is working fine from crystal Designer but not opening from Infoview.Please advise if someone has faced the same issue...

Please post your query to the [Business Objects Enterprise Administration|BI Platform; forum

Similar Messages

  • If image file not exist in image path crystal report not open and give me exception error problem

    Hi guys my code below show pictures for all employees
    code is working but i have proplem
    if image not exist in path
    crystal report not open and give me exception error image file not exist in path
    although the employee no found in database but if image not exist in path when loop crystal report will not open
    how to ignore image files not exist in path and open report this is actually what i need
    my code below as following
    DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoRall", con);
    cmd.CommandType = CommandType.StoredProcedure;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    foreach (DataRow dr in dt.Rows)
    FileStream fs = null;
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + dr[0] + ".jpg", FileMode.Open);
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dr["Image"] = imgbyte;
    fs.Dispose();
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();
    and exception error as below

    First: I created a New Column ("Image") in a datatable of the dataset and change the DataType to System.Byte()
    Second : Drag And drop this image Filed Where I want.
    private void LoadReport()
    frmCheckWeigher rpt = new frmCheckWeigher();
    CryRe_DailyBatch report = new CryRe_DailyBatch();
    DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter ta = new CheckWeigherReportViewer.DataSet1TableAdapters.DataTable_DailyBatch1TableAdapter();
    DataSet1.DataTable_DailyBatch1DataTable table = ta.GetData(clsLogs.strStartDate_rpt, clsLogs.strBatchno_Rpt, clsLogs.cmdeviceid); // Data from Database
    DataTable dt = GetImageRow(table, "Footer.Jpg");
    report.SetDataSource(dt);
    crv1.ReportSource = report;
    crv1.Refresh();
    By this Function I merge My Image data into dataTable
    private DataTable GetImageRow(DataTable dt, string ImageName)
    try
    FileStream fs;
    BinaryReader br;
    if (File.Exists(AppDomain.CurrentDomain.BaseDirectory + ImageName))
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    else
    // if photo does not exist show the nophoto.jpg file
    fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + ImageName, FileMode.Open);
    // initialise the binary reader from file streamobject
    br = new BinaryReader(fs);
    // define the byte array of filelength
    byte[] imgbyte = new byte[fs.Length + 1];
    // read the bytes from the binary reader
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    dt.Rows[0]["Image"] = imgbyte;
    br.Close();
    // close the binary reader
    fs.Close();
    // close the file stream
    catch (Exception ex)
    // error handling
    MessageBox.Show("Missing " + ImageName + "or nophoto.jpg in application folder");
    return dt;
    // Return Datatable After Image Row Insertion
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • Crystal reports not running in infoview

    Hi ,
    Created a report using excel as datasource via odbc DSN. Report runs fine in Crystal but gives an error in Infoview ." database logon information is either incomplete or incorrect"
    Have tried every possible way to make it workou but in vain.
    Pls suggest any solutions.

    Hi Stratos, In your previous reply below
    "You have to create the DSN to your excel file also on your BOBJ server as you did on your local workstation. When CR runs in the InfoView it will try to locate the DSN on the BOBJ server. In order to do this correctly please use odbcad32.exe.
    Importing the Excel file in the BO repository does not really help. You have to consider to copy the Excel file on your BOBJ server or copy it in a shared drive (which is accessible from both your local workstation and the BOBJ server).
    Regards,
    Stratos"
    I am assuming these are two different methods: In 1st one i will need to make connection to ODBC and in second one it will be Access/Excel (in crystal)
    Am I right?

  • Deski Report cannot open in Infoview

    Hi
    we have recently upgraded BOXI R2 SP1 to SP5 and after upgrade we found that few deski reports are not opening from Infoview.
    It takes much longer time and eventually it times out.We tried changing the option in the report not to refresh when opening the document
    and then the document opens in the document opens in the Infoview.In short whenever we try to refresh the data it dies after trying for some time.
    Any idea what could be the issue ?
    Thanks in Advance
    Regards
    Kamal

    Hi Kamalaksha,
    Following solution might help you to resolve the issue.
    The error message occurs because the time the report takes to open or refresh exceeds the maximum allowed idle time defined in the Desktop Intelligence Report Server.
    To resolve the error message
    Log in to the Central Management Console as administrator.
    Click Servers > Desktop Intelligence Report Server > Properties tab.
    Set the Minutes Before an Idle Connection is Closed value to one greater than the total time the document takes to open or refresh in InfoView.
    Click Apply.
    May I know that are you getting any error message while refreshing the reports?
    Regards,
    Sarbhjeet Kaur

  • Crystal report server2008 (XI R2): InfoView Request timeout error

    HI
    Crystal report server2008 (XI R2): InfoView Request timeout error
                Some reports which are taking more than 10 to 15 minutess while running through InfoView gives error as follows:
    An error has occured: Request timed out.
    This error appears within the crystal  report server and when user tries to access through browser client desktop also. Sometimes it  prompts the error as follows when users try to access through browsers from there desk i.e through proxy connection.
       The proxy server received an invalid response from an upstream server.
       The proxy serer could not handle the request POST/report/CrystalReports/Viewrpt.aspx.
        Reason: Error reading from remote server
    The timeout setting of all web.config files under infoviewapp, infoviewappactions, platform services, crystal reports folders have been checked and the default timeout 20 minutes is changed to 30 minutes and IIS is restarted, but still users are getting request timeout error within 10 to 15 minutes while running a crystal report. Even admin user.
    Regards,
    Patrick Raths

    Please post your query to the [Business Objects Enterprise Administration|BI Platform; forum. This forum is dedicated to development and deployment of .Net applications that connect and interact with BusinessObjects Enterprise, BusinessObjects Edge, or Crystal Reports Server. This includes the development of applications using the BusinessObjects Enterprise, Report Application Server, Report Engine, and Web Services SDKs.
    BTW., if thi is an important issue, I'd recommend creating a phone case.
    Ludek
    Edited by: Ludek Uher on Aug 11, 2010 1:57 PM

  • Display more pictures in crystal report not work why

    Hi guys i try to show picture of specified employee from network path in crystal report  it work
    but i don't know how to show all pictures to all employees in crystal report
    Can any one help me to customize my code to accept show all employee pictures
    i try to make this from crystal report and assign path but version of crystal report not allow to me
    to put path
    my code below show picture to one employee from text box control from network path
    I need to customize this code to accept show more one  pictures of employees from  employee table
    the following fields i show in report
    EmployeeNo      integer
    EmployeeName   nvarchar(50)
    Image     datatype  image 
    btnemployeeno_click
       DataTable dt = new DataTable();
    string connString = "data source=192.168.1.105; initial catalog=hrdata;uid=sa; password=1234";
    using (SqlConnection con = new SqlConnection(connString))
    con.Open();
    SqlCommand cmd = new SqlCommand("ViewEmployeeNoR", con);
    cmd.CommandType = CommandType.StoredProcedure;    // Viewxxx doesn't seem a good name for a sp
    cmd.Parameters.Add("@EmployeeNo", SqlDbType.NVarChar, 20);
    cmd.Parameters["@EmployeeNo"].Value = textBox1.Text;
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    da.Fill(dt);
    string path = Path.Combine("\\\\192.168.1.105\\Personal Pictures", textBox1.Text) + ".jpg";
    FileStream fs=null;
    if (File.Exists(path))
    fs = new FileStream("\\\\192.168.1.105\\Personal Pictures\\" + textBox1.Text + ".jpg", FileMode.Open);
    else
    MessageBox.Show("Please File Not Exist");
    BinaryReader br = new BinaryReader(fs);
    byte[] imgbyte = new byte[fs.Length + 1];
    imgbyte = br.ReadBytes(Convert.ToInt32((fs.Length)));
    foreach (DataRow dr in dt.Rows)
    dr["Image"] = imgbyte;
    ReportDocument objRpt = new Reports.CrystalReportData2();
    objRpt.SetDataSource(dt);
    crystalReportViewer1.ReportSource = objRpt;
    crystalReportViewer1.Refresh();                     

    Hi, 
    Put an image field in your report, then change the image’s Graphic Location:
    right click the image, select Format Graphic, select Picture tab, click the conditional-formula button that look like a x2 and set the formula’s text to
    the name of the formula or parameter field that will contain the image’s URL.
    Save the formula and click the OK button. Save the report and test it.
    Be carefull with the size of the image field. If this size is not equal to the image itself it could get resized.
    Good Tutorial
    Mark as answer or vote as helpful if you find it useful | Ammar Zaied [MCP]

  • After i install Visual-Studio 2013 crystal-report not working

    hi
    after i install Visual-Studio 2013 crystal-report not working on my Visual-Studio 2010 projects
    when i try to open crystal-report i see this:

    Hi E_gold,
    Crystal Reports forum may be a better place for you.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Report not opening in windows 8

    hello all,
    on some machines report not opening after windows 8 installed can anyone had this issue .
    Please help..
    Dilip Patil..

    Hi Dilip,
    Based on my understanding, you want to open reports on some machines which have Windows 8 installed, right?
    Regarding the issue, we couldn’t understand it clearly, and we would like to confirm something from you below:
    1. Which method have you tried to open reports, SSDT, report manger or another application?
    2. Have you installed SSRS on the machine which have Windows 8 installed? If so, have you checked if the version of SSRS is supported on Windows 8? 
    3. On which version of SSRS you create those reports? If those reports open with a higher version of SSRS, you should refer to this
    article to upgrade the reports firstly.
    So in your scenario, please provide more information about the issue then we can understand the issue clearly.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • BPC 7.0 Reports not opening

    We have experienced reports not opening.  The problem appears to be when the combination of folder name and file name length is long.  Has anyone else experienced this and know what the max character length limitation is?

    Chicago, eh? Is this a union shop?
    Do the server diagnostics look the same before and after 9 am? What time in the evening does it stop working?
    If not the server, maybe there's a network traffic limitation that's blocking access.
    If you have Excel and the client installed on the server itself, try logging in from the server and see if that works. (If not, try just the BPC web browser functionality.) If you can log in from the server, but not from other client machines, there's something going on with your network.

  • Crystal 9 report not opening in Crystal 2008

    I have a report that was originally designed in Crystal Reports 9 that works fine on that version but i am unable to open it in Crystal Reports 2008. I just get a pop-up message telling me "This document could not be opened".
    When i attempted to upload it to the management console i received a more informative message of: Adding Crystal Report "_AIE01_Apollo Inc and Exp.rpt" failed. The server with kind rptappserver returned an error result. Failed to copy the report file to the report object. Refreshing the report object properties might have failed. Failed to read data from report file C:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\Data\CrystalReportsRasServer\temp\{69266EE3-7B91-4A9B-B405-12EA17AA3135}.rpt. Reason: Crystal Reports: Print Engine Error.
    I rebooted the physical server with no success. I have moved 30+ files from the CR 9 area to the CR Server 2008 with no problems.
    Any help would be great.

    Hi Wade,
    Iu2019ve done more testing trying to find out what the cause is and I started off by removing all of the subreports. So this is NOT the cause, it was just a suggestion why you have that manyu2026.
    I then tried removing all un-used formula and still a problem. I then removed the Command object and now I can open it in CR 2008. Still doing more testing to see if I can get the specific objects causing the problemu2026.
    I think I have it down to one or more of the subreports and possibly due to one of the parameters in the Command objects...
    Have your report developer do the sameu2026.
    Still testing

  • Open Crystal Report full screen at InfoView and hide navigation panel

    Dear all,
    In InfoView, how to globally set so that Crystal Report document will be opened as full screen and also hiding the navigation panel.
    I know InfoView > Preference can open in full screen, but this must be done for each user. How to set it globally for all users?
    And also to hide the navigation panel on the left hand side (parameters, group tree) that applies for all user (global)?
    Thank you very much.
    Kind regards,
    aswin

    Dear Martijn van Foeken,
    Wow that's so advanced.
    1. Do you have any information like what table and field in CMS database that we need to change in order to modify the BOE user preferences in InfoView?
    2. For hiding the Navigation Panel in CR viewer, i was thinking if the setting might need to be done on the CR viewer. I tried changing the config file below:
    D:\Program Files (x86)\Business Objects\Tomcat55\webapps\CrystalReports\crystalreportviewers\Web.config
    In that config file there's a parameter below which i set to "true" but it doesn't work.
        <!-- "true" or "false" value determining whether a group tree will be hidden by default if one is generated -->
        <add key="viewrpt.groupTreeHide" value="true"/>
    Any idea?
    Thank you very much Martijn and Merry Christmas.
    Kind regards,
    aswin

  • Crystal Report not working when posting the report to the Crystal Server.

    Hi All,
      I created a report using Crystal Reports 2008 with two ODBC connections (User DSN's). When I run the report in Crystal Reports (where I originally created it) it runs fine with no problems.
       I am now trying to load it on Crystal Server 2008. When I try to run this report in InfoView, I get a message: "Error Failed to open the connection." I am thinking that it has to do with the ODBC connections but I am not quite sure. Could someone lead me in the right direction? How will the report that I now saved in the repository on the server connect to the ODBC stream?
       Thank you in advance.

    Solved my problem. I had to tweak the ODBC drivers on the server.

  • Reports not running in Infoview

    I just migrated some reports from our Dev server to Test Server. The reports in Test Infoview do not run,. How ever I am able to run them in Crystal designer.
    This did not happen in the past when ever I migrated the reports.
    Any suggestions on what could be wrong? Using BO XI
    The report in Infoview window keeps on running but does not even display the prompts for parameters. There is no error message, not sure whats going on.
    Also I just noticed, there are other reports in different folder in Infoview which connect to a different Universe, If I try to run those reports from infoview, they can run. Onlt the ones that I migrated did not run.
    Pls help.

    Hi,
    Try this step; open the same report in crystal reports designer. Go to file menu-> page setup -> check the option u201CNo printeru201D. Save the report again back to the enterprise and then try and run the report.
    Let me know if this works for you.
    Thanks,
    Kuldeep

  • How to create a first row in crystal report as opening balance which contains two columns with debit and credit

    I have created a crystal report with credit and debit column. Balance column created on the report. Report running with cummulative balance. THis report contain an option for date range. If i filtered this report its not showing the actual balance. I need
    a first row to indicate previous balance as opening balance in this report.  And following is the formula for balance column.
    Whileprintingrecords;
    Shared Numbervar balance;
    Shared Numbervar display;
    balance:={@debit}-{@credit};
    display:=display+balance;
    display

    As this question is out of the T-SQL queue, thus I would suggest you consult Crystal Report questions to the correct forums.
    C#
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=csharpgeneral
    VB
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral
    people there have more knowledge on Crystal Report.

  • Crystal Report  not listed Add New Item for Visual Studio 2010

    I just finished installing cryestal report for visual studio 2010.
    During the installation a visual studio error dialog popped up "Operation cannot be completed. Access Denied", the crystal report installation continued and was informed that the installation was successful.
    But on opening my visual studio project to add new item,  crystal report item is not listed there.
    Is there anything that needs to be done to get it listed in the Add New Item dialog for visual studio?

    I wonder what file you ran to install CRVS2010? Was it the MSI as opposed to the actual install file?
    The link to the correct install is here:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_13_0_2.exe
    Is that the file you ran to install CRVS2010? E.g. as opposed to:
    http://downloads.businessobjects.com/akdlm/cr4vs2010/CRforVS_redist_install_32bit_13_0_2.zip
    - Ludek

Maybe you are looking for

  • Cópia de Nota Fiscal

    Bom dia, Realizei a compra de um SDD Intel 530 Series 240GB na loja Best Buy 10760 NW 17th St Miami, FL 33172. A compra foi feita no dia 23/12/2014. Gostaria de saber como consigo uma cópia da nota fiscal, pois perdi a minha.

  • Help in writing the query

    Hi All, I have a table with below structure & Data. {code} CREATE TABLE SAMPLE (PARENT VARCHAR2(100), CHANGE VARCHAR2(100), FLAG   VARCHAR2(10), CHILD  VARCHAR2(100)) {code} {code} insert into sample values('5762','7219','A','5965'); insert into samp

  • TV out fuction not workin after upgrade 7.0.2 in ipad2

    I have an Ipad2 the video output worked with my rca cable out. After upgrading to the new 7.0 it no longer works. When I plug in my cable my Ipad recognizes it. But I only get sound coming out and no image. Help!! Tried to uninstall ios 7 with no luc

  • WRT160N issue. I'm about to blow my brains out.

    Ok, so let me give the backstory. We're using this router for a small business. We went to one of our locations. I'll refer to this location as location #9. Anyways, we went to #9 with intentions of installing a Sonicwall, which is a router/firewall.

  • Nvidia and 32 bit depth color

    Hii, My screen support 32 bit color, and I want to use it insted of 24, but when doing so on Xorg.conf, Nvidia gives me an erorr when trying to run X, any one saw that and know what I can do?