NullPointerException when opening report on Windows.

We have to develop report by use crystal report on window and run by Eclipse 3.2 and use java 6.0
By set font is 'Code 39' then when we run program form Eclipse.
It show java.lang.NullPointerException. I don't know that what does it occur from problem?

I don't know that what line which occur this exception. Then I copy all code to you. Please help me.
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8"%>
<jsp:useBean id="viewBean"
     class="th.co.snp.factoryorder.view.form.PrintOutOrdSheetForm"
     scope="request" />
<%@page import="com.crystaldecisions.reports.sdk.ReportClientDocument"%>
<%@page import="com.crystaldecisions.sdk.occa.report.exportoptions.*"%>
<%@page import="com.crystaldecisions.report.web.viewer.*"%>
<%@page import="java.sql.*"%>
<%@page import="th.co.palsys.common.util.DBConn"%>
<%@page import="th.co.snp.common.util.Constant"%>
<%
      /* Applies to Versions:     XI
Date Created: February 2005
Description: This sample demonstrates how to pass a Java Resultset to a report as a datasource at runtime using the 
            (JRC) SDK.
Author: CW
     ReportClientDocument reportClientDocument = new ReportClientDocument();
     DBConn db = new DBConn();
     java.sql.Connection conn = null;
     Statement st = null;
     Statement st2 = null;
     Statement st3 = null;
     try {
          //SQL query that can be used can be obtained by first creating a report directly off the desired datasource, and then
          //in Crystal Reports, open the 'Database' > 'Show SQL Query' to see the SQL generated for the report. 
          String query1 = "My query1"; // I remove query becuase more line.
          String query2 = "My query2"; // I remove query becuase more line.
          String query3 = "My query3"; // I remove query becuase more line
          conn = db.getConnection();
          //Call simple utility function that obtains Java Result set that will be
          //pushed into the report. 
          st = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
          ResultSet.CONCUR_READ_ONLY);
          ResultSet resultSet = st.executeQuery(query1);
          st2 = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
          ResultSet.CONCUR_READ_ONLY);
          ResultSet resultSet2 = st2.executeQuery(query2);
          st3 = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
          ResultSet.CONCUR_READ_ONLY);
          ResultSet resultSet3 = st3.executeQuery(query3);
          if (!resultSet.next()) {
               conn.close();
               response.sendRedirect("message.html");
          resultSet.beforeFirst();
          reportClientDocument.open("CR/ConditioningOrderSheet.rpt", 0);
          String tableName = reportClientDocument.getDatabaseController()
          .getDatabase().getTables().getTable(0).getName();
          String SubReport = reportClientDocument
          .getSubreportController().getSubreport("SubFATRep06")
          .getDatabaseController().getDatabase().getTables()
          .getTable(0).getName();
          String SubReport2 = reportClientDocument
          .getSubreportController().getSubreport("SubFATRep06_2")
          .getDatabaseController().getDatabase().getTables()
          .getTable(0).getName();
          //Push the Java Resultset into the report.  This will then become the datasource of the report when the report itself
          //is generated.
          //reportClientDocument.getDatabaseController().setDataSource(resultSet, tableName , "resultTbl");
          reportClientDocument.getDatabaseController().setDataSource(
          resultSet, tableName, tableName);
          reportClientDocument.getSubreportController().getSubreport(
          "SubFATRep06").getDatabaseController().setDataSource(
          resultSet2, SubReport, SubReport);
          reportClientDocument.getSubreportController().getSubreport(
          "SubFATRep06_2").getDatabaseController().setDataSource(
          resultSet3, SubReport2, SubReport2);
          //Cache the report source of the ReportClientDocument in session.
          session.setAttribute("reportSource", reportClientDocument
          .getReportSource());
          ExportOptions oExportOptions = new ExportOptions();
          oExportOptions.setExportFormatType(ReportExportFormat.PDF);
          ReportExportControl oReportExportControl = new ReportExportControl();
          oReportExportControl.setReportSource(reportClientDocument.getReportSource());
          //Pass the report source to the ReportExportControl and set the ExportOptions
          oReportExportControl.setExportOptions(oExportOptions);
          //ExportAsAtttachment(true) prompts for open or save; false opens the report
          //  in the speficied format after exporting.
          oReportExportControl.setExportAsAttachment(true);
          //Export the report
          oReportExportControl.processHttpRequest(request, response,getServletConfig().getServletContext(), null);
          oReportExportControl.dispose();
     } catch (Exception e) {
          out.println(e);
     } finally {
          try {
               if (conn != null) {
          conn.close();
          } catch (SQLException e1) {
%>
PS. If I don't set font 'code39' on field in crystal report . It can open report form this sourcecode.

Similar Messages

  • NullPointerException when opening report on Linux ( Windows works ok )

    Our project is designed for Windows and Linux platform thus we need to generate Reports on both of this systems. However we noticed that behaviour of these libraries differes, depending on system they are used on. The same code on the Windows platform opens given report and prints it on expected devices. On Linux platform we are getting following exception:
    Exception in thread "Crystal" java.lang.NullPointerException
          at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.do(Unknown Source)
          at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
          at com.crystaldecisions.sdk.occa.report.application.ClientDocument.for(Unknown Source)
          at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.for(Unknown Source)
          at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
          at com.ppl.outputservice.crystalplugin.JobTemplate.openReport(JobTemplate.java:306)
          at com.ppl.outputservice.crystalplugin.JobManager.openJob(JobManager.java:120)
          at com.ppl.outputservice.crystalplugin.JobManager.performJob(JobManager.java:130)
          at CrystalPlugin.setParameter(CrystalPlugin.java:102)
          at com.ppl.outputservice.plugin.CrystalJavaPlugin.sendCommand(CrystalJavaPlugin.java:746)
          at com.ppl.outputservice.plugin.CrystalJavaPlugin.run(CrystalJavaPlugin.java:609)
          at java.lang.Thread.run(Thread.java:619) 
    The same happens with reports created with Crystal Reports 11 and Crystal Reports 2008.
    Unfortunatelly we have no possibility to check what makes the code to fail it's execution
    The second thing is that reports are not printed on the Linux OS ( Fedora6 ) . We are getting empty pages.
    The same happens with CupsPDF and real Laser Jet printer.

    In my 12.2.202.566, there's no such method as:
    com.crystaldecisions.sdk.occa.report.application.ReportAppSession.do
    that you have listed in your stack trace.
    Do you happen to have a rasapp.jar file in your build?  That's not part of Crystal Reports for Eclipse 2.0.
    I first recommend removing all jars, and copying in fresh.  You're having what I think is a bad mix of jar files.
    Sincerely,
    Ted Ueda

  • How can I turn off Recently Websites when opening new Safari window? After tapping on the two overlapping boxes on the bottom right of Safari, a new blank window appears with Favorites, but now in iOS 8, recently viewed websites are listed.

    How can I turn off Recently Visited Websites when opening new Safari window?
    After tapping on the two overlapping boxes on the bottom right of Safari, a new blank window appears with Favorites, but now in iOS 8, recently viewed websites are listed. How can I turn this function off? I do NOT want my new Safari windows to have history displayed of previous websites I visited. I only want my Favorites (on the top) to be displayed. Please help.
    Thank you for your time, patience, understanding, kindness, and concern.

    Thanks for replying, but that isn't the answer I am looking for.  Also, there is no + sign, UNLESS you do tap the overlapping boxes.
    Let me try to ask my question a little more clearly:
    When I tap the two overlapping boxes on the lower left (the option to Open New Windows), the new Window that appears will show your Bookmarked FAVORITES. But with my new iPhone 6, and the new iOS 8.0.2, when I tap the two boxes to open a New Window, my Bookmark Favorites show (as they always have and should), but below them, there is a dividing line underneath them, and it says Recently Viewed Websites, and has these websites available to tap.
    So my question is, HOW DO I TURN THESE OPTION OFF?
    *UPDATE  (10.13.14): Since I have asked this question, I no longer see these Recently Viewed Websites under my Bookmarked Favorites in my new Window tabs. So I hope that Apple fixed it, or somehow it was a mistake, or somehow I changed an Option on my iPhone 6 that stopped this for reoccurring.
    Thank you for your help bobseufert! I appreciate your concern, kindness, and the time to try to help. I am grateful.
    Have a blessed day.

  • Database logon failed when opening report with parameter values in CrystalReportViewer

    Hi,
    I designed 2 crystal reports: report A contains parameter fields and report B did not contain any parameter
    I can open both reports in development site using CrystalReportViewer control. When I open the reports in testing site,
    I can open report B but can't open report A. It display error message "Database logon failed". When I set EnableDatabaseLogonPrompt
    to true and try to open the report A again, it shows database connection data which was created on report.
    In addition, it is strange that it displays error "Database logon failed" when I click an item in group tree panel of the report B. This indicates that it can load data from database
    in testing site but it connect to development database when clicking items in group tree panel
    All reports connect to database using Windows Authenication. It use dynamic database connection at runtime
    How to ensure the report always connect database using login data dynamically at runtime?
    Below is my code about database connection:
    string strServerName = null;
    string strDatabaseName = null;
    ReportDocument rptDoc = new ReportDocument();
    rptDoc.Load(strFilePath);
    ConnectionInfo connInfo = new ConnectionInfo();
    TableLogOnInfo logonInfo;
    for (int i = 0; i < rptDoc.Database.Tables.Count; i++)
    logonInfo = rptDoc.Database.Tables[i].LogOnInfo;
    ReportHelper.GetReportConnection(ref strServerName, ref strDatabaseName, strSystemType);
    logonInfo.ConnectionInfo.ServerName = strServerName; 
    logonInfo.ConnectionInfo.DatabaseName = strDatabaseName;
    logonInfo.ConnectionInfo.IntegratedSecurity = true;
    rptDoc.Database.Tables[i].ApplyLogOnInfo(logonInfo);
    rptDoc.Database.Tables[i].Location = rptDoc.Database.Tables[i].Location.Substring(0, rptDoc.Database.Tables[i].Location.Length - 2);
    crvViewer.ReportSource = rptDoc;
    crvViewer.DataBind();
    Development environment:
    - SAP Crystal Reports 2013 Support Pack 1
    - Visual Studio Professional 2012
    - .NET Framework 3.5
    - DDL
    CrystalDecisions.Shared (v 13.0.8.1216)
    CrystalDecisions.Web (v 13.0.8.1216)
    CrystalDecisions.CrystalReports.Engine (v 13.0.8.1216)
    Database connection in crystal report:
    - Database Type: OLEDB (ADO)
    - Provider: SQLOLEDB
    - Integrated Security: True
    Thanks and Regards,
    Tony

    Hi Tonylck
    Try  to pass login info to crystal report dynamically as follows:
    using System;
    using System.Windows.Forms;
    using CrystalDecisions.CrystalReports.Engine;
    using CrystalDecisions.Shared;
    namespace WindowsApplication1
    public partial class Form1 : Form
    public Form1()
    InitializeComponent();
    private void button1_Click(object sender, EventArgs e)
    ReportDocument cryRpt = new ReportDocument();
    TableLogOnInfos crtableLogoninfos = new TableLogOnInfos();
    TableLogOnInfo crtableLogoninfo = new TableLogOnInfo();
    ConnectionInfo crConnectionInfo = new ConnectionInfo();
    Tables CrTables ;
    cryRpt.Load("PUT CRYSTAL REPORT PATH HERE\CrystalReport1.rpt");
    crConnectionInfo.ServerName = "YOUR SERVER NAME";
    crConnectionInfo.DatabaseName = "YOUR DATABASE NAME";
    crConnectionInfo.UserID = "YOUR DATABASE USERNAME";
    crConnectionInfo.Password = "YOUR DATABASE PASSWORD";
    CrTables = cryRpt.Database.Tables ;
    foreach (CrystalDecisions.CrystalReports.Engine.Table CrTable in CrTables)
    crtableLogoninfo = CrTable.LogOnInfo;
    crtableLogoninfo.ConnectionInfo = crConnectionInfo;
    CrTable.ApplyLogOnInfo(crtableLogoninfo);
    crystalReportViewer1.ReportSource = cryRpt;
    crystalReportViewer1.Refresh();
    Ref
    http://csharp.net-informations.com/crystal-reports/csharp-crystal-reports-dynamic-login.htm
    Mark as answer if you find it useful
    Shridhar J Joshi Thanks a lot

  • "Software Usage Metrics initialize failed" error when open Report Manager, after moving ReportServer from SSRS 2008 to SSRS 2012 (Native Mode)

    I've asked this question in SQL Server Upgrade forume, I'm asking here as well:
    Your help is highly appreciated!
    After migrating ReportServer db from 2008 to 2012, when access Report Manager throughhttp://myserver:80/Reports, I got the error below:
    ui!ReportManager_0-3!11d8!02/04/2013-15:19:12:: e ERROR: Software Usage Metrics initialize failed
    The process is below:
    •I successfully installed SQL Server 2012 (64-bit) Enterprise as a Native Mode on a server who runs Windows 7 Enterprise SP1 (64-bit).
    •I restored "ReportServer2008To2012" and "ReportServer2008To2012TempDB" in SSRS 2012 from the db files backed up in SQL 2008. In SSRS 2008, I have SSRS Model, ad-hoc reports based on model, and I also have canned reports built through BIDS
    report server project.
    •I reconfigured both databases' Compatibility level to SQL Server 2012(110) from SQL Server 2008(100).
    •I configured SSRS through Reporting Services Configuration Manager as below:
      > I chosen "Use built-in account:" as Service Account
    > In "Database" tab, I selected "Choose an existing report server database" and choose "ReportServer2008To2012" db, I used "Windows Authentication" (my login has the System Administrator priviledge). I got all 4 parts
    success: Verifying database sku = Success; Generating rights scripts = Success; Applying connection rights = Success; Setting DSN = Success.
    > I went to "Scale-out Deployment" to check if the initializing succeed, I found nothing there.
    Here are what I did from different approaches:
    A •I went to "Encryption Keys" and restored the key I backed up from SSRS 2008, after retoring, I got two initialized instances: One is on my current server (SSRS 2012), the other one is from the old server (SSRS 2008).
       I deleted the old one(SSRS 2008) through "Remove Server" action and kept the one on my current server(SSRS 2012).
       After I restart SSRS service, and tried to connect Report Manager, I got "An internal error occurred on the report server. See the error log for more details."
       I checked the log file, the error is actually "ERROR: Software Usage Metrics initialize failed"
    B •I also tried to "Delete Encrypted Content" and did see the SSRS was initialized through checking it on "Scale-out Deployment", however when I tried to open Report Manager, I got the same error.
    Anyone had the same issue? Any solution? Thanks in advance!

    Your help is highly appreciated!
    After migrating ReportServer db from 2008 to 2012, when access Report Manager through
    http://myserver:80/Reports, I got the error below:
    ui!ReportManager_0-3!11d8!02/04/2013-15:19:12:: e ERROR: Software Usage Metrics initialize failed
    The process is below:
    •I successfully installed SQL Server 2012 (64-bit) Enterprise as a Native Mode on a server who runs Windows 7 Enterprise SP1 (64-bit).
    •I restored "ReportServer2008To2012" and "ReportServer2008To2012TempDB" in SSRS 2012 from the db files backed up in SQL 2008. In SSRS 2008, I have SSRS Model, ad-hoc reports based on model, and I also have canned reports built through BIDS
    report server project.
    •I reconfigured both databases' Compatibility level to SQL Server 2012(110) from SQL Server 2008(100).
    •I configured SSRS through Reporting Services Configuration Manager as below:
     > I chosen "Use built-in account:" as Service Account
     > In "Database" tab, I selected "Choose an existing report server database" and choose "ReportServer2008To2012" db, I used "Windows Authentication" (my login has the System Administrator priviledge). I got all
    4 parts success: Verifying database sku = Success; Generating rights scripts = Success; Applying connection rights = Success; Setting DSN = Success.
     > I went to "Scale-out Deployment" to check if the initializing succeed, I found nothing there.
    Here are what I did from different approaches:
    A •I went to "Encryption Keys" and restored the key I backed up from SSRS 2008, after retoring, I got two initialized instances: One is on my current server (SSRS 2012), the other one is from the old server (SSRS 2008).
       I deleted the old one(SSRS 2008) through "Remove Server" action and kept the one on my current server(SSRS 2012).
       After I restart SSRS service, and tried to connect Report Manager, I got "An internal error occurred on the report server. See the error log for more details."
       I checked the log file, the error is actually "ERROR: Software Usage Metrics initialize failed"
    B •I also tried to "Delete Encrypted Content" and did see the SSRS was initialized through checking it on "Scale-out Deployment", however when I tried to open Report Manager, I got the same error.
    Anyone had the same issue? Any solution? Thanks in advance!

  • Firefox crashes when opening a new window

    Firefox opens normally and runs properly -- until I close all its windows. When zero windows are present, and I return to Firefox and ask for a new window, Firefox hangs. To resolve the problem I must Force Quit the app, which generates a crash report to Apple. Occasionally Firefox has crashed on its own and generated a crash report to Mozilla, but this is rare. I have tried disabling all add-ons, but that had no effect.
    As long as there is at least one Firefox window open, the app functions normally. This problem only occurs when going from zero windows to one window.

    Try to repair the disk permissions:
    *http://thexlab.com/faqs/repairprocess.html
    Try to remove the Firefox plist file (org.mozilla.firefox.plist).
    *http://www.macfixit.com/article.php?story=20060606082246983 How .plist files become corrupt and troubleshooting the results
    Go to "~/Library/Preferences" and remove the plist file for Firefox (org.mozilla.firefox.plist)
    You can also check for problems with the localstore.rdf file.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • When opening a second window, homepage doesn't open and can't access any other site, stays a blank white screen.

    After updating to Firefox 6, every time I open a second window, all I get is a blank, white page. My homepage doesn't open, either, even when I hit the home button. I have to manually type in my homepage address, and then, it's the only address that will show in the address bar, even after I leave the page or open any other tabs. The same thing happens when I open new tabs in the second window. Also, the back and forward arrows, stop, and refresh buttons do not work in the second window. None of the short-cut keys on the keyboard will work with in the second window, either. Most of the time, any page that I go to, in the second window, continues to load, never fully loading.
    I even went back to Firefox 5 to see if that would solve the problem, but it didn't. I still have the same issues.
    Everything appears to be working fine in the first window.
    How can I clear all this up?
    EDIT: I waited a few days and reinstalled Firefox 6.0 and everything seems to be working okay.

    There's a good chance this is related to a bug that kicks in when you do not have Flash running in any tab and you open a new window to a page that does use Flash. The details are in this recent thread: [https://support.mozilla.org/en-US/questions/955659 Opening New Windows and Shockwave Flash].
    I don't know whether opening a Flash site in a private window makes this problem occur more frequently. Maybe it does because the new window is more isolated from the previous one???

  • Upgraded Firefox is hanging. When Firefox opens none of the bookmakrs are available immediately. They hang for a monent. When opening up a window in an application (i.e., email address search) the window hangs.

    When opening Firefox, the bookmarks hang for up to 30 seconds before they can be accessed. Also have a hanging issue when opening a window/pop-up within an application (i.e., email search window).
    == This happened ==
    Every time Firefox opened
    == After automatic upgrade

    Unless the schedule it's running on is every single time I open Firefox (including closing it & reopening it right away), I don't think that's the case. Also, I don't have any of these issues on the PC I switched back to v3.6 on. That one runs smoothly whether I run Ccleaner, registry optimizers, clear the cache & history or whatever. I thought after you first gave me the answer of deleting the session files that they must've got corrupted during the upgrade, but it seems that v4 just doesn't do a good job of retaining or maintaining those files without getting them corrupt or something.
    If this is not an issue with everyone & I'm having it on both my PCs, then v4 has an issue with something that I install on my PCs that, I guess, many others don't although I don't know what that could be and I use everything I install or have running. So, I'm just going back to what works without having to dismantle my config one prog at a time to try to find what v4 may be finicky about.
    By the way, I did check & couldn't find any cleaners that run automatically on my PCs.

  • When opening Firefox many windows open.

    When I open firefox, many windows open--up to 70. I stopped this behavior once by having Firefox not open my last session and opening a default window session a few times. I then set Firefox to open the last session again. After a few starts the problem has returned. I very much need Firefox to recover my tabs from previous sessions as it did cleanly in the past.

    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • NullPointerException when opening a script in SQL Developer 4.0.0.12

    I recently upgraded to SQL Developer v.4.0.0.12 64 bit, and am running into some issues.
    I am running this on 64 bit Windows 7. I have a 64 bit Oracle 11, and in addition have the 32 bit oracle client installed.
    I made an association between the .sql file extension and sqldeveloper64W.exe.
    However I frequently get a nullpointerexception when clicking on a script in the file explorer.
    It seems to occur mostly if I loaded scripts into SQL Developer before.
    If I close all the windows before closing SQL Developer and then click on a script in the file manager, things work (startup is arguably slower than v.3).
    But in most cases either nothing happens, or I get the NullPointerException below.
    What am I doing wrong?
    Regards,
    Wim
    java.lang.NullPointerException
      at oracle.dbtools.raptor.plsql.FindHighlightListener.editorDeactivated(FindHighlightListener.java:63)
      at com.oracle.jdeveloper.nbwindowsystem.NbEditorManager.fireEditorEvent(NbEditorManager.java:1315)
      at com.oracle.jdeveloper.nbwindowsystem.NbEditorManager.handleEditorEvent(NbEditorManager.java:1294)
      at com.oracle.jdeveloper.nbwindowsystem.NbEditorManager.whenCurrentEditorChanges(NbEditorManager.java:1556)
      at com.oracle.jdeveloper.nbwindowsystem.editor.TabGroup.whenCurrentEditorChanges(TabGroup.java:1026)
      at com.oracle.jdeveloper.nbwindowsystem.editor.TabGroup.setCurrentTabGroupState(TabGroup.java:847)
      at com.oracle.jdeveloper.nbwindowsystem.editor.TabGroup.addTabGroupState(TabGroup.java:129)
      at com.oracle.jdeveloper.nbwindowsystem.NbEditorManager.createEditor(NbEditorManager.java:534)
      at com.oracle.jdeveloper.nbwindowsystem.NbEditorManager.createEditor(NbEditorManager.java:511)
      at com.oracle.jdeveloper.nbwindowsystem.NbEditorManager.openEditor(NbEditorManager.java:379)
      at oracle.ide.cmd.OpenCommand.openWithNoProject(OpenCommand.java:337)
      at oracle.ide.cmd.OpenCommand.access$100(OpenCommand.java:62)
      at oracle.ide.cmd.OpenCommand$1.run(OpenCommand.java:266)
      at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
      at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:733)
      at java.awt.EventQueue.access$200(EventQueue.java:103)
      at java.awt.EventQueue$3.run(EventQueue.java:694)
      at java.awt.EventQueue$3.run(EventQueue.java:692)
      at java.security.AccessController.doPrivileged(Native Method)
      at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
      at java.awt.EventQueue.dispatchEvent(EventQueue.java:703)
      at oracle.javatools.internal.ui.EventQueueWrapper._dispatchEvent(EventQueueWrapper.java:169)
      at oracle.javatools.internal.ui.EventQueueWrapper.dispatchEvent(EventQueueWrapper.java:151)
      at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
      at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
      at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
      at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
      at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

    Please refer to this White paper for how to generate PL/SQL package for workflow deployment:
    Oracle Data Miner (Extension of SQL Developer 4.0)
    Generate a PL/SQL script for workflow deployment
    http://www.oracle.com/technetwork/database/options/advanced-analytics/odmrcodegenwhitepaper-2042206.pdf

  • Previous window opens when opening a new window

    When I have a number of windows open, and am looking at, say the third window and wish to open a new window, the last window in the sequence opens just before the new window.
    Although the new window will be on screen, as soon as I close the new window, instead of going back to my last viewed window, it goes to the last window in the bar.......it is very annoying and would like to get rid of this problem.

    What's an "I bar?"
    Tip: Ctrl+E will place your cursor in IE8's Search box.
    You will find Consumer support for IE8 in this forum:
    http://answers.microsoft.com/en-us/ie/forum/ie8
    ~Robear Dyer (PA Bear) MS MVP-Windows Client since 2002 Disclaimer: MS MVPs neither represent nor work for Microsoft

  • When opening a new window, it just stays blank. For instance when I try to play a card game in yahoo games.

    When I go to open a new window by the result of trying to open something on a page, the new window stays blank. There is no error message or anything, it just stays blank.

    It could be the work of one of your add-ons, or even add / mal-ware.
    Look thru your add-ons list and make sure you know what each one is
    there for. Also, check the programs that are on your computer
    '''Windows > Start > Control Panel > Uninstall Programs.'''
    '''(Mac: Open the "Applications" folder)'''
    Go thru the list and use a web search to check any that you don't
    know what they are.
    '''''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-caused-malware Troubleshoot Firefox Issues Caused By Malware]''''' {web link}

  • When opening a new window stopping the I bar from automatically showing up in the address bar instead of the search bar

    I want the I bar to start in the search bar when opening a new page NOT the address bar.
    Thank You.

    What's an "I bar?"
    Tip: Ctrl+E will place your cursor in IE8's Search box.
    You will find Consumer support for IE8 in this forum:
    http://answers.microsoft.com/en-us/ie/forum/ie8
    ~Robear Dyer (PA Bear) MS MVP-Windows Client since 2002 Disclaimer: MS MVPs neither represent nor work for Microsoft

  • Profiler 'Crashes' when opening report on sampling

    I was trying to figure out which part of EMET was causing Visual Studio to lockup for a few seconds when opening the debugging menu the first time, and this happened:
    (I used Sampling, and this is after I closed the version I was debugging)
    Profiler stopping.
    Profiler stopping.
    Stopping data collection.
    Merging collection data. Please wait...
    Unhandled Exception: System.MissingMethodException: Method not found: 'System.IO.Compression.ZipArchiveEntry System.IO.Compression.ZipArchive.CreateEntry(System.String, System.IO.Compression.CompressionLevel)'.
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VsPerfZip.PackageFiles(IEnumerable`1 files)
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VsPerfZip.Package(List`1 filesToPackage)
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.PackageFiles()
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.Shutdown(Boolean terminateProfilees)
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.WaitForUnblockingEvent()
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.Run()
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.Run(String[] args)
       at Microsoft.VisualStudio.PerformanceTools.Base.VSPerf.Main(String[] args)
    After the exception was thrown, Visual Studio is still waiting for it to complete the operation.
    I am using Visual Studio 2013 (Community Edition) on 64 bit Windows 8.1 Pro.
    EDIT: Visual Studio is locked up now - I think it tried to close it again.

    I was trying to figure out which part of EMET was causing Visual Studio to lockup for a few seconds when opening the debugging menu the first time, and this happened:
    (I used Sampling, and this is after I closed the version I was debugging)
    Profiler stopping.
    Profiler stopping.
    Stopping data collection.
    Merging collection data. Please wait...
    Unhandled Exception: System.MissingMethodException: Method not found: 'System.IO.Compression.ZipArchiveEntry System.IO.Compression.ZipArchive.CreateEntry(System.String, System.IO.Compression.CompressionLevel)'.
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VsPerfZip.PackageFiles(IEnumerable`1 files)
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VsPerfZip.Package(List`1 filesToPackage)
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.PackageFiles()
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.Shutdown(Boolean terminateProfilees)
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.WaitForUnblockingEvent()
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.Run()
       at Microsoft.VisualStudio.PerformanceTools.VSPerfEtwMon.VSPerfEtwMon.Run(String[] args)
       at Microsoft.VisualStudio.PerformanceTools.Base.VSPerf.Main(String[] args)
    After the exception was thrown, Visual Studio is still waiting for it to complete the operation.
    I am using Visual Studio 2013 (Community Edition) on 64 bit Windows 8.1 Pro.
    EDIT: Visual Studio is locked up now - I think it tried to close it again.

  • Print options when opening report in acDialog

    I have a report where, on the close event, I ask the user if they want to post the records. The user's response is captured to a public variable that is then used to branch logic back on the form from which I open the report.
    Consequently, I think I need to open in acDialog so that the code on the form after the OpenReport line does not continue on to the branched logic until the report is closed and the above response is available.
    However, in dialog view, I do not have access to the standard report ribbon--which is how I intended to allow the user to print/export. Yes, I know I can have the user press Ctrl-P, but that is an extra step an end user should not have to know. And yes,
    I know I can use right-click options.
    So my question is twofold. #2 will not be necessary if there is an elegant workaround for #1.
    Is acDialog the best (or only) way to accomplish the wait-for-response in my code on the form?
    How would I get print & export buttons (or the whole default Reports ribbon) available when the report is open acDialog?

    Lawrence,
    The form is where I concatenate the SQL that is the record source of both the report and the subsequent record updates. So the form is always open before the report is opened (that is where the code to open the report resides and is run), and it must remain
    open while the report is open to maintain the value of the variables, including the WHERE clause of the SQL statement that will be used for the posting process when the user closes the report. That is, the SQL used to open the report MUST match the
    SQL used when posting the records, or the user could change some selection parameter and post records not on the report.
    And I open both the form and report modally to prevent a user from inadvertently running the report's Close event outside the context of the form, with its variables all set for the posting process.
    I know I could pass all of this to public variables, but I am trying to keep it as clean and as close to the Form -> Report -> back to Form as I can.

Maybe you are looking for

  • I can not listen to podcasts on my ipod 4

    I can not listen to podcasts from itunes on my ipod 4.  Is there anything I can do to get it to work?

  • Complete hard drive failure.  Advice?

    I was having hard drive issues last month that I thought were resolved, but now I'm pretty sure my internal hard drive in my iBook is totally dead. My internal hard drive started making really bad grinding noises during start up, so I booted my iBook

  • Lenovo in the business environmen​t

     I am evaluating the T61p for distribution in my network. I currently have about 75 Dell Inspiron and Latitudes rolled out to my users. I've always known the ThinkPad to be a reliable and robust system. I have some questions and concerns about the T6

  • Should I install Logic 8 on my new iMac for crying out loud?

    I'd like to - but just wanna make sure... or should I wait for updates before even playing with it? Shall I keep Logic 7.2 on here for any reason? And what do I do about old 7.2 files opening in 8? What happens? Thanks.

  • Hiding Known Folders Not working s2012R2.

    hello all i have a situation where i have to hide known folders from explorer view (on the left hand side) so it just shows the Drives and not Music,Downloads,Pictures, Videos ETC i have configured a User policy to hide known folders based on GUIDS s