10g Form gets Frozen

Hello all,
We are using Oracle 10g forms as a web aplication, and one of our forms gets frozen after being used for some time, this doesn't happen all the time, and this issue has nothing to do with any query (we have run traces an all the queries look ok).
More details...
Whithin this form we have a window with a lot of items (buttons, check, text fields, trees, lists), the Enable, Visible and Navigatable properties of these items are changed based on user's selection, this could happend several times (some times more than 30).
As we haven't been able to find the root cause of this in the code, I believe the issue could be that the porperty of the items are being changed a lot of times, and this might cause a memory issue on the JVM or something like that.
Has anyone faced with a similar issue?
BTW, we don´t get any error message, the entire application gets frozen, we can't even open the Java console.
Thanks.

Hi.
I have the same situation here. I am using forms 10.1.2.3 with latest patch applied. On the client side there is JRE 1.6.14. No matter if I use IE or Mozilla the form or better to say whole browser gets frozen. The most funny thing is this problem started with users who have got new computers. So on old computers there are no problems but on the new ones the browser gets freezed five to ten times per day. Our impression is this is happening in certain combionation with JDK and hardware. I should mention I have switched three users back to Jinitiator and there were no problems. The worst problem is there are no log or trace files when browser freezes.
I am sorry I could not help you but at least you will not feel you are alone. If I will manage to find some solution I will let you know.
Best regards.

