Burst Reports-DESKI-BOXI R2 SP2

Hello All,
We have some DESKI reports those are scheduled to run on every Tuesday.
Today these reports are failed for couple of users with the following reason:-
Status: Failed
Destination: None
Start Time: 12 May 2009 12:08:26 o'clock BST
End Time: 12 May 2009 12:10:18 o'clock BST
Server Used: MI003MOA08-02.Desktop_IntelligenceJobServer
Error Message: Connection or SQL sentence error: (DA0005): [Exception: DBD, ORA-12537: TNS:connection closed State: N/A] A connection required to refresh this document is unavailable. (DA0004): [] The following data providers have not been successfully refreshed: LW. (DMA0007): []
Both of these reports(Failed reports with the above reason) are scheduled to run for all stores, e.g The report is u201Cburstu201D to all stores, only the one attribute u201CStore Nou201D is changed via the scheduler, this report is then seen in the instance manager as 360 separate reports with column u201CRun Byu201D showing as username etc.
It is during the reports going through the scheduler that our errors are being seen.
Over the last 6-8 weeks the reports(360) have been a mix of single run and burst reports.
We have checked the event logs and nothing observed related to these reports.
I would be greteful if any one of you could please let me know the reason behind this error?
Many Thanks,
Madhu

Hi Madhu,
Just a thougth i get the feeling everything was running fine
(for how long since the last major change or set-up?)
and now this just 'happened' without you changing anything to system...
Could you be running into time-out issues?
Has the duration of the refresh/bursting been gradually increasing?
If so there are several time-out windows to check,
max database connection time (for deski jobs), max deski job duration time, max deski session time
All of these could have a window to small to allow the job to finish in a normal fashion.
And there is off course the max query time in the universe itself, but since your error returns so soon since the start of the query, I'm not expecting a timeout there.
Hope this helps,
Marianne

