Problem with OAException Warning Dialog

We have developed a custon page for AME. The page has 3 tabs with each tab page having search option. The results of the search are displayed in an advanced table. We have provided Delete functionality also. The delete is working fine for 1st 10 records of advanced table but it fails for next records that is once we click next(advanced table) and try to delete.
For delete we have shown a warning using Standard OA Exception warning dialog. If we remove this dialog it works fine. There is some issue with Dialog Page.
Can we resolve this issue?

Thanks for the reply..
What i have done for deletion is that i am retaining the rowid. Please check the code.
In controller:
String pgEvent = pageContext.getParameter(EVENT_PARAM);
if (pgEvent.equals("deleteRow"))
     String rowid_var=pageContext.getParameter("currentRowID");
     OAException deleteMessage = new OAException("CPW_BUDGET_APPROVAL: Are you sure you want to delete?");
     OADialogPage dialogPage = new OADialogPage(OAException.WARNING, deleteMessage, null, "", "");
     dialogPage.setOkButtonItemName("DeleteYes");
     dialogPage.setOkButtonToPost(true);
     dialogPage.setNoButtonToPost(true);
     dialogPage.setPostToCallingPage(true);
     dialogPage.setOkButtonLabel("Yes");
     dialogPage.setNoButtonLabel("No");
     java.util.Hashtable formParams = new java.util.Hashtable(0);
     formParams.put("p_rowid",rowid_var);
     dialogPage.setFormParameters(formParams);
     pageContext.redirectToDialogPage(dialogPage);
else if (pageContext.getParameter("DeleteYes")!=null)
     String myPK=pageContext.getParameter("p_rowid");
     Serializable deleteParams[] = {myPK};
     am.invokeMethod("deleteRow", deleteParams);
     OAException msgSuccess1 = new OAException("Deleted",OAException.CONFIRMATION);
     pageContext.putDialogMessage(msgSuccess1);
In AM
public void deleteRow(String rowID)
     CpwBudgetApprovalEOViewImpl vo = getCpwBudgetApprovalEOView1();
     int fetchedRowCount = vo.getFetchedRowCount();
     RowSetIterator deleteIter = vo.createRowSetIterator("deleteIter"); //vo.
     OADBTransaction localOADBTransaction = (OADBTransaction)getOADBTransaction();
     if (fetchedRowCount > 0)
     deleteIter.setRangeStart(0);
     deleteIter.setRangeSize(fetchedRowCount);
     for (int i = 0; i < fetchedRowCount; i++)
          CpwBudgetApprovalEOViewRowImpl row=      (CpwBudgetApprovalEOViewRowImpl)deleteIter.getRowAtRangeIndex(i);
          String thisRowID = row.getRowID().toString();
          if (thisRowID.equals(rowID))
               row.remove();
               getTransaction().commit();
               getOADBTransaction().commit();
               break; // only one possible selected row in this case
     deleteIter.closeRowSetIterator();
If u want me to check something else please provide some more details.
Thanks!!

