Cannot open forms

Hi, i am calling a form from my menu but when i select the called form, the form opens very, very briefly, probably less than half a second cause the menu of the called form briefly shows then it gets back to the original menu. Why is this happening? Please help. Thanks

<BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Deepak Rai, Oracle Support Services ([email protected]):
Hi,
Try replacing the sqllib18.dll file from the Oracle Developer Release 1.6.1 CD-ROM onto your PC:
1. On your PC, note the location of the sqllib18.dll file.
2. On the Oracle Developer Release 1.6.1 CD-ROM, locate the sqllib18.dll file in the following directory:
\patches\1.6.1\patches\rsf73
3. Replace the PC's sqllib18.dll file with a copy of the CD-ROM's version of the sqllib18.dll file.
Best Regards,
Deepak Rai<HR></BLOCKQUOTE>
==========================================
Hi Deepak,
Thanks a lot.
It works now.
Afrul
null

Similar Messages

  • Cannot open form in LifeCycle Designer to edit.

    I have created two forms using LC Designer 8. I now need to edit both forms and cannot open them back up to edit!
    When I try to open both forms Adobe Professional 8 opens. I then open the form in Adobe Pro 8 and click "edit in designer" and it will not open. I have also tried to open the form directly from my documents in LC Designer and it will not open.
    When I try to open LC deigner on its own it will not open - just shoots me straight to Adobe Pro 8.
    I need to edit these forms - please help! Thank-you :)

    I am also having this problem. It is a dynamic form bound to an XML schema. When I try to reopen it, the livecycle banner comes on, but disappears immediately. The pdf opens in acrobat 9 (a 30-day trial copy). From there, it can be distributed and then filled in.

  • Cannot open form with a button

    Hi folks, I'm new to Developer, so apologies.
    I am opening a form xxx by attaching a smart trigger of WHEN-BUTTON-PRESSED to a button by
    call_form('xxx');
    It compiles fine, but when I evesute the form, it says errer 400010 cannot read form. Any ideas?
    Thx,
    Ken

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Carter:
    Put the called form's fmx file in a directory specified in the FORMS60_PATH key in the registry
    <HR></BLOCKQUOTE>
    More simply, you can pass the parameter with the path. ie call_form('c:\xxx.fmx') and so.
    If you want to pass any other parameters check it in the help for call_form. Tip. You also can use run_form/new_form to call a new form and go_form to navigate b/w forms.

  • Cannot open form - Reader & Acrobat crash

    Hello,
    I am facing a strange issue here on our citrix servers (Win 2008 x64, Citrix PS 4.5)
    We have both Acrobat reader 9.4 and Acrobat Std 9.4 installed on the servers (problem occurs with verson 9.3 also)
    When we try to open some pdf files  (with either the reader or Acrobat), the window launches, and displays a part of the file, then the app crashes..
    Those pdf for which the issue occur all contain forms. I even tried generating a simple pdf form containing one text box, and the problem occurs.
    What is strangest is that if i save the file on disk (from say an email), I cannot open it. Consistently. This is always reproduced.
    If I logoff, then log back on, I can then consistently open it.
    It makes no difference if the file is saved on my desktop (we have roaming profiles), or in my home directory.
    This does not affect all pdfs, but all users for some pdfs..
    I have tried uninstalling one of the 2 products, but the other one keeps on crashing.
    Nothing in the event logs, I tried to procmon, could not spot anything.
    Any help would be VERY appreciated
    Vincent

    Hi
    Please follow this KB doc: http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html
    Thanks

  • Cannot Open Form Created on Separate Thread After Closing

    My application communicates with a device that has several sensors.  As the sensors collect data, they send messages over the com port.  I have written a class to communicate with the device.  As the messages come in and are processed, the
    class raises events that the application responds to.
    The main window of the application handles the communication with the device and displays several statistics based on the data collected.  When the user presses a button on the device, a specific event is raised.  The main window create a separate
    thread and opens a child window.  When the child window is open, the user opens a valve to dispense the product.  As the product is dispensed, a flow meter connected to the device measures the volume of product dispensed.  The flow meter generates
    messages to indicate the volume dispensed.  I need to be able to send messages from the main window to the child window so that the child window displays the volume.  When the user is done, they close the valve dispensing the product and press the
    "End" button on the child window.  The child window then updates several variables on the main window, makes a couple of database calls to record how much product was dispensed and by whom and then closes.
    I need to run the child window using a separate thread as both windows need to be able to process commands.  If only one window has control the program doesn't work at all.  I have it figured out so that everything is working.  I can open
    the child window, dispense product, se the amount of product dispensed in the child window (the main window processes commands from the device and updates the label on the child window using a delegate), closes the window (using Me.Close()) and updates the
    main display with the updated data.  The problem is that when a user goes to dispense product a second time, I get the following error:
      A first chance exception of type 'System.ObjectDisposedException' occurred in System.Windows.Forms.dll
      Additional information: Cannot access a disposed object.
    I thought that maybe I could hide the window (change Me.Close() to Me.Hide) and then just show it.  When I do that I get this error:
      A first chance exception of type 'System.InvalidOperationException' occurred in System.Windows.Forms.dll
      Additional information: Cross-thread operation not valid: Control 'frmPour' accessed from a thread other than the thread it was created on.
    Both of these errors make sense to me, I just can't figure out how to make it work.
    First I have to declare the child window as a global variable as I need to access the window from a couple of the event handlers in the main form.
    Public frmMeasure As New frmPour
    When the user presses the button on the device to dispense the product, the event handler executes this code to open the child window.
    Private Sub StartPour(sAuthName As String, sAuthToken As String, iStatus As Integer) Handles Device.Pour
    Dim th As System.Threading.Thread = New Threading.Thread(AddressOf Me.OpenDispenseWindow)
    th.SetApartmentState(ApartmentState.STA)
    th.Start()
    End If
    End Sub
    Which executes this code:
    Public Sub OpenDispenseWindow()
    frmMeasure.sNameProperty = sCurrentUserName
    frmMeasure.sAuthTokenIDProperty = sUserToken
    Application.Run(frmMeasure)
    bAuthenticated = False
    bPouring = False
    dSessionVolume += GetTapConversion(sCurrentValve) * iFinalTick
    UpdateDisplayDelegate(iValveID)
    End Sub
    It doesn't matter if I use Me.Close() or Me.Hide(), both methods fail on the Application.Run(frmMeasure) line with the errors shown above. 
    For the Me.Close() method, my thinking is that the global frmMeasure object is getting disposed when I close the child window.  Is there any way that I can re-instantiate it when I go to display the window again?
    For the Me.Hide method, is there any way that I can track the thread that created it in the main window and when I go to call it a second time, detect that it is already available and just Show() it?
    Any hints, tips or suggestions are appreciated.
    Thanks.
    John
    John

    To be honest, I have only grasped < 100% of your message in detail, but...: Windows that have a parent<->child relation must be running in the same thread. In addition, after closing a modeless window, you must not use it anymore. Instead, create
    a new instance.
    What happens if you do not create a new thread but instead open the child in the same thread (which is obligatory)? You wrote it doesn't work, but I don't know why?
    "First I have to declare the child window as a global variable".
    How do you define "global"? Normally this is a variable in a Module declared with the scope Public or Friend. But I guess you mean a field of the Form (a variable at class level in the Form).
    "I need to be able to send messages from the main window to the child window so that the child window displays the volume."
    Why does the main window has to send the messages? Can't the child window handle the device's messages itself?
    "I need to run the child window using a separate thread as both windows need to be able to process commands."
    Process commands from the device, or commands from the user operating the Forms?
    Armin

  • Cannot open Forms in online or desktop application

    When I try to access my form either through the online interface or the Windows desktop application, the message "Loading Form File... " appears breifly (<5 seconds) and then the application freezes.  I saw a similar port earlier today and the Adobe staff replied asking for the form URL.  The URL for my form is:
    https://adobeformscentral.com/?f=wAUrf74fB112*CaqBwseMg
    This form is currently closed.
    Thank you for your help.

    Sorry you're having trouble. I've tweaked the form, so hopefully you should be able to open now. But let me know if you still seeing the problem.
    And we are in progress deploying the update to prevent this happening in the future.
    Thank you,
    Roman

  • Crash opening form because of wrong trigger order

    Hello.
    Have you met somebody with this:
    User with privileges set on open form cannot open form.
    When user open form from menu...
    - first start up menu there set role command executed and all is OK.
    But in some cases trigger WHEN-CREATE-RECORD fired first
    and if there is select statement then trigger crashed becase set role didn't executed and user have not privileges to select.
    I must write statements for testing if WHEN-NEW-FORM-INSTANCE fired and don't execute select statements while WNFI ended up.
    <<<????>>>

    Scott,
    I assume that your PhaseListener doesn'tdistinguish between the actual navigation and the JSF postback that is issued to the same page. In your case I assume that the PhaseListener is invoked on postback and thus ADF Faces points to the "old pagedef" file.
    Frank

  • 2010 Review Approval Workflow Error - Outlook cannot open a new form

    Hi,
    I set up an Approval - SharePoint workflow on a document library list in a webpart.  When the approver got the email and tried to approve from outlook, she received the following error.  She has approved documets in the past for the same page. 
    Can anyome please help me troubleshoot this?  So much appreciated!
    Word Error:
    Could not open.  http://<site ulr> _layouts/formsResource.aspx?templateFile=http://<site url_catalogs/wfpub/Approval - SharePoint 2010/Review Approval_Task_1033.xsn
    Outlook Error:
    Outlook cannot open a new form. To open the file, access to the folliwng form template is required
    http://<site ulr> _layouts/formsResource.aspx?templateFile=http://<site url_catalogs/wfpub/Approval - SharePoint 201o/Review Approval_Task_1033.xsn

    can she open the approval form in web browser instead of Outlook?
    According to the error message, it seems that the user does not have permission for the file http://<site url/_catalogs/wfpub/Approval - SharePoint 201o/Review Approval_Task_1033.xsn.
    can she open see this file in SharePoint designer 2010? that is, open the site with SharePoint designer and navigate to All Files->_catalogs->wfpub->Approval - SharePoint 201o. If she can not see the file there, ask the workflow creator to publish
    the workflow again. I had experienced strange issue in SharePoint designer 2007 and solved by check out all the workflow files and check in again
    http://social.msdn.microsoft.com/Forums/en-US/sharepointworkflow/thread/b533cfa5-e858-4ff9-bd0d-96d19946b789.

  • Cannot open/view/access interactive pdf form on iMac after updating Adobe Reader to 11.0.06.70

    Cannot open/view/access interactive pdf form on iMac after updating Adobe Reader to 11.0.06.70. Please help!

    Here is what it says:
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting http://www.adobe.com/products/acrobat/readstep2.html.
    For more assistance with Adobe Reader visit http://www.adobe.com/support/products/ acrreader.html.

  • Infopath form cannot open in browser?

    Hi,
    In my senario i have wite code On button click event in infopath. After publiched in form library i try to open the form in Client browser it showed message as below
    "request for the permission of type 'microsoft.sharepoint.security.sharepointpermission microsoft.sharepoint.security version=14.0.0.0"
    After this issue i set
    "Full Trust " option in security level on  Form option . 
    After this set i wont get the above error message when i check with Preview in infopath tool . Once again i publiched into form library and i try to open the form but
    it shows
    And also i Set option in library Settings - > Advance Settings -> Open document in browser -> Open in browser.
    But the form cannot open in browser. can u please assist me to fix this issue.
    Thanks and Regards,
    Venkatesh R
    venkateshrajan

    Now i m getting this error, i checked with Manage Site Feature there is no any new feature for Activate.
    venkateshrajan

  • Cannot open/edit previously saved forms

    I just upgraded my reader and now I cannot open/edit any of my forms previously saved.  I work in a law office so I can't re do all my forms.  How do I open and edit forms I previously saved?

    Error" this document enabled extended features in Adobe Reader. The document has been changed since it was created and use of extended features is no longer available.  Please contact the author for the original version of this document."
    I don't want the orignial I want my form already filled out and ready for new edits.  I have maybe 50+ of these documents..

  • Unable to open SharePoint 2010 task from any Microsoft Office application - cannot open a new form (schema validation errors)

    I can’t get the Microsoft Office SharePoint Task integration to work with any SharePoint 2010 Workflows.  When any end user clicks the “Open this task…”
    button from outlook (or any other office application) a warning dialog appears stating that:
    “Outlook cannot open a new.
    The form contains schema validation errors.”
    The error details are:
    Element '{http://www.w3.org/1999/xhtml}div' is unexpected according to content model of parent element '{http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields}Body'.
    Some points to note:
    I can replicate this using on several computers running as different users. 
    I have full control over the site and the task I am trying to open. 
    When I navigate via the SharePoint site I can open the task. 
    The Info Path form that cannot be opened was automatically created by automatically SharePoint designer / InfoPath.  I have subsequently deleted the form and published
    the workflow (which created the InfoPath form again). 
    I am running Mircosoft Office Professional Plus 2010 version 14.0.5128.5000 (32-bit)
    One workaround is to remove the “Open this task…” button as per
    http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010general/thread/eb273ee9-6a4b-409c-8eb0-5351bb113386/. This is not ideal and will be my last resort.
    Any suggestions and or thoughts appreciated.
    Thanks!

    Yes, I tried that.  It did not work for me.
    I have 4 site collections.  The main site collection is the only one that I receive the error.  
    When the user clicks on the email link  and opens the document for approval, they receive the following error when they click on "Open This Task". 
    Element '{http://www.w3.org/1999/xhtml}a is unexpected according to content model of
    parent element '{http://schemas.microsoft.com/office/infopath/2009/WSSList/dataFields}Body'.
    There is nothing wrong with the task list itself, just the link from the Office 2010 client. 
    I am wondering if there is a web config or other file on the server that is specific to the site collection??
    Tracey

  • You cannot open window  Service Call Form with your current license  8.8

    Hi Expersts,
         I am trying allocate license for users in 8.8 (PATCH 09) , I am assigning properly but when log in to assigned user i am continously getting the following error. again i checked license has been allocated correctly. it is a CRM License
    Kindly help
    You cannot open window [60110] Service Call Form with your current license
    Regards
    Mohamed

    Dear Mohamed,
    This issue probably occurs due to the application error described in the SAP Note [1456922|https://websmp130.sap-ag.de/sap(bD1odSZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1456922].
    When login B1 with incorrect upper/lower cases for the user name (eg. The user name is registered "manager" but login as "Manager"), the user can login successfully but fails to open a certain form window the user has permission.                                                        
    This issue is planned to be fix in a Patch of 8.8.
    As workaround, until the issue will be fixed, the users should use exactly the same user name as itu2019s represented in the OUSR table, with case sensitive user code.
    hope it helps,
    Regards,
    Ladislav Meszaros
    SAP Business One Forum Team

  • Cannot open the  form file in apps 11i

    Hi all
    I have modified an fmb file and when i try to compile in apps 11i ,i get "cannot open file"
    telnet erptest
    cd /s01/oracle/prodappl
    . APPSORA.env
    cd /s01/oracle/prodappl/au/11.5.0/forms/US
    f60gen  XXNPOPNJOBLOG.fmb userid=apps/apps
    I get the message "frm-10043-cannot open filekindly help me
    thanking in advance
    regards
    oracleuser

    Hi oracleuser;
    Please check Hussein Sawwan's post first and be sure you have correct syntax:
    Hi,
    In addition to the above, please note that you are not using the correct/complete command to compile the form -- See (Note: 130686.1 - How to Generate >Form, Library and Menu for Oracle Applications) for the command.
    Regards,
    Hussein If you sure you are using correct syntax than as i and Shailendra point, be sure you have w/r permission for your XXNPOPNJOBLOG.fmb file. For can see this issue is:
    ls -lrt /s01/oracle/prodappl/au/11.5.0/forms/US/XXNPOPNJOBLOG.fmb << this will give you permission righ for your XXNPOPNJOBLOG.fmb file
    For can open my links you have to login metalink then put Note ID to search button,then i belive you will find notes
    Hope it helps
    Regard
    Helios

  • How to retrict user cannot open the same form more than once (Forms 6i)

    Our users always open the same forms more than once. For example the customer form, the user may access a customer record in the first form, however, he will open a new customer form to edit the same record, the result is he cannot save the record because the record is locked in the first customer form.
    How can I control the user cannot open the same form more than 1 time.
    Best Regards,
    Kane

    The customer form is only an example, I found there will cause a lot of problems is I cannot control the user from calling 1 program more than 1 than within application. Sometimes a user (not good in using computer) will overlap the form for many times.....
    Is there any simple way to do that?...can I have some PL/SQL statement or build-in functions that let me easily found our what forms the user has already opened, then I can control whether I let him open this form or not.
    Urgent...please
    Thanks

Maybe you are looking for

  • When i plug into iTunes

    it says that this iPhone is synced with another iTunes and that i need to erase and sync with this iTunes thats on my computer. I had to restore it at the apple store about a month ago and thats the only computer its been pluged into..when it says it

  • ORA-00911: invalid character - Calling a function from Java..

    Hi to all.. I have an issue when calling an oracle function from Java.. This is my Java code: final StringBuffer strSql = new StringBuffer(); strSql.append("SELECT GET_TBL('II_2_1_6_5') AS TABLA FROM DUAL;"); st = conexion.createStatement(); rs = st.

  • Items and SQL Types

    I've just started learning apex and I'm confused about page/application items. Since they can be used in SQL and PL/SQL as some kind of variables (for example using bind variable syntax), at some point they should be prescribed a type, since SQL and

  • Vector to smart object

    I have an illustrator file on vector that I bring the object to photoshop and transform to smart object but keeps on messing up the pixels when I use the transform tool to change the size....why? Isn't "smart object" made to not give that problem on

  • How to call both xacute query and xml query inside a single applet

    Hi, I am very new to XMII. Trying with a simple exercises now. 1.  I have a Business Logic Transaction which will call external application using web services then it will get an output as xml and storing it in C:\. 2. Then I created one xacute query