Similar Messages

  • BOXI 4 SP2 Patch 11 - Constant awt.dll crashes in the Event Log

    Hi All,
    Since implementing BOXI 4 SP2 Patch 11 I have noticed very frequent awt.dll crash error messages triggered by SAP JVM throughout the event log.
    Does anyone know what is causing this and how to resolve?
    =================================================================
    Faulting application name: java.exe, version: 6.0.170.4, time stamp: 0x4c3bb897
    Faulting module name: awt.dll, version: 6.0.170.4, time stamp: 0x4c3bfa5f
    Exception code: 0xc0000005
    Fault offset: 0x00000000000d2210
    Faulting process id: 0x1c80
    Faulting application start time: 0x01ccefaba2a15b7a
    Faulting application path: C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win64_x64\sapjvm\bin\java.exe
    Faulting module path: C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\win64_x64\sapjvm\jre\bin\awt.dll
    Report Id: a6ef5e00-5ba2-11e1-a8c2-da6052897efd
    ====================================================================
    Also notice this error immediately afterwards reporting Transaction Deadlocks in our repository and auditing databases on SQL Server :-
    =====================================================================
    Database access error. Reason [Microsoft][SQL Server Native Client 10.0][SQL Server]Transaction (Process ID 63) was deadlocked on lock resources with another process and has been chosen as the deadlock victim. Rerun the transaction..
    =====================================================================
    SQL Server version is 2008 Release 2.
    Have deployed BOXI 4 using Tomcat 6/Java platform.
    O/S in Windows Server 2008 Release 2.
    This should be a supported configuration so need ideas on why this is happening?
    Cheers,
    Gary

    Hi All,
    SAP Support finally came through for us on this.
    The issue is due to the version of the SAP JVM that comes bundled with BOXI 4 SP2 Patches 11 and 12.
    If you download the latest version of the SAP JVM from the SAP support portal and install this instead then the problems are resolved.
    Thanks,
    Gary

  • What is the BOXI 3 SP2 equivalent for ReportDocument and ParameterValues?

    I need to convert code from BOXI to BOXI 3 SP2.
    What is the BOXI 3 version of BOXI crystalDecisions.CrystalReports.Engine.ReportDocument?
    What is the BOXI 3 version of BOXI CrystalDecisions.Shared.ParameterValues?
    I'm a newbie in business objects, so any help would be appreciated.

    The ReportDocument SDK hasn't undergone huge changes between XI and XI3.1. You should have the Developer edition of Crystal Reports 2008 installed on your dev machine, after the installation of Visual Studio. Apply the latest service pack (it's necessary to patch to at least SP1 if you want to do anything that hooks into Enterprise). Check your project references to make sure they're the right version (12.x). Recompile and see if you get any errors.

  • Convert seconds to [h]:mm:ss format on report text box

    I want to convert seconds to hh:mm:ss format on the report text box.
    I use =Format(Sum([MyTime])/(24*60*60),"hh:nn:ss"), but it does not work if the hours more than 24 hours, since the format is for  the time format for the day.
    I need the result shows more than 24 hours, because I want to show how many hours and minutes from my seconds value.
    I can use [h]:mm:ss for Excel that it gives me the total hours more than 24 hours.
    I tried to use the following to my text box
    Int((sum(MyTime)) / 3600) & Format(Int((sum(MyTime) / 60) Mod 60, "\:00") & Format(sum(MyTime) Mod 60, "\:00"),
    but for some reason it only shows seconds part without minute and hour part of the value.
    Your help and information is great appreciated,
    Regards,
    Souris,

    I want to convert seconds to hh:mm:ss format on the report text box.
    I use =Format(Sum([MyTime])/(24*60*60),"hh:nn:ss"), but it does not work if the hours more than 24 hours, since the format is for  the time format for the day.
    I need the result shows more than 24 hours, because I want to show how many hours and minutes from my seconds value.
    Hi sourises,
    You can use the next function. Place it in a general module.
    Function Sec_to_str(seconds)
    Dim uur As Integer
    Dim min As Integer
    Dim sec As Integer
    Dim cur_sec As Variant
    cur_sec = seconds
    If (IsNull(cur_sec)) Then
    Sec_to_str = Null
    Else
    sec = cur_sec Mod 60
    cur_sec = cur_sec \ 60
    min = cur_sec Mod 60
    cur_sec = cur_sec \ 60
    uur = cur_sec
    If (uur = 0) Then
    Sec_to_str = Format(min, "#0") & ":" & Format(sec, "00")
    Else
    Sec_to_str = Format(uur, "#0") & ":" & Format(min, "00") & ":" & Format(sec, "00")
    End If
    End If
    End Function
    Imb.

  • Crystal Reports Visual Studio 2010 SP2 Fixed issues

    Hi All,
    Here is the list with fixed issues in Crystal Reports Visual Studio 2010 SP2
    http://www.crystaladvice.com/crystalreports/crystal-reports-2010-sp2
    The following list with issues is fixed:
    1566763 - CRVS2010 WPF Viewer error; "System.NullReferenceException was unhandled" PageControl.OnMouseMove
    1540637 - Error: External component has thrown an exception. Launching the Database Expert in the embedded Crystal Reports designer in Visual Studio
    1544675 - Error; 'Object reference not set to an instance of an object' when using the CR WPF viewer in VS2010
    1578823 - CRVS2010; "Load Report Failed" error when Report is open in any full version of the CR Designer
    1638191 - Using RTL language (Arabic) the CR viewer Group Tree Panel does not display RTL
    1631283 - Error; 'Failed to load database information' when reporting off of file system data
    1553469 - How to enable Database logging in Crystal Reports for Visual Studio 2010
    1299185 - Error: Operation not yet implemented or Failed to Export, when exporting a Crystal Reports to Text format
    1451960 - Null or empty values are not surrounded with delimiter when exported to CSV format
    1659185 - The special Crystal Reports field, 'File Name and Path' shows temp path and temp name when viewing a report
    1452648 - Dynamic Cascading Parameter prompts two times when using the Crystal Reports in VS .NET
    1580338 - When refreshing a report that contains a linked subreport report takes long time to execute
    1659111 - GCHandle left in memory for each open and close of a Crystal Report in VS2010 application
    1356672 - Crystal Reports special field "File Path and Name" displays incorrect information in a Visual Studio .NET application
    1593658 - Impersonation of database Log On credentials failure in report generation when set at runtime in a .NET application
    1661239 - Summary fields are converted to String fields
    1661276 - Using the Crystal Reports SetTableLocation method in VS .NET causes long report processing delays
    1661200 - Not able to copy text from report objects using the Crystal Reports WinForm viewer for VS .NET
    1631722 - Date function in a Selection Formula is removed when running a report in a VS .NET application
    1525822 - Exception "Object reference not set to an instance of an object." thrown when clicking on Parameter Panel button in Crystal Report .NET Windows Form Viewer
    1603082 - Cross-tab background colors not retained when exporting a report to PDF format
    1603154 - Shared variable display the incorrect value in Crystal Reports
    1427747 - Why does a CR .NET SDK web app have problems running on IIS 7 in integrated pipeline mode?
    1545536 - Alignment set to Justify causes broken underline
    Source: Resolved Issues in Service Pack 2 for Crystal Reports for Visual Studio 2010
    With kind regards,
    Pieter Jong
    Crystal Advice
    http://www.crystaladvice.com

    Many thanks for the link Pieter.
    I recently created a wiki that lists all of the fixes, their tracking numbers, associated Kbase numbers, Kbase titles and links to the kbases:
    http://wiki.sdn.sap.com/wiki/x/tgK3Dw
    It's 90% complete. I think I have a few Kbases to do to complete it.
    Now that I think about it, I'll also add the link to the [sticky thread|SP 2 for Crystal Reports for Visual Studio 2010 released!; re. SP2 release.
    - Ludek

  • How to modify the "To Print" Steps in the Print the Report Dialog box

    From the Crystal Reports Viewer Toolbar, when selecting the Print option,
    a 'Print the Report' Dialog box opens. Is it possible to modify the 'To Print' steps?
    We tried modifying  (commenting-out the To Print steps) in strings_en.js and export.js, but
    when running, the changes do not show up.
    We are using Crystal Reports for Visual Studio 2008, Crystal Reports Viewer Version=10.5.3700.0
    Thank you.

    A warning 1st. Modifying the export.js file is not supported and may lead to all kinds of issues. Also, as soon as somebody else installs an app on that machine, the js files will get overwritten and thus removing your changes.
    Second, I do not think the print dialog is defined in a JS file. In CR 10 I think we built our own print dialog and there is no control over it (e.g.; no exposed APIs).
    I think your best bet will be to create a printer dialog as per your requirements and  launch it from your our own print button.
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup

  • Invoking scheduled/bursted reports via HTTP... documentation?

    Hi all - I am looking for documentation regarding the HTTP "API" for BI Publisher Scheduler. There is an HTTP interface for which I can find no documentation. For instance by POSTing a URL such as http://<site>:<port>/xmlpserver/servlet/scheduler?ujobname=DirectDeliveryReport.xdo&d_printerd_p_gname0=direct&show_conf_page=true&d_method0=d_printer0&job_locale=en_US&save_output=off
    ...you can "schedule" a job for immediate execution and output to a printer.
    This is the method of execution for Oracle SIM 13 and is vaguely described in the SIM 13 Implementation Guide but not apparently in the BIP docs. I am wondering:
    a) what is the API for this web interface? What are the parameters?
    b) can this interface be used for bursting reports? If so it would seem to be a much easier way to schedule burst reports when an external scheduling system is required. More straightforward, like a shell script for Oracle Reports, rather than having to write a Java app to call BIP twice, first to get the XML data, second to burst/deliver that data.

    Hi Tim -
    By 'run now' mode via HTTP, are you referring to a direct call to the XDO or a one-time run via the scheduler servlet? I am not looking to set up a repeating schedule via HTTP, simply to kick off a one-time job with an output destination of email or printer. I cannot find any documentation for the one-time scheduled execution through the scheduler via HTTP. I have searched all the 10.1.3.3.3 docs, the blog, and the message boards for some of those parameters being defined in the SIM URL and there's no mention of them.
    SIM may use some internal logic to construct the URL, but by looking at the SIM, Apache, and BIP log I can see what it's doing. It's a series of GETs and POSTs via HTTP. Using this same logic, I have constructed some PL/SQL (http_utl package) to call BIP in the same fashion from a trigger and it works fine. The HTTP interface that SIM is using certainly seems to be fully-fledged; it seems to have parameters that would allow you to define the output format and destination. I just want to know what they are =)
    All I'm trying to do is automate some of the SIM printing by making it trigger-based rather than GUI-based. If the client wants to, say, autoemail instead of autoprint, I would have no idea how to change the URL params to do this. Secondly, if such a URL could specify that bursting, per the XDO, take place, we can use this HTTP method to invoke BIP from an external scheduler which will be easier for us than using web services.
    Thanks in advance,
    -eric

  • Re-show the FPGA Successful Compile Report dialog box

    Hi, everyone,
    Could anyone tell me how to re-show the FPGA Successful Compile Report dialog box?
    I clicked the check box "do not show this massage in the future" on the dialog
    It won't show up anymore
    I need to know the accurate onboard clock rates on my FPGA.
    so the "Target specific properties" can not satisfied me...
    Is there anyone know how to solve this question? ~~Thank you

    To reenable the compile report you must modify LabVIEW's INI file. Make sure the line nirviShowCompileReport=TRUE exists in the ini file. Let us know how that works out!
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • BOXI R2 sp2 installation error

    I am trying to install BOXI R2 sp2 on a windows 2003 server. The installation files unpack and the installation begins but then gives an error that the installation was interrupted before it could finish.
    I have rebooted. Restarted the install. Not sure what could be causing this error.

    What's in the install log?
    The log should go to <$INSTALLDIR>/logging? Also, is there anything in the Event viewer (assuming you're installing on Windows)?

  • Bursting Report Error

    Hi,
    I am using Bursting Report to send attachment as an email.
    Below is the bursting xml file
    <?xml version="1.0" encoding="UTF-8" ?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/xxxx/LIST_G_ORDER_NUMBER/G_ORDER_NUMBER">
         <!-- Email Setup -->
    <xapi:delivery>
    <xapi:email id="123" server="21.23.25.63" port="25" from="[email protected]" reply-to="[email protected]" >
    <xapi:message id="123" to="[email protected]" attachment="true" subject="xxList " >
    Please find attached the xx List
    </xapi:message>
    </xapi:email>
    <!-- PDF generation for mails -->
         <xapi:document output="xx_Test.xls" output-type="excel" delivery="123">
    <xapi:template type="rtf"
              location="xdo://xx.xxx.en.US/?getSource=true"/>
    </xapi:document>
    </xapi:delivery>
    </xapi:request>
    </xapi:requestset>
    But my program is erroring out, below is the error message
    XML/BI Publisher Version : 5.6.3
    Request ID: 41044810
    All Parameters: Dummy for Data Security=Y:ReportRequestID=41044809:DebugFlag=Y
    Report Req ID: 41044809
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:xxxxxx
    Preparing parameters
    null output xxx/o41044810.out
    inputfilename xxx/o41044809.out
    Data XML Filexxx/o41044809.out
    Set Bursting parameters..
    Temp. Directory:xxx
    [092012_110707069][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.5.0 - Production
    [092012_110707088][][STATEMENT] setOAProperties called..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=41044809, user-variable:cp:language=en, user-variable:cp:responsibility=20420, user-variable.OA_MEDIA=httpxxx.com:532/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=41044809, user-variable:cp:locale=en-US, user-variable:cp:user=xxx-xxx, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=41044810, user-variable:cp:org_id=101, user-variable:cp:reportdescription=xxxxList Report, user-variable:cp:Dummy for Data Security=Y}
    Start bursting process..
    Bursting process complete..
    Generating Bursting Status Report..
    --Exception
    xxx/092012_110707223/xx_Test.xls (No such file or directory)
    java.io.FileNotFoundException: xxx/092012_110707223/xx_Test.xls (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:120)
         at java.io.FileInputStream.<init>(FileInputStream.java:79)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.zipOutputFiles(JCP4XDOBurstingEngine.java:523)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:292)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    Please help!!
    Edited by: NZ on Sep 21, 2012 12:01 AM
    Edited by: NZ on Sep 21, 2012 12:01 AM
    Edited by: NZ on Sep 21, 2012 12:01 AM
    Edited by: NZ on Sep 21, 2012 12:02 AM

    Make sure that the output path is proper. Note that the burst file gets copied to concurrent request output path as well, so you can give that path too, instead of the temp path.
    ZIP duplicate error is due to a bug as explained in patch 9501440. This happens when you have multiple bursted files to be zipped. This should get resolved if you apply patch 9501440.
    Let me know if it works.
    Thanks
    Shree

  • BOXI R2 SP2: Error in Infoview when accessing report that has subreport in it.

    I have subreport imbedded in a Crystal Report.  When published to BOEXI R2 SP2.  We've just upgraded to service pack 2, and now it seems subreports that are linked to main report no longer work.
    I'm getting error:
    Error in File D:\Apps\Business Objects\BusinessObjects Enterprise 11.5\Data\procSched\TESTGAUBERT.reportjobserver\~tmp11244ee481d01f4.rpt: Error in formula . '{Items.ItemType} = {?ItemType}' This field name is not known. Details: errorKind
    It works fine in Crystal Reports.

    Hi,
    Try to refresh those joins on which the prompt inserted, save and export the universe to repository and in WebI use the prompt.
    Cheers,
    Suresh Aluri.

  • Error on Bursting Report for BI Publisher

    hi all,
    i am getting the following error when i am bursting the report for BI Publisher.
    * Nested Exception (Underlying Cause) ---------------
    oracle.apps.xdo.servlet.scheduler.ProcessingException: java.lang.NullPointerExce
    ption
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.jav
    a:2116)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:358)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.j
    ava:520)
    Caused by: java.lang.NullPointerException
    at com.sun.java.util.collections.Hashtable.get(Hashtable.java:321)
    at oracle.apps.xdo.batch.bursting.ProcessEnterpriseDocument.processLayou
    t(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unkno
    wn Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(
    Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(Unknown Sou
    rce)
    at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.
    java:119)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingP
    arser.java:311)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:263)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown
    Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.jav
    a:2008)
    ... 3 more
    Kindly Help..
    Thanks.

    Thanks alot Guru for u r reply, i am attaching more Details regarding my error.
    In Reporting options i gave
    Reporting folder CCB
    Reporting server:BIPUbliser url
    Reporting password:Admin     
    Reproting userid:Admin
    I already configured Bill Display Algorithm OBLD_CRYS in installation-frame work
    Now i am getting the error the value in the field is not a valid value for the field.
    In Console I am getting the error '
    SYSUSER - 612791-31-1 2011-05-26 11:32:21,709 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR (schema.rules.BusinessObjectRuleProcessor$Factory) There is more th
    an 1 MO for the service 'CILCSVAP': MaintenanceObject_Id(SA), MaintenanceObject_Id(CM_CONT), using 1st one 'MaintenanceObject_Id(SA)'
    <May 26, 2011 11:32:22 AM IST> <Error> <HTTP> <BEA-101020> <[ServletContext@4736418[app:SPLWeb module:/spl path:/spl spec-version:2.5]] Servlet failed with Exception
    com.splwg.shared.common.ApplicationError: (Server Message)
    Category: 3
    Number: 501
    Call Sequence: ;CIPCSVAP
    Program Name: CIPCSVAP
    Text: You are not allowed access (directly/indirectly) to this account.
    Description: Please contact your security administrator to check your security for this account.
    Table:
    Field:
    at com.splwg.base.support.context.FrameworkSession.addError(FrameworkSession.java:1177)
    at com.splwg.base.support.context.FrameworkSession.addError(FrameworkSession.java:1158)
    at com.splwg.base.support.cobol.CobolSubprogram.populateError(CobolSubprogram.java:142)
    at com.splwg.base.support.cobol.CobolSubprogram.checkForErrors(CobolSubprogram.java:94)
    at com.splwg.base.support.cobol.AbstractCobolProgram$CallCobolClosure.run(AbstractCobolProgram.java:214)
    Truncated. see log file for complete stacktrace

  • Issues with Microsoft Vista and Crystal Report XI R2 with SP2

    Hi,
    I have an application which works fine on XP but fails to work on Vista. When I go to view a report I get the following error:
    "The request could not be submitted for background processing."
    I have searched a great deal but most solutions to this problem affect other versions or are for different reasons (ie. also do not work on XP). My report viewer works as expected on XP, but not on Vista.
    I have installed SP2 for CRXI R2 which should enable compatibility with Vista. I am using Visual Studio 2005.
    Anyone have any ideas or come across Vista problems?
    MS Vista Business, joined to a domain. 1.7gig. 512 ram. Test machine.
    Thanks in advance,
    Jon.

    The "...background processing..." error can occur for many different reasons, but usually, it's is related to some kind of database connectivity.  Are you reports based on ADO.NET?  If so, make sure that the data being returned in your ADO.NET object machines the schema used to design the report. 
    The best way I troubleshoot these types of issues is to simply the app/report.  So create a really simple Windows app that loads your reports and has only the necessary code to run your report.  And then copy your test app and report to the machine and see if it throws the same error.  This would test if it's an environmental issue (ie: runtime files) or if it's something with the logic of your application.
    Also, if it's possible, try running the report from the CR Designer on the Vista machine to see if it can run from the designer itself.  Of course this means you'll need to install CR if you don't already have it.
    Hopefully this puts you in the right direction.
    -MJ

  • Crystal Report dialog box issues

    I am very new at .NET, and this is my second post to this forum.
    I've created a Crystal Report within a project using Visual Studio 2005 Professional Edition, on a Windows XP machine.
    The report is handled by a CrystalReportViewer, which has its ReportSource set to the report.
    Via a dialog box, the report asks for a signon and password for a SQL Server database.  Then, via a second dialog box, it prompts for a parameter required by the report.
    All of this works ok, but I have two issues:
    1) I would like to set the database signon and password so that the user doesn't have to enter them each time he runs the report.
    2) If the Cancel button is clicked on any of the dialog boxes, it renders the report unusable until I shut down the application and reopen it.
    I have looked online for two days, but have not been able to find a solution to these above problems.  It is probably simple, but I'm not seeing it.
    I am attaching the relevant code for the button that runs the report.
        Private Sub cmdChecks_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdChecks.Click
                CrystalReportViewer2.DisplayToolbar = True
                CrystalReportViewer2.Visible = True
                CrystalReportViewer2.Height = 600
                CrystalReportViewer2.Width = 1000
                CrystalReportViewer2.Left = 10
        End Sub
    Can anybody help me with this?
    Thank you!

    Hi,
    I would like you to know the code of the logon based on the object models-
    If you are using the ConnectionInfo then use the below code:-
    //For web application
    ConnectionInfo crConnection = new ConnectionInfo();
    // Connection Information
    crConnection.ServerName="D-2818-W2K";
    crConnection.DatabaseName="Northwind";
    crConnection.UserID="sa";
    crConnection.Password="sa";
    crReport.Load(Server.MapPath("CrystalReport1.rpt"));
    Tables crTables=crReport.Database.Tables;
    foreach(CrystalDecisions.CrystalReports.Engine.Table crTable in crTables)
              TableLogOnInfo crTLOI = crTable.LogOnInfo;
              crTLOI.ConnectionInfo=crConnection;
              crTable.ApplyLogOnInfo(crTLOI);
              crTable.Location=crTable.Location;// for multiple table selection
    CrystalReportViewer1.ReportSource=crReport;
    ====================================================================================
    //For desktop application
    ConnectionInfo crConnection = new ConnectionInfo();
    // Connection Information
    crConnection.ServerName="D-2818-W2K";
    crConnection.DatabaseName="Northwind";
    crConnection.UserID="sa";
    crConnection.Password="sa";
    crReport.Load(Application.StartupPath + "//CrystalReport1.rpt");
    Tables crTables=crReport.Database.Tables;
    foreach(CrystalDecisions.CrystalReports.Engine.Table crTable in crTables)
              TableLogOnInfo crTLOI = crTable.LogOnInfo;
              crTLOI.ConnectionInfo=crConnection;
              crTable.ApplyLogOnInfo(crTLOI);
              crTable.Location=crTable.Location;// for multiple table selection
    CrystalReportViewer1.ReportSource=crReport;
    =====================================================================================
    If using ReportDocument object model
    //For web application
    ReportDocument crReport= new ReportDocument();
    crReport.Load(Server.MapPath("CrystalReport1.rpt"));
    crReport.SetDatabaseLogon("sa","sa");
    CrystalReportViewer1.ReportSource =crReport;
    =====================================================================================
    //For desktop application
    ReportDocument crReport= new ReportDocument();
    crReport.Load(Application.StartupPath + "//CrystalReport1.rpt");
    crReport.SetDatabaseLogon("sa","sa");
    CrystalReportViewer1.ReportSource =crReport;
    To download sample code click [here|https://boc.sdn.sap.com/codesamples].
    You can also take help from [Dev library|https://www.sdn.sap.com/irj/boc/sdklibrary]
    Hope this helps!!
    Regards
    Amit

  • Crystal Reports Image box does not display images.

    Post Author: xbhavesh
    CA Forum: .NET
    i have CR report which has a Imagebox to display images from db table. i am storing the images in a table as path. in my dev machine when i load the .aspx page with the crystal report it shows the image in the box but when i run it from the web server the image does not show.
    even from the .rpt file i get the image and all data.
    anyone know how can i get this working?
    the images are stored in a mapped network drive and the version of cr is XI R2.

    Please post to Business One forum

Maybe you are looking for

  • Can't adjust images in pages document

    a bunch of jpgs of artwork will not allow me to adjust them in pages the adjust window will pop up, but will not allow me to adjust any parameters whereas most other jpgs will work just fine making adjustments help!! what is wrong that pages won't le

  • STOP keyword replacement in SAP ECC 6.0

    Hi, Can anyone please suggest me the replacement for the STOP keyword? EXIT seemed like an option but as per the documentation, the STOP statement takes the control to the END-OF-SELECTION event whereas the EXIT will terminate the program. I need the

  • SQL statement running balance query with previous balance taken into account

    Hi Guys I have a SQL statement which caclulates the running balance for a list of transactions in a transactions table. This SQL statement is as follows: SELECT transID, debit, credit, (SELECT SUM(debit-credit) FROM transactions as D1 WHERE D1.transI

  • Bridge Keywording error

    I find that when I open Bridge to begin keywording, I get an error that prevents me from adding keywords to any images. It seems to go away only after time passes. Does anyone have an explanation for why this happens? I am keywording over a network,

  • How to sent notification to a user depending on some condition?

    Hi All, I am working in iRecruitment Recruiter responsibility->iRecruitment Recruiter->Candidate I have an requirement that for a particular applicant if HR is taking Interview and he forgot to add feedback.Then a notification has been sent to him af