Crystal Report Viewer error out when running multiple instances

Hi,
I am using java 1.4 with BO XI R3.0.
I notice I can only run one report at a time. If I was to run two reports, the 1st report will error out while 2nd report will run to its completion. Reports run on separate popup windows. I have tested with IE6, IE8 and also FireFox 3.0
Depending on the timing, I get different kinds of error.
"A request was cancelled. The necessary security privileges could not be verified. This indicates a problem with the security server. [RCIRAS9190] [RASLIB9002] "
"The Report Processing Server session you are using to connect is in the process of being shut down. You need to retry. [RCIRAS0200]"
I am using PSReportFactory and set parameters into CrystalReportViewer to display.
processParametersu2026
CrystalReportViewer viewer = new CrystalReportViewer();
pfieldDV = new ParameterFieldDiscreteValue();     
pfieldDV.setValue(formatViewerParameterInputValue(tempRpt[1],tempParam[x]));
pfield.getCurrentValues().add(pfieldDV);
viewerParameters.add(pfield);     
viewer.setParameterFields(viewerParameters);     
createCrystalViewer(m_oReportWrap.getRequest(), response, sInstanceId,viewer);
private void createCrystalViewer(HttpServletRequest request, HttpServletResponse response2, String sInstanceId, CrystalReportViewer viewer) throws ReportSDKExceptionBase, FileNotFoundException, IOException, SDKException
         IEnterpriseSession eSession = oLogon.getCESession();
         IInfoStore iStore = oLogon.getInfostore();
         IInfoObject rptObject = findInfoObject(iStore,sInstanceId);
         IReportSourceFactory rptFactory =    IReportSourceFactory)eSession.getService("","PSReportFactory");
         IReportSource reportSource = rptFactory.openReportSource(rptObject,Locale.ENGLISH);
         IReport report = (IReport)rptObject;
        ConnectionInfo conn = new ConnectionInfo();
        ConnectionInfos connInfo = new ConnectionInfos();   
        ServletContext sc = getServletConfig().getServletContext();
        String realPath = sc.getRealPath("");
        Properties prop = new Properties();
        viewer.setOwnPage(true);
        viewer.setDatabaseLogonInfos(connInfo);
        viewer.setReportSource(reportSource);               
        viewer.setURI(request.getRequestURI() + "?reportID=" + rptObject.getID() + &viewerType=vwrTypeJavaSDK&viewID=1");
        viewer.setEnterpriseLogon(eSession);
        viewer.setHyperLink("New Window");
        viewer.processHttpRequest(request, response2, sc, null);

Thanks to both of you.
I actually was able to resolved this issue by tracking the values inside IEnterpriseSession.
// Perform Crystal Enterprise Logon
ISessionMgr oSessionMgr = CrystalEnterprise.getSessionMgr();
IEnterpriseSession m_oCESession = oSessionMgr.logon(sUserid, sPassword, sSystemName,  getSecTypeString(iSecType));
System.out.println("in logon m_oCESession "+m_oCESession);
The UserInfo in the SeucuritySession: userInfo was always null so whatever i pass in, it was not storing them.
(EnterpriseSession:logon=(SecuritySession:userInfo=null)
All i need to do is to add   IUserInfo userInfo = null;  before IEnterpriseSession then it will store the user & password.

Similar Messages

  • Crystal Report/STRUTS: Error (404) when clicking on Control Buttons (Print, Export, Next, Previous, etc...) on report viewer

    Post Author: jwenny
    CA Forum: Deployment
    Need help badly!!!
    We are using the crystal reports plugin for STRUTS.
    We are able to display the report in the crystal report viewer.  However, when we click any control buttons (print, export, etc...), then we get:
    JSPG0036E:  Failed to find resource /Report-viewer.jsp
    We then moved Report-viewer.jsp to the WebContents folder (root directory) and got a different error when we clicked any control button:
    Error:  400 page not found
    Does anyone know how to solve this problem?  For instance, is there a setting or parameter that needs to be set?
    Greatly appreciate any help!

    HI,
    Whenever we print the viewer does an auto postback, I believe due to this some of the values are getting missed. Moreover we are referring to the viewer and reportdocument object, it seems. So can you try this simple code in an application to see if it helps:
    ReportDocument rdoc = new ReportDocument();
    rdoc.Load("C:\TASKECrystalReports\Intraday.rpt");
    rdoc.SetDatabaseLogon("uid","pwd");
    rdoc.SetParameterValues("parameter name","value");
    CrystalReportViewer.ReportSource = rdoc;
    Helps?
    Thanks.

  • Crystal Report Viewer Error Handling

    Dear All
    Thank you for your attention.
    I wrote a C# program for user to print out an order using WPF and crystal report viewer.
    Computer A is connected directly to the printer through USB.
    Computer B and C are connected to the printer through printer sharing.
    Computer A can print out anything such as word doc or image to the printer.
    However, when using the print function in the crystal report viewer(select printer and press print), it crashes.
    Very strange that computer B and C could use the print function in the crystal report viewer without any error.
    As in my developer computer I could not simulate the error, how could I capture and study the error of the print function in the crystal report viewer in computer A?
    Thanks a lot.
    Best Regards
    swivan

    try this:
    https://msdn.microsoft.com/en-us/library/aa288423(v=vs.71).aspx
    https://msdn.microsoft.com/en-US/library/ms225372(v=vs.80).aspx

  • Logon Error for Crystal Report Viewed by User When Not Included In App

    I have a Visual Basic 2008 SP1 application and I'm using Crystal Reports 2008 SP0 (with FP1 + 2).  I have about 50 reports using integrated security that are all "embeded resources" in the application.  When I want to print one of these reports I use code like this:
    PrintReports(New MyEmbededReport)
    And in my PrintReports routine it just creates a new instance of a form that has the report viewer control on it and passes the report over to it.  This works GREAT and I can embed all my reports right into the app and call them when I need them.
    Recently however I've had the need to add some custom reports that may change more often then the app changes so I need a way for users to access their reports without a new version of the app being pushed out.  So I made a routine that lets me store the actual Report.rpt file into SQL and when a user goes to run it the report is pulled out of the database and saved into their temporary files and then passes it back to my PrintReports routine as a ReportDocument.  This also works fine but only on my machine.  On the client machines it asks for the login information and no combination will work.  I've tried multiple ways of getting around it and have spent hours trying examples found on the internet including assigning the login information before preview, running through and assigning the login information to each table, I've gone through the "Using Integrated and SQL Autentication in .Net Applications" guide, turning on and off integrated security.  Nothing seems to work.
    What else is there to try?  As a very last resort I will have to store the reports into the app like the other ones but I'm really trying not to do this.
    -Allan

    Just trying to get this working.  My PrintReport routine used to just have the single line to assign the passed report to the report viewer.report source property.  I've changed it to this:
                Dim crtableLogoninfos As New TableLogOnInfos()
                Dim crtableLogoninfo As New TableLogOnInfo()
                Dim crConnectionInfo As New ConnectionInfo()
                Dim CrDatabase As Database
                Dim CrTables As Tables
                Dim CrTable As Table
                'Set the ConnectionInfo properties for logging on tothe Database
                With crConnectionInfo
                    .ServerName = My.Settings.SQLServerName
                    .DatabaseName = My.Settings.MainDatabaseName
                    .IntegratedSecurity = True
                End With
                'This code works for both user tables and stored procedures.
                'Set the CrTables to the Tables collection of the report
                CrDatabase = myReportFileName.Database
                CrTables = CrDatabase.Tables
                'Loop through each table in the report and apply the LogonInfo information
                For Each CrTable In CrTables
                    crtableLogoninfo = CrTable.LogOnInfo
                    crtableLogoninfo.ConnectionInfo = crConnectionInfo
                    CrTable.ApplyLogOnInfo(crtableLogoninfo)
                Next
                'Set the viewer to the report object to be previewed.
                PrintPreview.CrystalReportViewer.ReportSource = myReportFileName
    And I have the exact same issue....my internal reports stored within the app still work fine for everyone but the custom reports made in CR2008 and added as files still do not. 
    So out of fustration I added one of the "external" reports into VB 2008 and opened it in there, did a verify database, saved it, and then added it to my SQL server but again same issue....it's like when its off of my computer it "loses" the connection information even though it still shows its there.  Not sure why the reports that are embedded into the app don't have this issue. 
    So that gave me another idea.  I took one of the reports that was originally created in VB2008 and took that and put it into the SQL then ran that like the others and IT WORKS.  It creates the temp file on the client PC and runs it from there with no login issues.  Now I'm more confused....any ideas?  I guess I'm going to start recreating the reports I created in CR 2008 and remake them in VS 2008 since those seem to work fine but why should I have to....what would be the difference?
    -Allan

  • Crystal Report Viewer Error: Could not render the page

    Hi,
    I was facing the same issues whereby i creating my crystal report in VS2005 profesional built in crystal report designer. When preview in VS2005 the graph displayed correctly. However, when export to IIS it shows the error could not render the page.
    I am using Windows 2008 server, IIS7.
    I tried to install the CRREDIST x86.msi into my server, however it still could not show out the graph (pie chart) in the localhost.
    Appreciated anyone know this could kindly advice.
    thanks.
    ck

    Hello,
    Crystal Reports 10 is not supported on Windows 2008 Server.
    Please view the information [here|http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_dev/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do]
    Upgrade the Crystal Reports.
    Thanks,
    Bhushan.

  • Crystal Report Viewer error

    Hello,
    I upgraded my web site to the VS 2010 and when I tried to run Crystal report (Crystal Reports for Visual Studio 2010) received the following error in the Firefox u201Cbobj is not definedu201D.  When I opened Event Viewer  I saw the error below
    u201CThe description for Event ID ( 4353 ) in Source ( Crystal Reports ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event: The keycode assembly, BusinessObjects.Licensing.KeycodeDecoder.dll, cannot be loaded.u201D
    I found one thread describing problem with u201CBusinessObjects.Licensing.KeycodeDecoder.dllu201D and tried to follow all suggestions with no luck.
    Thank you for help in advance

    See the sticky post at the top of this forum;
    [Crystal Reports for Visual Studio 2010 Beta - read before posting|Crystal Reports for Visual Studio 2010 Beta - read before posting}]
    and follow the instructions there.
    Locking this thread.
    Ludek

  • Crystal Reports 10 Pro Crashing when running report

    Server: Intel Xenon X3323 Quad Core 2.5 GHz
    LAMP Configuration
    1.5GB Ram
    Centos 5.1 Linux Server
    Mysql 5.0.45
    Workstation Windows XP Pro
    2 GB Ram
    Crystal Reports 10 Pro
    ODBC SYSTEM DSN 
    Connector Mysql ODBC 5.1.5 Connector
    Issue
    Report Crashes when we run the report.  However, if we click Database, then Refresh Database, the report generates.  The issue is we cannot automate the report.
    Here is some information from the dump report
    Error Signature
    AppName: crw32.exe AppVer: 10.0.5.1506 ModName: myodbc5.dll
    ModVer: 5.1.5.0 Offset: 0001b720
    Here is additional information from the log file:
        <MATCHING_FILE NAME="crabout.dll" SIZE="192585" CHECKSUM="0x181843C3" BIN_FILE_VERSION="10.0.0.23" BIN_PRODUCT_VERSION="10.0.0.533" PRODUCT_VERSION="10.0.0.533" FILE_DESCRIPTION="crabout" COMPANY_NAME="Crystal Decisions, Inc." PRODUCT_NAME="Crystal Report About Box Dialog " FILE_VERSION="10.0.0.23" ORIGINAL_FILENAME="crabout.dll" INTERNAL_NAME="crabout" LEGAL_COPYRIGHT="Copyright ©1991 -2001 Crystal Decisions Inc" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="10.0.0.23" UPTO_BIN_PRODUCT_VERSION="10.0.0.533" LINK_DATE="12/10/2003 09:28:45" UPTO_LINK_DATE="12/10/2003 09:28:45" VER_LANGUAGE="English (United States) " />
        <MATCHING_FILE NAME="crabout_res_en.dll" SIZE="32851" CHECKSUM="0x630C4905" BIN_FILE_VERSION="10.0.0.23" BIN_PRODUCT_VERSION="10.0.0.533" PRODUCT_VERSION="10.0.0.533" FILE_DESCRIPTION="Resource DLL for crabout" COMPANY_NAME="Crystal Decisions, Inc." PRODUCT_NAME="Crystal Report About Box Dialog " FILE_VERSION="10.0.0.23" ORIGINAL_FILENAME="crabout_res_xx.dll" INTERNAL_NAME="crabout_res_xx" LEGAL_COPYRIGHT="Copyright ©1991 -2001 Crystal Decisions Inc" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="10.0.0.23" UPTO_BIN_PRODUCT_VERSION="10.0.0.533" LINK_DATE="12/10/2003 07:23:23" UPTO_LINK_DATE="12/10/2003 07:23:23" VER_LANGUAGE="English (United States) " />
        <MATCHING_FILE NAME="crw32.exe" SIZE="10448971" CHECKSUM="0x8EE29129" BIN_FILE_VERSION="10.0.5.1506" BIN_PRODUCT_VERSION="10.0.5.1506" PRODUCT_VERSION="10.0.5.1506" FILE_DESCRIPTION="Crystal Reports" COMPANY_NAME="Crystal Decisions" PRODUCT_NAME="Crystal Reports" FILE_VERSION="10.0.5.1506" ORIGINAL_FILENAME="CRW32.EXE" INTERNAL_NAME="CRW" LEGAL_COPYRIGHT="Copyright (c) 1991-2006 Crystal Decisions, Inc." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="10.0.5.1506" UPTO_BIN_PRODUCT_VERSION="10.0.5.1506" LINK_DATE="08/30/2006 19:48:31" UPTO_LINK_DATE="08/30/2006 19:48:31" VER_LANGUAGE="English (Canada) " />
        <MATCHING_FILE NAME="crw32_res_en.dll" SIZE="2543616" CHECKSUM="0x580A253D" BIN_FILE_VERSION="10.0.5.1464" BIN_PRODUCT_VERSION="10.0.5.1464" PRODUCT_VERSION="10.0.5.1464" FILE_DESCRIPTION="Crystal Reports" COMPANY_NAME="Crystal Decisions" PRODUCT_NAME="Crystal Reports" FILE_VERSION="10.0.5.1464" ORIGINAL_FILENAME="CRW32.EXE" INTERNAL_NAME="CRW" LEGAL_COPYRIGHT="Copyright (c) 1991-2006 Crystal Decisions, Inc." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="10.0.5.1464" UPTO_BIN_PRODUCT_VERSION="10.0.5.1464" LINK_DATE="07/19/2006 18:43:36" UPTO_LINK_DATE="07/19/2006 18:43:36" VER_LANGUAGE="English (Canada) " />
        <MATCHING_FILE NAME="crwdnr.dll" SIZE="20539" CHECKSUM="0x45176FE5" BIN_FILE_VERSION="8.0.0.1" BIN_PRODUCT_VERSION="8.0.1.0" PRODUCT_VERSION="8.0.1.0" FILE_DESCRIPTION="Crystal Decisions Physical Server Dll" COMPANY_NAME="Crystal Decisions" PRODUCT_NAME="Crystal Reports" FILE_VERSION="8.0.0.1" ORIGINAL_FILENAME="crwdnr.dll" INTERNAL_NAME="crwdnr" LEGAL_COPYRIGHT="Copyright (c) 1991-1999 Crystal Decisions, Inc.  All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="8.0.0.1" UPTO_BIN_PRODUCT_VERSION="8.0.1.0" LINK_DATE="12/10/2003 09:29:07" UPTO_LINK_DATE="12/10/2003 09:29:07" VER_LANGUAGE="English (United States) " />
        <MATCHING_FILE NAME="myodbc5.dll" SIZE="2351104" CHECKSUM="0x17D2FE64" BIN_FILE_VERSION="5.1.5.0" BIN_PRODUCT_VERSION="5.1.5.0" PRODUCT_VERSION="5, 1, 5, 0" FILE_DESCRIPTION="MySQL ODBC 5.1 Driver" COMPANY_NAME="MySQL AB" PRODUCT_NAME="Connector/ODBC 5.1" FILE_VERSION="5, 1, 5, 0" ORIGINAL_FILENAME="myodbc5.dll" INTERNAL_NAME="myodbc5" LEGAL_COPYRIGHT="Copyright © MySQL AB 1995-2006" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x0" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="5.1.5.0" UPTO_BIN_PRODUCT_VERSION="5.1.5.0" LINK_DATE="08/18/2008 17:15:53" UPTO_LINK_DATE="08/18/2008 17:15:53" VER_LANGUAGE="English (United States) " />
        <MATCHING_FILE NAME="kernel32.dll" SIZE="989696" CHECKSUM="0x7D737C09" BIN_FILE_VERSION="5.1.2600.5512" BIN_PRODUCT_VERSION="5.1.2600.5512" PRODUCT_VERSION="5.1.2600.5512" FILE_DESCRIPTION="Windows NT BASE API Client DLL" COMPANY_NAME="Microsoft Corporation" PRODUCT_NAME="Microsoft® Windows® Operating System" FILE_VERSION="5.1.2600.5512 (xpsp.080413-2111)" ORIGINAL_FILENAME="kernel32" INTERNAL_NAME="kernel32" LEGAL_COPYRIGHT="© Microsoft Corporation. All rights reserved." VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0xF44A2" LINKER_VERSION="0x50001" UPTO_BIN_FILE_VERSION="5.1.2600.5512" UPTO_BIN_PRODUCT_VERSION="5.1.2600.5512" LINK_DATE="04/14/2008 00:11:24" UPTO_LINK_DATE="04/14/2008 00:11:24" VER_LANGUAGE="English (United States) " />
    </EXE>
    </DATABASE>

    PLease give more information about the exact steps taken, on the client, and if necessary, on the server, to reproduce the error.
    eg. are you running it on the client, or saving it to Enterprise and it crashes when viewed from the server?

  • Crystal Report with subreports breaks when running on different databases.

    HI there
    I have a report with 5 subreports on that only works on the database I am designing it on. As soon as I run the report through my application on a database different to the one I design on, it seems to have lost all the parameter fields I created in one of the subreports (the one I have just added, the other 4 work fine) used to link to the main report.
    It then pops up with the Parameter Value box and asks for values for 2 parameters that I do not use to link to the subreport, nor have added to the subreport in design time, and in code when I step through the parameterfields list property, the parameters I added in design time to the subreport are not in the list but somehow these 2 parameter fields have been added to the subreport? These 2 parameters have the same names as some main report parameters which have been set already, but as mentioned these somehow now belong to the subreport.
    When I run the report through my app on the database I design on all parameters are present and the report works fine.
    The parameters in the subreport are all command parameters, linking to a command field, a formula field and another non-command parameter in the main report. All these are set and work fine in the main report.
    I set all the parameter values in code to the main report, and the subreports all use those to link to.
    I am using CR v10.2 with VB2008 using .NET 2.0 framework (although I had similar problems in VB2005), where the report links directly to a SQL databse via commands. There are 4 commands in the main report and one in the problematic subreport. The subreports command incudes a SQL "IF" statement based on one of the parameters I am linking from the main report.
    Please let me know if more info is required.
    Thanks.

    Hello, Eugen;
    I understand you are using Visual Studio .NET 2008 with bundled Crystal Reports Basic for 2008 (10.5). Do you have a full version of Crystal Reports you use to design reports with or are you designing inside Visual Studio .NET?
    I would like to suggest some ways to test and narrow down the issue.
    One subreport appears to be changing the parameters used when the underlying database changes. Is there a change in the Command it is based on?
    Create a simple report using the same command and the same database as is used in the problem subreport. Run it to confirm you get the same data as in the original.
    Now in design, go into Database|Set Datasource location and change to the new datasource. Do a Database|Verify database. Do you see the change in parameter fields you are seeing at runtime? Has the Command changed? Does it run through the application?
    If you see the same change there, it will have to be addressed in the designer first. If it runs well there, let us look further at the application.
    What is the order of your code?
       Open main report
       Logon to database
       Pass parameters
       Open each subreport
       Logon to the database
       Pass parameters
       View the report.
    Do you set all database locations before passing parameters?
    Were any of the parameters created as "NULL" in the designer?
    Once I have the answers to these questions we can look a little further.
    Elaine

  • CRIO application works in interactive mode but broken VIs reported in error log when run built application on target

    I have been getting more than my fair share of grey hairs the past few days because of this. Over the past few months this almost never happened. Lately, after a seemingly minor change to some serial communications code, hardly a single build works without throwing errors like this:
    #OSVers: 6.3
    #OSBuild: Jun 6 2014, 09:14:16
    #AppName: /c/ni-rt/system/lvrt.out
    #Version: 14.0
    #AppKind: AppLib
    #AppModDate:
    InitExecSystem() call to GetCurrProcessNumProcessors() reports: 1 processors
    InitExecSystem() call to GetNumProcessors() reports: 1 processors
    InitExecSystem() will use: 1 processors
    starting LabVIEW Execution System 306708506 Thread 0 , capacity: 1 at [3507679466.00933790, (19:24:26.009337710 2015:02:24)]
    starting LabVIEW Execution System 306708507 Thread 0 , capacity: 1 at [3507679470.59560204, (19:24:30.595601929 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 0 , capacity: 24 at [3507679481.25993776, (19:24:41.259937648 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 1 , capacity: 24 at [3507679481.25993776, (19:24:41.259937648 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 2 , capacity: 24 at [3507679481.25993776, (19:24:41.259937648 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 3 , capacity: 24 at [3507679481.25993776, (19:24:41.259937648 2015:02:24)]
    Thread consumption suspected: 3 Try starting 4 threads
    starting LabVIEW Execution System 2 Thread 4 , capacity: 24 at [3507679515.59324312, (19:25:15.593243004 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 5 , capacity: 24 at [3507679515.59324312, (19:25:15.593243004 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 6 , capacity: 24 at [3507679515.59324312, (19:25:15.593243004 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 7 , capacity: 24 at [3507679515.59324312, (19:25:15.593243004 2015:02:24)]
    Thread consumption suspected: 8 Try starting 1 threads
    starting LabVIEW Execution System 2 Thread 8 , capacity: 24 at [3507679515.73854351, (19:25:15.738543576 2015:02:24)]
    and 
    #Date: TUE, FEB 24, 2015 04:47:22 PM
    #OSName: VxWorks
    #OSVers: 6.3
    #OSBuild: Jun 6 2014, 09:14:16
    #AppName: /c/ni-rt/system/lvrt.out
    #Version: 14.0
    #AppKind: AppLib
    #AppModDate:
    InitExecSystem() call to GetCurrProcessNumProcessors() reports: 1 processors
    InitExecSystem() call to GetNumProcessors() reports: 1 processors
    InitExecSystem() will use: 1 processors
    starting LabVIEW Execution System 306708506 Thread 0 , capacity: 1 at [3507670087.84041262, (16:48:07.840412710 2015:02:24)]
    starting LabVIEW Execution System 306708507 Thread 0 , capacity: 1 at [3507670092.45153570, (16:48:12.451535843 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 0 , capacity: 24 at [3507670103.11840487, (16:48:23.118404925 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 1 , capacity: 24 at [3507670103.11840487, (16:48:23.118404925 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 2 , capacity: 24 at [3507670103.11840487, (16:48:23.118404925 2015:02:24)]
    starting LabVIEW Execution System 2 Thread 3 , capacity: 24 at [3507670103.11840487, (16:48:23.118404925 2015:02:24)]
    VI_BROKEN (0): [VI "NC serial comms protocol.lvlibet Lower Temperature Limit.vi" (0x04667310)]
    VirtualInstrument:etOrClearBadVILibrary - now VI is bad on [VI "NC serial comms protocol.lvlibet Lower Temperature Limit.vi" (0x04667310)]
    this->flags=33563136, compilerError=6
    VI_BROKEN (0): [VI "Heater Control HAL.lvclass:Write Heater Control Active.vi" (0x058c4e98)]
    VirtualInstrument:etOrClearBadVILibrary - now VI is bad on [VI "Heater Control HAL.lvclass:Write Heater Control Active.vi" (0x058c4e98)]
    this->flags=50340352, compilerError=6
    VI_BROKEN (0): [VI "NI_LVConfig.lvlibave Config File.vi" (0x047b7e90)]
    VirtualInstrument:etOrClearBadVILibrary - now VI is bad on [VI "NI_LVConfig.lvlibave Config File.vi" (0x047b7e90)]
    this->flags=33563136, compilerError=6
    and so on.
    This is using a cRIO 9074 running CompactRIO recommended software set  14.0.1 .
    These errors happen right at startup. Memory use is steady in interactive mode, about 20 MB contiguous memory is unallocated out of 128 MB. I have taken pains to prevent allocation and follow cRIO besta practices non concatenated strings array building in loops etc). CPU is 50-60% when running interactive mode.
    Really at my whit's end here, I have tried the various combination of enabling / disabling debugging in the RTEXE, disconnecting typedefs etc. I have not noticed a pattern. 
    Regards,
    MarkCG

    Hello MarkCG,
    What minor changes did you make to the serial communication code? Posting the VI or a screenshot of the VI with the modifications which caused the RTEXE to stop functioning could be useful to troubleshoot the issue. 
    Regards,
    J_Bou

  • Crystal report parameters not available when running from within SAP B1

    Hi
    I have found this problem a few times already and I think it is now about time I find a solution for it.
    On my latest Crystal report, I have 2 parameters.
    The 1e is a dynamic parameter, allowing the user to select multiple groups.
    The 2nd is also a dynamic parameter, allowing the user to select only a single item.
    These parameters works fine in Crystal and do what they are supposed to do.
    After publishing the report in SAP Busines One (SBO) and viewing it from within SBO, the 2 parameter prompts are still there but without the dynamic list to select any data from.
    On a previous report where a parameter has been defined as "Any value can be entered for the parameter" once again worked fine in crystal but from within SBO the parameter allowed no value to be entered.
    Have anyone got a solution for this.
    Regards
    Burger

    Sorry guys
    You have lost me. I have searched the form and I have worked through the whole pdf you suggested.
    I have no idea what I am supposed to do or see or use "ItemGroup@ SELECT ItmsGrpCod, ItmsGrpNam FROM OITB ORDER BY ItmsGrpCod"
    As a test I created a test report with the following parameters to test how it would present itself in B1
    1.     A static parameter with no list. Allow custom Values = True, Allow Multiple Values = True u2013 B1 result. A box that I could enter anything. Defeating the object as I wanted a list of valid options
    2.     A static parameter with no list. Allow custom Values = True, Allow Multiple Values = False u2013 B1 result. A box that I could enter anything. Defeating the object as I wanted a list of valid options
    3.     A static parameter with a list. Allow custom Values = True, Allow Multiple Values = True u2013 B1 result. A box that I could select multiple values from a list. I could not add my own value. Defeating the object as the list is static
    4.     A static parameter with a list. Allow custom Values = True, Allow Multiple Values = False u2013 B1 result. A drop down box where I could select one of the values. Defeating the object as the list is static
    5.     A static parameter with a list. Allow custom Values = False, Allow Multiple Values = False u2013 B1 result. Same as in point 4
    6.     A Dynamic parameter. Allow custom Values = True, Allow Multiple Values = False u2013 B1 result. Same as in point 1 & 2. No Dynamic list returned and can not add own option
    As mentioned. All the parameters work in Crystal as one expect it to. What I am after is what should I change in B1 so that the report works the same as in Crystal.
    Where in B1 should it be changes and to what should it be changed.
    If the changes should be done in crystal to cater for B1 then what should be changes where to what
    I am not that familiar with B1.
    In my test report I use B1 table OITM.
    My parameter is Item (Crystal syntax {?Item}) and I use it in a filter to say {OITM.ItemCode} = {?Item}
    Regards
    Burger

  • View Source stops working when running multiple instances in FF4

    I run two instances of FF each under its own profile. I have different add-on, etc, for each.
    Since upgrading to FF4, View Source is not working in the second instance. After pressing Command-U or otherwise choosing View Source, nothing happens. If I go to the "Window" menu, I see a window listed "Source of ..." but this window is not visible in any way and I can't find it or switch to it.

    Seems to work ok for me but I am using windows XP. I have firefox 3.6 & 4.0 both open, and both have now opened view source windows. Possibly some combination of extensions causes the problem.

  • Installing Clusterware/ASM Grid 11.2.0.1, errored out when running root.sh

    Working through the installation of Clusterware/ASM Grid using 11.2.0.1.
    After running the first root.sh script, no problems. On the second one, getting this error:
    Adding daemon to inittab
    CRS-4124: Oracle High Availability Services startup failed.
    CRS-4000: Command Start failed, or completed with errors.
    ohasd failed to start: Inappropriate ioctl for device
    ohasd failed to start: Inappropriate ioctl for device at /u01/app/grid/1120/grid/crs/install/roothas.pl line 413.
    Any ideas of how to get this running?

    Hi guys,
    I'm having this problem on the second node and in the /var/log files I'm getting these errors.
    Can any one help?
    Regards,
    Ahmed
    May 26 16:05:37 node su(pam_unix)[7567]: session closed for user oracle
    May 26 16:05:37 node logger: Failure in CSS initialization opening OCR.
    May 26 16:05:37 node su(pam_unix)[7571]: session closed for user oracle
    May 26 16:05:37 node logger: Failure in CSS initialization opening OCR.
    May 26 16:05:37 node su(pam_unix)[7570]: session closed for user oracle
    May 26 16:05:37 node logger: Failure in CSS initialization opening OCR.
    May 26 16:05:37 node su(pam_unix)[7583]: session closed for user oracle
    May 26 16:05:37 node logger: Failure in CSS initialization opening OCR.

  • WDA Personalization bug when running multiple instances of the same WDA component

    I have found an issue relative to WDA personalization that it seems to be a bug for me.
    Scenario:
    In my scenario, I have a Web Dynpro component A which has two usages of the same Web Dynpro Component B (USAGE1 and USAGE2).There is a WDA application APPL_A defined to fire WDA component A. I have defined a component configuration COMP_CONF1 for WDA component B and an application configuration APP_CONF1 for WDA application APPL_A. This application configuration applies the same component configuration COMP_CONF1 to both usages USAGE1 and USAGE2.
    Runtime behaviour:
    At runtime, I execute application APPL_A using the application configuration APP_CONF1. When I personalize something in the USAGE1 of WDA component B, the effects does not appear in USAGE2 until a page refresh is done. Obviously, as both usages uses the same component configuration at rutime the effects of personalization should be applied to both, but WDA configuration framework fails to apply the changes instantaneously to USAGE2.
    Have you expermiented this behaviour? Is there any workaround for this?

    I have found an issue relative to WDA personalization that it seems to be a bug for me.
    Scenario:
    In my scenario, I have a Web Dynpro component A which has two usages of the same Web Dynpro Component B (USAGE1 and USAGE2).There is a WDA application APPL_A defined to fire WDA component A. I have defined a component configuration COMP_CONF1 for WDA component B and an application configuration APP_CONF1 for WDA application APPL_A. This application configuration applies the same component configuration COMP_CONF1 to both usages USAGE1 and USAGE2.
    Runtime behaviour:
    At runtime, I execute application APPL_A using the application configuration APP_CONF1. When I personalize something in the USAGE1 of WDA component B, the effects does not appear in USAGE2 until a page refresh is done. Obviously, as both usages uses the same component configuration at rutime the effects of personalization should be applied to both, but WDA configuration framework fails to apply the changes instantaneously to USAGE2.
    Have you expermiented this behaviour? Is there any workaround for this?

  • Crystal Report Viewer 2008 paging error.  Unable to process your request

    Hi everyone,
    I encountered this error today when clicking on the next page button on the Crystal Report Viewer.  I am running Crystal 2008 SP0.  When i click on show detail i get this:
    Programming Error520|/wEWPQL/uNqsCgKLovFcAtm0IoIAoScvAHAoqK76EFApyD1ugPApqWlPcMAsX1vAHAsX1198BAsCEq8AHAtuulPcMAoaMm/kHAoaMg/YCAoSGgI0OAs/lg/YCAsWelPcMArPesvYEAreG34oIAqKak5INAtzilMNAtD9h8wDApmmIoPAti0IoIApuWgI0OAubdht0DAsSe5NMPAqOak5INAqOa9/ICAr39wAOAp79l8IOApnFpvwJAo2nlP4BAsWFxAGAsHe54QMAs/Ok/EBAp7Eo3kCgvyr9gEC9POo2gkC2qGU/gEClfLUnAMCvuWnwQgCmuLjgg4Cnv3bgg8ChuPz6gMCpeOPzAMCl6zX3wECpuuLzAMC3eqToA4CvuWXgg4Czs7nhAwCveXvww0C3OrjoQ0C3eqn4wkCvuW7wQgCnv3Hgg8Cvf3b4A4Cnv2fwg4C0e7nhAwCxei3zAMCw97nhAwC6OONrwUYE9w8XzGf1oPuoIcvJLRvyIbTWg==
    I have a simple .Net page that has a dropdown control that a user can select to pass the parameter for the report.  I have a server side button that gets the report on the onclick event. The code behind is as follows:
    protected void btnReport_Click(object sender, EventArgs e)
            CrystalDecisions.CrystalReports.Engine.ReportDocument Myreport = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
            Myreport.Load(Server.MapPath("Reports/rpt_equipment_summary.rpt"));
            ConnectionInfo crLoginInfo = new ConnectionInfo();
            Database crDatabase;
            Tables crTables;
            CrystalDecisions.CrystalReports.Engine.Table crTable;
            TableLogOnInfo crTableLogOnInfo;
            crLoginInfo.ServerName = "----";
            crLoginInfo.DatabaseName = "------";
            crLoginInfo.UserID = "-----";
            crLoginInfo.Password = "------";
            //Get Table or SP information from report
            crDatabase = Myreport.Database;
            crTables = crDatabase.Tables;
            //Loop through all tables in the report and apply the
            //connection information for each table.
            for (int i = 0; i < crTables.Count; i++)
                crTable = crTables<i>;
                crTableLogOnInfo = crTable.LogOnInfo;
                crTableLogOnInfo.ConnectionInfo =
                crLoginInfo;
                crTable.ApplyLogOnInfo(crTableLogOnInfo);
            //Add Parameter
            ParameterField paramField = new ParameterField();
            ParameterDiscreteValue spValue = new ParameterDiscreteValue();
            ParameterFields ParamFields = new ParameterFields();
            paramField.Name = "@txComments";
            spValue.Value = ddlPastInvoices.SelectedValue.ToString();
            paramField.CurrentValues.Add(spValue);
            ParamFields.Add(paramField);
            CrystalReportViewer1.ParameterFieldInfo = ParamFields;
            CrystalReportViewer1.ReportSource = Myreport;
    Is there something i am missing for paging to work?
    Thanks in advance

    Sorry i forgot to include more information.
    .Net 3.5 and I can view this report fine in Crystal report designer.  I get no error message when I switch pages.  The issue happens when i view the report inside a Crystal report viewer control that i have on the page. 
    <%@ Register assembly="CrystalDecisions.Web, Version=12.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %>
    I haven't tried your sample reports.  Where can i find those?  i have other reports with multiple pages so I can also try using those reports as well. 
    Thanks again,
    Pablo

  • Get blank report in Crystal Report Viewer when exporting to PDF

    I have an application that creates reports in the CrystalReportViewer while at the same time exports a PDF of that report.  I am having a problem in which
    performing the export causes the report in the ReportViewer and the PDF report to be blank. They have the header and column labels but no data.  If I
    comment out the Me.Export(reportExportOptions) line at the end of the exportPDFReport method the report in the ReportViewer works fine, displaying
    data on the report. 
    I have other forms that perfrom this same type of function on different reports and work fine.  In fact they use the same exportPDFReport method.  This leads
    me to believe that a difference in the reports may be causing the problem.  But I can't figure out why.
    I am using .net 3.5 with Crystal Reports 2008 (CR2008) full edition in Visual Studio 2008.  Although the reports that work were probably created using
    VS 2005 and the VS 2005 edition of Crystal, and which have since been updated to CR2008.
    Has anyone else experienced this problem?  If so, how did you resolve it?
    Thanks for any help!
    Code is below
    Public Class frmAgedReceivables
      Inherits CustomWinControls.CustomForm
      Implements ICustomForm
    ... other properties and methods
    Public Sub CreateAgedPremiumsReport()
        Dim billingType As String = "Direct"
        Dim reportType As String = String.Empty
        Dim frmDateProcess As New frmEnterProcessMonth()
        frmDateProcess.pikMonthYear.Value = TurmsController.CodeEffectiveDate
        frmDateProcess.lblMessage.Text = "Enter Processing Date"
        If frmDateProcess.ShowDialog(Me) = Windows.Forms.DialogResult.Cancel Then
          Return
        End If
        Me.InForceStripStatusLabel1.Text = "Creating Report"
        Me.Refresh()
        Dim report As New AgedReceivablesReport()
        report.Load(report.ReportPathAndName)
        Me.Refresh()
        Dim reportParmsArrayList As ArrayList = New ArrayList()
        reportParmsArrayList.Add(report.ParameterFields.Item(0).Name)
        reportParmsArrayList.Add(frmDateProcess.pikMonthYear.Value)
        reportParmsArrayList.Add(report.ParameterFields.Item(1).Name)
        If AgencyBillRadioButton.Checked Then
          billingType = "Agency"
        End If
        reportParmsArrayList.Add(billingType)
        reportParmsArrayList.Add(report.ParameterFields.Item(2).Name)
        reportParmsArrayList.Add(TurmsController.CurrentUser.UserName.Value)
        reportParmsArrayList.Add(report.ParameterFields.Item(3).Name)
        If NAICCheckBox.Checked Then
          reportType = "NAIC"
        End If
        reportParmsArrayList.Add(reportType)
        Dim parms As String() = {frmDateProcess.pikMonthYear.Value, billingType, reportType}
        Me.InForceStripStatusLabel1.Text = "Loading Data"
        Me.Refresh()
        report.getData(parms)
        Dim reportParms() = reportParmsArrayList.ToArray
        report.loadParameters(reportParms)
        report.ExportFileName = Microsoft.VisualBasic.Format(frmDateProcess.pikMonthYear.Value, "yyyyMM") + report.GetType.Name
        report.ExportFormat = CrystalDecisions.Shared.ExportFormatType.PortableDocFormat
        report.exportPDFReport()
        Me.CrystalReportViewer1.ReportSource = report
      End Sub
    End Class  
    Public MustInherit Class TurmsReport
      Inherits CrystalDecisions.CrystalReports.Engine.ReportDocument
    Implements _ITurmsReport
    ... other properties and methods
        Public Sub exportPDFReport() Implements _ITurmsReport.exportPDFReport
          Dim reportExportOptions As New ExportOptions
          Dim reportDiskFileDestinationOptions As New DiskFileDestinationOptions
          Dim reportFormatTypeOptions As New PdfRtfWordFormatOptions
          reportDiskFileDestinationOptions.DiskFileName = getExportPathAndName(ExportType.PDF)
          If Me.UsePageRange _
          AndAlso Me.FirstPageNumber > 0 _
          AndAlso Me.LastPageNumber > 0 Then
            reportFormatTypeOptions.UsePageRange = True
            reportFormatTypeOptions.FirstPageNumber = Me.FirstPageNumber
            reportFormatTypeOptions.LastPageNumber = Me.LastPageNumber
          End If
          With reportExportOptions
            .ExportDestinationType = CrystalDecisions.Shared.ExportDestinationType.DiskFile
            .ExportFormatType = ExportFormatType.PortableDocFormat
            .ExportDestinationOptions = reportDiskFileDestinationOptions
            .ExportFormatOptions = reportFormatTypeOptions
          End With
          If Not System.IO.Directory.Exists(Me.ExportFilePath) Then
            System.IO.Directory.CreateDirectory(Me.ExportFilePath)
          End If
          Me.Export(reportExportOptions)
      End Sub
    End Class 

    Pretty much. 
    Seems I had at one time hard coded a record selection statement that I forgot to remove which caused the report to be blank.  That solved my problem, but there still seems to be an issue in that the Crystal Report Viewer performed differently when I tried to export to PDF (no records displayed) then when I didn't (records displayed).
    Chip

Maybe you are looking for