Similar Messages

  • Cannot read image file in oracle 10g forms, getting error frm-47100

    I'm unable to read the image from the file location. But If I do re-save via MS-Paint the same image then I'm able to load successfully. I want to load image directly instead of re-save.  Error getting like "frm-47100 Cannot read image file".
    Need your co-operation to solve this issue.
    Thanks in advance!
    declare
      tiff_image_dir varchar2(80):=('D:\IMAGE\');
      photo_filename varchar2(80);
    begin
      photo_filename:=tiff_image_dir||:IMAGE_NO||'.JPG';
      if :image_no is null then
      :Image_no :=:UID_NO;
      end if;
      read_image_file(photo_filename,'JPG','image');
      WRITE_IMAGE_FILE('output.tif','TIFF','g_image_info.image',maximize_compression,original_depth)
    end;

    Hi Sindhu,
    By default any operating system file extension starts after the dot. So in this case when it says 2 dots it will think there is something wrong.
    RajeshALex

  • Load balancing 10g forms - Connection from new browser window not supported

    Load balancing 10g forms - Connection from new browser window not supported
    We're experimenting with using webcache to load balance between multiple applications servers running OC4J forms processes.
    We currently have one machine with infrastructure and mid-tier (BI & Forms) installed, which is being used for the webcache functionality, this is load balancing between 2 other servers each of which just have the mid-tier (BI & Forms) installation
    In order to get this to work, I had to follow the instructions in the Forms deployment guide : http://download-uk.oracle.com/docs/cd/B14099_11/web.1012/b14032/tuning.htm#sthref707
    The main gist of this is that you need to set the following in the orion-web.xml file in order that the sessions are maintained:
    <session-tracking
    cookies="enabled">
    </session-tracking>
    This all works fine in most cases.
    The problem I am having is if I do one of the following on the client machine:
    1) From IE6 / IE7 run a copy of a forms application. Then open a new window using the "New Window" menu option, and attempt to run another forms application.
    2) In IE7 or Firefox 2.0 open a copy of the forms application, and then open a new tab and try and open another forms application.
    If I try either of these I get a FRM-92101 error, and the following is displayed in the java console:
    oracle.forms.net.ConnectionException: Connection from new browser window not supported
    From trawling various forums (including metalink and otn) it looks like a problem with the way coockies are handled.
    Unfortunately the usual workaround is to ensure that the session tracking option in the orion-web.xml file is disabled.
    The problem is that I need this enabled in order for the load balancing to work.
    Does anyone know of any other workarounds or patches that might help resolve this?
    We're using Application server 10.1.2.0.2 running on windows 2003 servers.

    You were right. Carriage returns were stopping it from working (the document is laid out over separate lines, so I assumed it would make no difference...).
    I've now managed to get it so the forms at least run, but they are all being run in the forms OC4J instance on the same machine as the OHS.
    Has anyone actually managed to get this to work, or am I doing something wrong?
    I did wonder if using an OHS instance on a machine with no forms installation would make any difference?
    I had raised a support call via metalink on this subject, but they eventually came to the conclusion that the only way to do this is with a hardware load balancer (Despite several documents suggesting that webcache is the way to go (including the forms deployment manual)).
    I'm at the point now of giving up and writing some custom scripts to do the job instead...

  • OLEVAR doesn't work on 10G Forms (Urgent)

    Hi all,
    I currently use 10g Forms. but every time have a error
    occur
    FRM-92101 : There was a failure in the Forms Server during startup. This could happen due to invalid configuration. Please look into the web-server log file for details.
    Java Exception :
    oracle.forms.netConnectionException: Forms .....
    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 execute "var:=TO_VARIANT( strs );" in when-button-press trigger. anybody know that what is the problem occur ?
    pls find below coding : -
    PROCEDURE EXP_EXCEL IS
    TYPE TStrs IS TABLE OF varchar2(1000) INDEX BY BINARY_INTEGER;
    MyApp ole2.obj_type;
    MyBook ole2.obj_type;
    MyWorkbooksCollection ole2.obj_type;
    myWorksheets ole2.obj_type;
    mySheet ole2.obj_type;
    args OLE2.LIST_TYPE;
    myRange ole2.obj_type;
    val varchar2(32000);
    startTime pls_integer;
    endTime pls_integer;
    -- Here is extra variable for this method
    strs TStrs;
    var OLEVAR;
    firstCell varchar2(100);
    lastCell varchar2(100);
    id pls_integer;
    BEGIN
    /* Open Excel and create new document */
    MyApp:=OLE2.Create_Obj('Excel.Application');
    OLE2.Set_Property( MyApp,'VISIBLE', 1 );
    MyWorkbooksCollection:=OLE2.GET_OBJ_PROPERTY( MyApp, 'Workbooks' );
    MyBook:=OLE2.Invoke_Obj( MyWorkbooksCollection,'Add' );
    myWorksheets:=OLE2.GET_OBJ_PROPERTY( MyBook,'Worksheets');
    /* Get the WorkSheet to work */
    args := OLE2.CREATE_ARGLIST; -- create argument list
    OLE2.ADD_ARG( args, 1 ); -- add worksheet INDEX
    MySheet := OLE2.GET_OBJ_PROPERTY( myWorksheets, 'Item', args);
    OLE2.DESTROY_ARGLIST( args);
    -- startTime:=WIN32.GetTickCount;
    /* Add the information */
    FOR myRowNum IN 1..8 LOOP
    strs.delete;
    -- Prepare the information for the row
    FOR myColumnNum IN 1..38 LOOP
    val:='t'||myRowNum||'_'||myColumnNum;
    strs(myColumnNum):=val;
    END LOOP;
    /* Get the address of the first and the last cells */
    args := OLE2.CREATE_ARGLIST; -- create argument list
    OLE2.ADD_ARG( args, myRowNum );
    OLE2.ADD_ARG( args, 1 );
    myRange:=OLE2.GET_OBJ_PROPERTY( mySheet, 'Cells', args );
    OLE2.DESTROY_ARGLIST( args);
    firstCell:=OLE2.GET_CHAR_PROPERTY( myRange, 'Address' );
    OLE2.RELEASE_OBJ( myRange );
    args := OLE2.CREATE_ARGLIST; -- create argument list
    OLE2.ADD_ARG( args, myRowNum );
    OLE2.ADD_ARG( args, 38 );
    myRange:=OLE2.GET_OBJ_PROPERTY( mySheet, 'Cells', args );
    OLE2.DESTROY_ARGLIST( args);
    lastCell:=OLE2.GET_CHAR_PROPERTY( myRange, 'Address' );
    OLE2.RELEASE_OBJ( myRange );
    /* Get the range */
    args := OLE2.CREATE_ARGLIST; -- create argument list
    OLE2.ADD_ARG( args, firstCell );
    OLE2.ADD_ARG( args, lastCell );
    myRange:=OLE2.GET_OBJ_PROPERTY( mySheet, 'Range', args );
    OLE2.DESTROY_ARGLIST( args);
    /* Set the cell value for range */
    var:=TO_VARIANT( strs );
    id:=GET_OLE_MEMBERID( myRange, 'Value' );
    SET_OLE( myRange, id, var );
    DESTROY_VARIANT( var );
    OLE2.RELEASE_OBJ( myRange );
    END LOOP;
    -- endTime:=WIN32.GetTickCount;
    -- :BLOCK1.FAST2_TIME:=TO_CHAR( (endTime-startTime) );
    OLE2.RELEASE_OBJ(mySheet);
    OLE2.RELEASE_OBJ(myWorksheets);
    OLE2.RELEASE_OBJ(MyBook);
    OLE2.RELEASE_OBJ(MyWorkbooksCollection);
    -- OLE2.INVOKE (MyApp,'Quit');
    OLE2.RELEASE_OBJ(MyApp);
    END;
    best regards
    boris

    Hi all,
    Any expert can help me ?
    best regards
    boris

  • Oracle 10g Forms

    Can i get any reading material on Oracle 10g Forms to prepare for OCP?
    Need help.
    Thanks in advance.
    AG

    http://download-west.oracle.com/docs/cd/B14099_19/index.htm

  • Installing Oracle 10g Forms and Reports in Cluster Mode

    Dear All,
    My OS version is RHEL 4
    In our current setup we have oracle 10g database two node  cluster and Application Server 10g to node cluster.
    Currently our report server has been configured to run in standalone mode
    I have been asked to configure oracle 10g forms and report server in cluster mode.
    Please provide me with the documentation link to configure oracle 10g reports server in cluster mode.
    Thanks and Regards
    Monoj Das

    my main goal is load balancing only
    Then what I've done in 2007 might be what you need. In that thread there is a link to Web Cache Administrator's Guide : there you'll find everything you need to configure the web cache as a load balancer, particularly chapter 8 Setup and Configuration.
    Anyway, here briefly some configurations : we have two machines, say MachineA and MachineB. The DNS resolves MachineA to a virtual address, which is normally assigned to MachineA; if MachineA crashes, it gets assigned to MachineB.
    Users URL looks like this : http://MachineA:<port>/forms/frmservlet?config=<some config>
    MachineA's web cache distributes connection requests between MachineA and MachineB.
    Of course we're now using 11g as well, but that's another thing.

  • Display Images using READ_IMAGE_FILE in 10g forms

    Hello all, i have a simple question that I'm trying to resolve really quick.
    I've created a field on a form in 10g forms that is of IMAGE type. I've given it a name and has given it a FILE_TYPE of GIF.
    I've put some code in a POST-QUERY trigger of a block that calls the READ_IMAGE_FILE command, where I enter the filename, file_type, and block.item name. When I leave the path off the image name, forms runtime acts like it cannot find it. I get an FRM message displayed at runtime that says it "Cannot read image file". However, if I put the full path (like something pointing to a hard-coded directory on my C drive where the image file resides), the image displays fine at runtime.
    I added the images to my JAR file where I have other images stored so they get opened at runtime under the ORACLE_HOME/forms/java directory. I was thinking that when I gave the filename, runtime would know to pull it out of there. But obviously, that's not what is happening.
    Has anyone got ideas on what I could do to get the READ_IMAGE_FILE to display the image without hard-coding a path in?
    Any help is appreciated!
    Regards,
    Chris

    Here are some things to check:
    1) Alll the images in the JAR file should have the same extension
    2) In formsweb.cfg, include the JAR file in the ARCHIVE parameter and set imageBase=codebase
    3) In registry.dat, leave iconpath blank and set iconextension=gif
    4) In your READ_IMAGE_FILE call, use URL as the file type and don't use the extension on the file name. So if the image in your JAR is my_picture.gif, it would be something like READ_IMAGE_FILE('my_picture','URL','myblock.my_image_item');
    If it still doesn't work, enable the Java console and when it comes up, enter the number 5 in the console to enable the highest level of logging. Then have a look at the console to see if the JAR is getting downloaded and where it's attempting to read the image from.

  • Using scatter graph type in oracle 10g forms using bi beans

    hi.. how i can use scatter graph type in oracle 10g using bi beans..
    it seems scatter graph is supported in 10g but it doesnt work at all..
    i used to use oracle graphics builder in oracle 6i forms,now i need to convert all my old graphs to 10g forms..the line,bar and pie it work very well but the scatter didnt work..
    so please if anyone know how to use it please tell me.. and what versions of bi beans support the scatter graph type
    thanks.
    u can email me in
    [email protected]

    Hi,
    What version of Oracle Forms are you using? If it is 10.1.2.0.2 (10g R2 Phase 2) then the BI Beans version should be 10.1.2.1 (3.2.2.0.24.2).
    When you run a Graph, do you see any version numbers?
    Regardless of the version, scatter graph should work. What kind of errors are you getting?
    When you install BI Beans in JDeveloper, you get access to BI Beans Help. Go to the following topic for setting up data for a scatter graph:
    Help -> Building Applications with BI Beans -> Presenting Data in Graphs -> Specifying Data for Graphs
    Did you try posting your question on the Oracle Forms forum?
    BI Beans PM

  • How to open color selection diaglog in 10g forms   Plz help

    Hi Everybody
    I'm new to oracle 10g forms
    I want to open color selection dialog in 10g forms
    I've configured demos...nd they r working well....
    Now i want to use code in my forms.......But I tried to see it from the source.. But I couldn't understand...
    Plz help....If anybody knows...
    Thanx in advance

    I've added
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar,colorPicker.jar
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar,colorPicker.jar
    java.io.IOException: Caching not supported for http://192.168.0.106:8890/forms/java/frmall_jinit.jar
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)
         at oracle.jre.protocol.jar.JarCache.get(Unknown Source)
         at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
         at sun.misc.URLClassPath$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    WARNING: Unable to cache http://192.168.0.106:8890/forms/java/frmall_jinit.jar
    java.io.IOException: Caching not supported for http://192.168.0.106:8890/forms/java/colorPicker.jar
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.download(Unknown Source)
         at oracle.jre.protocol.jar.JarCache$CachedJarLoader.load(Unknown Source)
         at oracle.jre.protocol.jar.JarCache.get(Unknown Source)
         at oracle.jre.protocol.jar.CachedJarURLConnection.connect(Unknown Source)
         at oracle.jre.protocol.jar.CachedJarURLConnection.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.getJarFile(Unknown Source)
         at sun.misc.URLClassPath$JarLoader.<init>(Unknown Source)
         at sun.misc.URLClassPath$2.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getLoader(Unknown Source)
         at sun.misc.URLClassPath.getResource(Unknown Source)
         at java.net.URLClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         at java.net.URLClassLoader.findClass(Unknown Source)
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at sun.plugin.security.PluginClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Unknown Source)
         at oracle.ewt.util.FocusUtils.<clinit>(Unknown Source)
         at oracle.ewt.lwAWT.LWComponent.<clinit>(Unknown Source)
         at oracle.ewt.laf.oracle.OracleLookAndFeel._initCommonFixedDefaults(Unknown Source)
         at oracle.ewt.laf.oracle.OracleLookAndFeel._getCommonDefaults(Unknown Source)
         at oracle.ewt.laf.oracle.OracleLookAndFeel._getIndexedDefaults(Unknown Source)
         at oracle.ewt.laf.oracle.OracleLookAndFeel.getDefaults(Unknown Source)
         at oracle.ewt.lwAWT.BufferedApplet.getUIDefaults(Unknown Source)
         at oracle.ewt.lwAWT.BufferedApplet.<init>(Unknown Source)
         at oracle.ewt.swing.JBufferedApplet.<init>(Unknown Source)
         at oracle.forms.engine.Main.<init>(Unknown Source)
         at java.lang.Class.newInstance0(Native Method)
         at java.lang.Class.newInstance(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    WARNING: Unable to cache http://192.168.0.106:8890/forms/java/colorPicker.jar
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0
    *** VBean Setting debugMode to ALL
    *** VBean Setting beanName to oracle.forms.demos.beans.ColorPicker
    *** VBean Failed to instantiate class: oracle.forms.demos.beans.ColorPicker java.lang.ClassNotFoundException: oracle.forms.demos.beans.ColorPicker

  • 10G Forms connect to MS Access via JDBC

    A new project requires a 10G Form to connect to MS Access database. I understand 10G no longer connects to Access using ODBC. Will JDBC work? If JDBC can be used does anyone have a "How To" document or examples on how to connect orms 10G to MS Access via JDBC
    Thanks
    Ralph

    I dont think it will work. In 10g forms is going to implement transparent gateways.
    Is there a possibility of getting the data from MS access directly to Oracle database and then connect to Oracle DB from forms ?
    Rajesh Alex

  • Session Killing - Automatically in 10g Forms

    Dear All,
    We have used when-timer expired-trigger in 6i forms and killed sessions which are idle for more than 30 mins. But the same form does not work with 10g forms.
    Is there any limitation in 10g forms with when-timer-expired trigger.
    How do we enable this. Please help us in fixing this.
    Thanks
    Guru

    I tried with "separateframe=true" in formsweb.cfg and it works fine for me.
    What is not working when you set "separateframe=true"?
    So far my experience with timeoutPJC is it works great with single form, form gets closed when the maximum Inactivity Period is exceeded but it is an issue when we try to implement it in multi-form application. My scenario is like this
    - I have main form which works like a MENU with Hierarchial tree structure,
    each node calls a different form within the application. Menu appears on the
    left while individual forms appearing towards right upon invokation.
    - I am trying to implement the timeoutPJC(Oracle Forms 10gR2 Demos) on this
    form so that when the Maximum Inactivity period exceeds then the whole
    application gets closed. It works GREAT when implemented on a single form
    but in a multiple form application it doesn't seem to work.
    - Also I have requirement to display a WARNING message 2 minutes prior to
    timeout so that user will be notified before the application gets closed. I
    tried to display forms ALERT but until the user acknowledges the alert application
    will not close. As an alternative to the forms alert I tried displaying an
    html document using WEBUTIL it is working ok but ideally I would like to see an Alert and close automatically just like AVG alert which shows timer after it has successfully updated and gets closed once the timeout occurs, anyone has ideas how to build such an alert?.
    - From the main form (MENU) I use OPEN_FORM built-in() to open 1st level of
    forms in the application. From this form I make use of CALL_FORM() to call
    various other forms.
    - If the focus is in the call form and if the form is in NORMAL mode
    everything works great. But if the form is either in ENTER-QUERY mode or LOV
    is opened and timeout occurs nothing happens until I close the called form
    manually then all the forms get closed. How to overcome this situation?
    - I can't understand why this doesn't work if the PJC is associated with the
    JAVA applet?
    **Is there a way we can close all the forms when timeout occurs without implementing timeoutPJC bean on all 600 odd forms in our application given the constraints I have defined above?
    Thanks in Advance,
    Venu

  • Accessing  oracle 10g form through LAN

    hiii,,
    i have just started working on oracle form 10g,here i have created a shortcut for accessing this form & named this form as "Oracle".so that everytime when i click on the shortcut the particular form get opened......
    Now i want this form to be accessed through LAN,i mean whenever any particular user write http:\\oracle in the internet explorer bar ,the form("ORACLE") which is stored in my PC,shud get opened......
    so what i need to do here....is there any need like IIS server or wat............
    plzz help

    hi
    something like this.
    # tnsnames.ora Network Configuration File: c:\DevSuiteHome_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST =192.168.1.20)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = Orcl)
    EXTPROC_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = PLSExtProc)
    # tnsnames.ora Network Configuration File: c:\oracle\product\10.2.0\db_1\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    ORCL =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.20)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = Orcl)
    EXTPROC_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = PLSExtProc)
          (PRESENTATION = RO)
      )Note: u will have to Modify both tnsnames.ora in form as well as in database tnsnames.ora.
    sarah

  • Invalid Objects - Converting 9i & 10g forms to Apex

    I'm trying to convert my 9i & 10g forms to an Apex form. After converting the 9i form to HTML and creating the Project, I then try to generate the application and get errors. I get 'Invalid Objects' with the invalid table and column name listed. Upon checking out the invalid objects, every one is a "PUSH BUTTON' on the 9i form. Looking further into the Apex items, they have a 'Yes' value under the 'Database Item' heading. First off, push buttons are not database items and I think this is the problem.
    Has anyone else encountered this problem? If so, how did you resolve. Thanks!

    When you have look in the xml file, you will see that the button is included in the block as an Item element.
    In the same Block element there is no corresponding DataSourceColumn element.
    But APEX doesn't take this into account when it uploads the xml file.
    Further on when you want to create the application, it will fail due to APEX thinking the button is a database column.
    Sadly enough we are not able to customize the query or to exclude the item (don't know why).
    Hopefully this will be solved in APEX 4.0 until then moving the button to a dummy block in Forms is a workaround.
    Regards,
    Mathieu

  • 10g Form - Can i invoke ms word within the from?

    Hi everybody, I would appreciate if someone out there can help me with it......
    On the form i have an ID Field.
    I have a master MS Word file on the network drive.
    Firstly
    I have a button on the form. When pressed it should be able to create a New Folder on the network drive with the name of the folder same as ID Field. At the sametime it should copy the Master MS Word file and put it in the newly created folder.
    Secondly
    I want to open this Ms word file in the newly created folder within the 10g form and not run outside the form.
    Kindly help........
    irfi

    Hi Francoise, Thank you for your reply.
    The MS Word file resides on a shared folder on the server and doesnt get stored in the database (Independent of the database).
    What i actually need is to be able to do 4 actions with a trigger on the button: meaning when the button is clicked it should:-
    1- Create a new folder on the server
    2- Copy the Original Master File to newly created folder.
    3- The name of the folder to be the same as the ID Filed which is binded to a table.
    4- To open the Ms Word file from the newly created folder within the oracle form and not like i have done in vb (Shell to open outside).
    I have done this similar project in vb6 (Kindly have a look)
    ServerFolderPath = "\\servername\foldername"
    Private Sub Cmdsave_Click()
    Dim Qry As String
    Dim Re As New Recordset
    Qry = "select * From IDRegistration where IDNo = '" & TxtIDNo.Text & "'" '(SQL Table)
    If EditID = False Then
    Re.Open Qry, DB, adOpenDynamic, adLockOptimistic
    If Re.RecordCount > 0 Then
    MsgBox "File with same ID Exists", vbInformation
    Else
    fso.CreateFolder ServerFolderPath & IDNo
    fso.CopyFile ServerFolderPath & "one.doc", ServerFolderPath & IDNo & "\" & IDNo & ".Doc" '(one.doc is the master file)
    Shell "c:\Program Files\Microsoft Office\Office11\winword.exe " & ServerFolderPath & IDNo & "\" & IDNo & ".doc", vbMaximizedFocus
    End If
    Please advice Thanks for your time!
    irfi

  • JDeveloper: Display Field as in 10g Forms

    Dear All,
    I am new in JDeveloper 11g ADF. I have worked in 10g forms and reports and pl/sql and plaining to shift in JDeveloper 11g ADF. I have developed a ADF application and places the table as ADF Forms now I want to place a display field in that grid display result of that record as I do in 10g forms in Post Query or Post Change trigger
    sorry for bad English. I shall be very thank full to you
    Regards,
    Zafar Iqbal

    Can you post some images - what you have in ADF currently and what kind of look and feel you want. That will get you quicker help than us guessing what you require :)
    Also please read this before you post - https://forums.oracle.com/forums/ann.jspa?annID=56

Maybe you are looking for

  • Report ... conversion for fiscal year representation

    have a report which prints the actuals for a fiscal year . Its like each country has their own fiscal year representation , The report is currently printing the data based on its own fiscal year representation , i have to modify the report and want i

  • Automatic Cash Application

    Hi Friends, Hope all is well. Can anybody please answer my questions regarding Lockbox Processing. Is it applicable for all Customers? How to you enter the data into SAP if we are using EDI? Should the bank be same? Like we are using Comerica Bank no

  • Fonts changing and rollovers not working...

    Can someone help me figure out why my fonts are changing and my rollovers are not working? I am publishing to a folder and then uploading to Godaddy's FTP. The site works and looks fine before I upload it, the problem only occurs once it's online.

  • Enabling archive log using init.ora file

    Hi I want to convert my database in archive mode using init.ora file. so what entries i need to do in it. Plz send me some samples . thanks

  • Aperture 3 Date Format

    Does anyone know if/how one can change the date format for Aperture 3? Right now, all date related metadata is displaying in short format, like this: [Jul 16]. I'd like it to be able to change it to long, full, or medium so the year displays as well.