Similar Messages

  • Problem With File Download Dialog Box

    Hi all,
    I have jsp page that allows a user to export oracle data to excel.
    I have these code in my page:
    <%@ page contentType="application/vnd.ms-excel" %>
    response.setContentType ("application/vnd.ms-excel");
    response.setHeader ("Content Disposition",
    "filename=\"historicalrate.xls\"");
    I run the page and it popups a file download dialog box with Open and Save buttons.
    When I click the Save button a Save As window opens with a hr.xsl file name and Microsoft Excel Workbook(*.xls) as save type. It is what I want.
    The problem I have is when I click the Open button on the file download dialog box it displays data in excel format on a browser well. Then I click File > save as on browser's tool bar the Save As window pop up with no file name and a default Text(tab delimited)(*.txt).
    I need the file name and Microsoft Excel Workbook(*.xls) as default save type.
    Any help would be greatly appreciated.
    Please help
    Thanks

    I have the same problem with hui_ling.
    When user click on "Open", Excel start and open excel file correctly but the file name on excel title bar. 'Cause the file name is in Japanese characters. Any one can help me?
    Message was edited by:
    TNTVN

  • Problem with PJC (Print Dialog) - Forms 10g

    I have a problem with my PJC for Forms 10g r2. When I try to connect and run my PJC (raise Print dialog and put printer name in some text item) I get following message:
    oracle.forms.net.ConnectionException: Forms session <2> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
    When I started application, on Java console I saw this message, so I think the server configuration is fine (I change everything I need in Default.env and FormsWeb.cfg files):
    Loading http://devsrv/forms/java/jESPrintDialog.jar from JAR cache
    What can I change with server configuration or deploying my project to this PJC can work normaly?
    Thanks....

    Hi and thanks!
    I resolve one part of my problem. Tt was about diferent compiler (in JDeveloper 10.1.3 compiler is 1.5 and in my oc4j server JRE is earlier version, so it can`t work normaly).
    I comiled PJC in 1.4 version of compiler and now I can start and run my PJC.
    But, there is another problem:
    this is my part of java code (note: everything work fine except one line when I want to get printer name from select printer dialog):
    try {
    boolean b;
    PrinterJob job = PrinterJob.getPrinterJob();
    b = job.printDialog();
    try {
    return job.getPrintService().getName();
    catch (Exception e) {
    System.out.println("Error: "+e.getMessage());
    return "My error:";
    } catch (Exception e) {
    System.out.println("ERROR: " + e.getMessage());
    return "Problem with PJC [esoft]";
    So, when pjc want to get back printer name
    return job.getPrintService().getName();
    i get following error (on Java console):
    java.lang.NoSuchMethodError
         at happypjc.PDialog.getProperty(PDialog.java:50)
         at oracle.forms.handler.UICommon.onGet(Unknown Source)
         at oracle.forms.engine.Runform.onGetHandler(Unknown Source)
         at oracle.forms.engine.Runform.processMessage(Unknown Source)
         at oracle.forms.engine.Runform.processSet(Unknown Source)
         at oracle.forms.engine.Runform.onMessageReal(Unknown Source)
         at oracle.forms.engine.Runform.onMessage(Unknown Source)
         at oracle.forms.engine.Runform.processEventEnd(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.redispatchEvent(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Can you give me some hint about it. Everything is OK now, except this (very important) peace of code!
    best regards
    mret

  • Problem with 'Save as' dialog

    Hi,
    i have a strange problem with my 'Save as' dialog in all my appications, whenever i 'save as' it goes to my documents folder all the time, it used to go to the last folder i'd saved to. anybody have any clues as to what's going on? also, it doesn't seem to have the little traingles beside the folders anymore, so you can't click on them to quickly see what's in the folders.
    this is on a powerbook Ti 1Ghz running 10.4.7
    thanks

    thanks Peter for trying to help
    ok, i've narrowed down the problem, it seems that when i try and save a file onto one partition of one of my ext drives it won't save to my last save dir but if i save to another partition/drive it works ok, also if i rename the 'dodgy' partition it also seems to work ok, so somehow the name of the drive has become corrupted.
    anybody ever heard of this? or how i could fix this as it's a quite annoying because alot of my audio files are referenced on this partition, so itunes or Cubase (audio sequencer) can't find my files now.

  • Problem with Transaction-Duration Dialog

    Hello All,
    I wonder if somebody could shed a light on the problem that we're having
    with transaction-duration dialog service object. The problem is this.
    When we call the service object and its SQL statement fails (for
    example, because of constraint violation) Forte raises AbortException.
    It also clears the error stack, so we have no way to know what caused
    it, original error ("ORA -... Constraint Violation") disappears. All we
    get is this:
    USER ERROR: Access to a load balanced router member (which is a service
    object) failed for the reasons below.
    Class: qqsp_AbortTransaction with ReasonCode: SP_ER_USERABORT
    Error #: [601, 162]
    Detected at: qqdo_LbRouter::Route at 2
    Last TOOL statement: method tester.test, line 3
    Error Time: Thu Jul 2 15:56:40
    Distributed method called: SO_UmbrellaProxy.testAbortExc (object
    name
    site/sosa_sampleservice_cl0/th_testabort_cl0-bmso0x15d:0x1) from
    partition
    "TH_TestAbort_cl0_Client", (partitionId =
    DC5B2DC0-0EA9-11D2-AFD0-5F72194BAA77:0x15d:0x2, taskId =
    [DC5B2DC0-0EA9-11D2-AFD0-5F72194BAA77:0x15d.4]) in application
    "Forte_cl0", pid 74 on node AANANIEV in environment archenv
    Originator: SP_AO_XACTMGR
    Exception occurred (locally) on partition "Forte_cl0_Client",
    (partitionId
    = DC5B2DC0-0EA9-11D2-AFD0-5F72194BAA77:0x15d:0x1, taskId =
    [DC5B2DC0-0EA9-11D2-AFD0-5F72194BAA77:0x15d:0x1.16]) in
    application
    "Forte_cl0", pid 74 on node AANANIEV in environment archenv.
    USER ERROR: Your transaction was aborted
    Class: qqsp_AbortTransaction with ReasonCode: SP_ER_USERABORT
    Error #: [402, 45]
    Detected at: XactMgr.TXAbort at 1
    Error Time: Thu Jul 2 15:56:40
    Originator: SP_AO_XACTMGR
    Exception occurred (remotely) on partition
    "TH_TestAbort_cl0_Part1-router", (partitionId =
    DC5B2DC0-0EA9-11D2-AFD0-5F72194BAA77:0x15b:0x9, taskId =
    [DC5B2DC0-0EA9-11D2-AFD0-5F72194BAA77:0x15d:0x2.17]) in
    application
    "TH_TestAbort_cl0", pid 18196 on node hp9000_1 in environment
    archenv.
    Has anyone experienced this problem with "transaction-duration" service
    object? Is there any way to find out the cause of "AbortException"? It
    seems impossible to catch the AbortException on the server partition,
    looks like Forte exits right away.
    Everything works fine with "message-duration" dialog, unfortunately it
    is not an option for us because of the way our batch programs were
    designed.
    Any help is greatly appreciated.
    Alexander Ananiev
    Claremont Technology Group
    916-558-4127
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    thanks Peter for trying to help
    ok, i've narrowed down the problem, it seems that when i try and save a file onto one partition of one of my ext drives it won't save to my last save dir but if i save to another partition/drive it works ok, also if i rename the 'dodgy' partition it also seems to work ok, so somehow the name of the drive has become corrupted.
    anybody ever heard of this? or how i could fix this as it's a quite annoying because alot of my audio files are referenced on this partition, so itunes or Cubase (audio sequencer) can't find my files now.

  • Problem with custom print dialog in Illustrator cs3 on OS X

    Hello Illustrator Support Forum,
    I am an IT systems administrator and I have a user that has a problem when printing from Illustrator to our Ricoh photocopier.  The problem is that Illustrator uses its own custom print dialog and not the default mac os x system one.  This prevents the print job from going through because it does not send the required user code along with the print job.
    A work around we found was to print to Adobe Distiller creating a pdf then printing from there but this definately not ideal.
    Any ideas?
    Thank you,
    - Vince

    Hi Larry,
    Thanks for the tip.  This makes it a bit easier of a work-around but its still not a fix for the initial problem of printing directly through Illustrator.

  • Problem with File Open Dialog box

    Gurus,
    I am using Forms 10g with Windows environment .. My requirement is, to display File Open Dialog Box, and whatever file I am selecting it has to open .. I am able to get Dialog box, problem is, when I select a file (for example, test.txt), I cant see the file getting opened .. Can anyone suggest me how to get the desired result ...
    Pasting my code below
    declare
         a varchar2(100);
    begin
         a := WEBUTIL_FILE.FILE_SELECTION_DIALOG('c:\temp','','*.*','c:\temp',OPEN_FILE, TRUE);
    end;
    Regards

    You can see the code in the webutil.pll library.
    FUNCTION CLIENT_GET_FILE_NAME (directory_name Varchar2 := NULL,
                                   file_name      Varchar2 := NULL,
                                   file_filter    Varchar2 := NULL,
                                   message        Varchar2 := NULL,
                                   dialog_type    Number   := OPEN_FILE,
                                   select_file    Boolean  := TRUE) return Varchar2 is                             
    * CLIENT_GET_FILE_NAME
    *   Client (Browser) side implementation of the standard GET_FILE_NAME Built-in
    *   Used to display File Open, Save  and directory listing dialogs
    *   Implemented using calls to WEBUTIL_FILE
    * Version 1.0.0
    * Change History
    *   1.0.0 DRMILLS 23/DEC/2002 - Creation
    \*********************************************************************************/ Here is one example:
    the_file := client_get_file_name('c:/', null, 'All Files (*.*)|*.*|',null,open_file,true);Francois

  • Problem with displaying warning message in exit EXIT_SAPMM06E_012

    Hi,
    I need in EXIT_SAPMM06E_012 exit display warning message.
    I've created klass Y0108MM_Z1 and message 000 in it.
    When i display as error message -> message e000(Y0108MM_Z1).
    everything is fine.
    but when use message w000(Y0108MM_Z1) it doesn't apear.
    Please help it is very important for me.
    Regards,
    Greg.
    Message was edited by:
            Grzegorz Skibinski

    Hi,
    I think message will appear.
    For testing please do from the main screen press Alt+F12 > options> options tab --> check " dialog box at warning message " and test your scenrio.
    Here warning message appear in a dialog box.

  • Problem with a maintenance dialog for a table

    Hi,
    I created a table (ztable) with transaction code SE11 and a transaction (ztransaction) with SE93 to manage this table (ztable).
    When I use the transaction "ztransaction", I have a message like this :
    "The maintenance dialog for ZTABLE is incomplete or not defined".
    What can I do ? How can I complete or define the maintenance dialog ?
    Thanks in advance.
    Regards.
    C.

    First after creating a table you should creat a Table maintenance generator.
    Utilities -> Table Maintenance Generator .
    After creating Maintenance goto
    Environment -> Transaction
    This will succesfully create a transaction for your table
    You should give parameters while creating the transaction.
    UPDATE = 'X'
    VIEWNAME = your table name
    Bhupal

  • Problem with webutil file dialog box when trying to save/open

    Approximately 12 months ago we had this same issue and I think we managed to resolve it with a one off patch. Were getting it on another site now so any info will be much appreicated.
    Basically when using webutil file chooser Client_Get_File_Name to upload/download something to/from the database it works sporadically.
    When we choose a location to upload from or download to. we then click the buttonon the webutil file chooser and the box disapears without doing anything. Sometimes it works ok but i cant find any pattern to it working/not working
    Has anyone else experienced these problems?

    i found it
    patch 6127521
    thanks

  • Problem with print preview dialog action in CS4

    I have a automation plugin for Photoshop that print a image playing a Photoshop print preview dialog.
    The script works on CS3 but not in CS4. There is some specific platform tags (Mac uses 'keyPrintSettings' and 'keyPageFormat' that are OpaqueStructPtr and it's not possible to take the size, and Windows uses 'keySystemInfo' and there is no information about this data) and it's not possible to ignore.
    I attach a sample functions for CS3 (working) and CS4 (not working).
    Some one have information about this problem?

    Hi, try to implement the note 1116359.
    reward if usefull.

  • X6 problems with SMS warning ...

    hello my friends and thanks for pay attention
    I bought X6 days ago :
    when  I Received a sms , there's no warning sign (such as : screen warning , or any SMS logo ) on the screen. and all i have to do is , unlock the cell phone and see there's a sms or not.
    How can I make an warning sign for sms when i Receive sms.
    thanks in advance

    The X6 does not notify you on screen until you unlock the screen. That is normal behaviour. It uses sound and light to notify you of messages.
    The menu light will flash to show that you have a message, unless you have disabled it in the settings. See your user guide for more info.

  • Secure printing problems with the dialog box

    Hi!
    Some one which has problem with the scure dialog box then using secure printing?
    then we print in Adobe acrobat reader X 10.0.1 the dialog box for entring your pin nummer appearing under acrobat, causeing the program to locking until you go to the dialog box and clicking on it and enter the pin. The problem is that adobe not showing the dialog box in front of the printing overall dialog.
    had nog problem with the old 9, it started then we uppgraded. Haw tride a nother driver but haw same issue. And all other programs works greate, word, notepat etc so it is just Adobe that has the problem.. ?
    /J

    Hi!
    Its´s XP sp3 and the printer is a network printer(Toshiba e-studio 4520c)  running a PCL6 driver.
    Screen capture is not so much to see i think, running Swedish interface to. The ordinary dialogbox för printing is the first thing thats pops up, and then adobe reader frezes because the secund box pops up under adobe, you can click on it in the "toolbar" to continue. One thing that is diffrent when you print in adobe is that you can se on the "toolbar" for the popup box for the pin/password box is a Adobe icon on it. It is not so in example when printing in word, ie8 etc.
    The problem is that many users dont see it and thinks the program has stopt working.
    Im now going to try the PS driver from toshibas homepage..
    thanks for help!

  • Problems with Print dialog

    Hello!
    I have two problems with a print dialog. First, I can not set the default page size to A4. Secondly, the program, or at least GUI, hangs, after the dialog is closed. It did not happen in Java 1.4, but it does in Java 1.5. Using the debugger in Netbeans to pause the hung program shows no thread position, and the stack trace window is empty too.
    Here is the code of the method that opend the print dialog and then prints the image. The setEnabled() method disactivates the main window while the dialog is shown.
    * Prints the tactile image. If the printing fails, shows an
    * error message.
    void printTactileImage() throws ImageException, InterruptedException,
         InvocationTargetException {
         DocumentPrint documentPrint = new DocumentPrint(document);
         final PrinterJob printerJob = PrinterJob.getPrinterJob();
         printerJob.setPrintable(documentPrint);
         final HashPrintRequestAttributeSet attributes =
              new HashPrintRequestAttributeSet();
         attributes.add(MediaName.ISO_A4_WHITE);
         final boolean[] print = new boolean[1];
         javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
              public void run() {
                   setEnabled(false);
                   print[0] = printerJob.printDialog(attributes);
         if(print[0]) {
              showStatus(tlte( "printing_dots" ));
              try {
                   printerJob.print(attributes);
              } catch(PrinterException e) {
                   final JFrame thisFrame = this;
                   final String titleString = tlte("shared_error");
                   final String messageString =
                        tlte("shared_could_not_print_document") +
                        e.toString() +
                   javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                        public void run() {
                             JOptionPane.showMessageDialog(thisFrame,
                                  messageString,
                                  titleString,
                                  JOptionPane.ERROR_MESSAGE);
         javax.swing.SwingUtilities.invokeLater(new Runnable() {
              public void run() {
                   setEnabled(true);
    }Thanks!
    Artur

    An additional info about the error dialog: the `OK' button in the dialog did not work, yet the animation in the main window was running at the same time.
    The program was also a bit different when I ran it in Java 1.4 - the print method was probably the same though.
    I have just disabled the animation to check if it causes the problem, but the print dialog and the error dialog were still not responding after opening.
    The method for opening files:
    * Opens a document. Should not be called from the event dispatch
    * thread. If the opening fails, an error message dialog is shown.
    * @param fileName                         file name of the opened document
    void openDocument(String fileName) throws InterruptedException,
         InvocationTargetException {
         final boolean firstDocument = document == null;
         try {
              javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                   public void run() {
                        setEnabled(false);
              File file = new File(fileName);
              String name = file.getName();
              document = new Document(name, fileName,
                   edgeThreshold, textureScale,
                   variableTextureDensity,
                   textureMappingOptions,
                   this);
                   javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                   public void run() {
                        documentView.setDocument(document);
                        documentView.setViewMode(viewMode);
              document.setPrintImageType(tactileImageType);
              setTitle(WINDOW_TITLE_PREFIX + " - " + name);
              javax.swing.SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        if(firstDocument)
                             setEnabledDocumentOperationComponents(true);
                        setEnabled(true);
         } catch(DocumentException e) {
              final JFrame thisFrame = this;
              Object[] messageArguments = {
                   new String(fileName)
              final String messageString =
                   new MessageFormat(tlte( "shared_could_not_open_file" ), getLocale()).
                        format(messageArguments) +
                   ":\n" + e.toString() + ".";
              javax.swing.SwingUtilities.invokeAndWait(new Runnable() {
                   public void run() {
                        JOptionPane.showMessageDialog(thisFrame,
                             messageString,
                             tlte("shared_error"),
                             JOptionPane.ERROR_MESSAGE);
              setEnabled(true);
    }

  • How to Suppress Warning Dialogs in Photoshop CS3

    Hi All,
         I am automating photoshop to process image conversion(using python and appscript) and at times photoshop comes up with a "Warning Dialogs" for some images when trying to open. I tried to suppress this warning when opening a PDF file by using the options
    PDF_open_options -- Settings related to opening a generic PDF document
    Inherits from:open_options
    Properties:
    suppress_warnings boolean -- supress any warnings that may occur during opening
    Still Photoshop opens the warning dialogs.I want a solution so that I can manually or programatically(using appscript or python) make photoshop not to show any warning dialogs.

    Yep hade a solution
    You are welcome to try this for what its worth. It should do 2 things. First if there is a Photoshop "warning" record the info the dismiss the dialog proceed with file else record the "error" info kicked back to AppleScript but not process this file. This is a far as I got with this and you would be well advised to do some testing of your own. Requires Enable access for assistive devices this is in system prefs.
    property Error_Report : (path to desktop folder as Unicode text) & "Problem Image Report.txt"
    global PS_Info
    set PS_Info to ""
    set The_File to choose file
    tell application "Adobe Photoshop CS3"
    activate
    try
    with timeout of 2 seconds
    open The_File
    end timeout
    on error
    my Check_For_Dialogs()
    tell application "System Events"
    tell application process "Adobe Photoshop CS3"
    keystroke return
    end tell
    my Problem_Images(The_File, PS_Info)
    end tell
    end try
    if exists document 1 then
    set Doc_Ref to the current document
    tell Doc_Ref
    -- do your stuff here
    end tell
    end if
    end tell
    on Check_For_Dialogs()
    -- This should catch the text of a Photoshop warning dialog
    try
    tell application "System Events"
    if UI elements enabled then
    tell window 1 of application process "Adobe Photoshop CS2"
    if title contains "Adobe Photoshop" then set PS_Info to value of static text 2
    end tell
    else
    tell application "System Preferences"
    activate
    set current pane to pane "com.apple.preference.universalaccess"
    display dialog "UI element scripting is not enabled. Check \"Enable access for assistive devices\""
    end tell
    end if
    end tell
    return PS_Info
    -- This should catch an error kicked back to AppleScript
    on error eM number eN
    set PS_Info to "Error: " & eN & ". " & eM
    return PS_Info
    end try
    end Check_For_Dialogs
    on Problem_Images(The_File, PS_Info)
    -- Whatever info about the file you want a record of…
    set File_Name to name of (info for The_File)
    -- String of records to write to "Problem Image Report" text file…
    set The_Info to File_Name & tab & PS_Info & return
    try
    open for access file the Error_Report with write permission
    write The_Info to file the Error_Report starting at eof
    close access file the Error_Report
    on error
    close access file the Error_Report
    end try
    end Problem_Images
    Writes out a report at desktop with info like:
    11234567890 copy 3.tif Error: -2763. Cannot open the file because the open options are incorrect
    hfgfhr.jpg This document may be damaged (the file may be truncated or incomplete).  Continue?

Maybe you are looking for

  • Multiple Email accounts and 1 reply to address

    I have 3 Email accounts setup on my Iphone one is Gmail one is .mac and the third is my Exchange IMAP email. my question is when i send an email from either my .mac account or my Exchange IMAP account and when the person replies to the message it aut

  • Moved computers - Error messages - podcasts won't sync - multiple problems

    I just moved my itunes and ipod from a macbook to a PC (I love the apples but I can't afford to buy them). When I plug in my ipod I get two very similar error messages that must be cleared before my ipod will sync (which is very annoying if you're in

  • Deleting duplicate rows based on three columns in Oracle 8i

    Hi all, The database we use is Oracle 8i. The query below raises the too_many_rows exception when I launch an application. So I want to delete the duplicated rows : select polarisation_1, polarisation_2 into v_pol1_tech, v_pol2_tech from v_cfh_lien_e

  • Mail package in 10g

    hi, i have just compiled a package called UTL_MAIL from utlmail.sql as sys user can i give priveleges to other users to access this package, coz i have failed in doing so it gives an error , table/view doesnot exist after i run the following command

  • Get part of string

    I have the following string: jdbc:odbc:dbName I wish to get "dbName" from the string?