Problem during Forms Runtime

Hello,
when i Run my Form my Browser window opens-up & then exits ..<i.e> it Closes down .... And my Java Icon also doesn't appear in my task manager. I face this problem on my laptop.... But on my desktop it runs fine..
Now the database, the developer suite , the version of IE-6 ..everything is same on my desktop & my laptop
database = oracle 10g
developer suite = 10g
Then what is the problem ... why it doesn't show up my form..??
Please Help...

hi
please uninstall jinitiator and reinstall it and if u have JVM.dll 2.20MB please replace it with the old one.
i hope it will help u.
and also try to clean history,delete cookies.
sarah

Similar Messages

  • Problem in running animation file during forms runtime can any body help

    Hi,
    I did a small project using forms 6I . When I run my project the first cansvas named “Welcome Screen” will be displayed. I.e this is the first canvas displayed. Now my problem is : In that “ WelcomeScreen” canvas I placed a OLE object and inserted a Powerpoint presentation file i.e .propic.ppt file. I setted custom animation setting for all object in that presentation slide. Now my requirement is to animate that file with formruntime i.e once I run the project opening canvas should be displayed and all the objects in the OLE i.e. ppt file within runtime. That is menu attached should be displayed as it is and presentation should be animated. After that I go to data entry module by selecting appropriate menu item from the menu. For this problem what I tried is I imported OLE Control from tools menu in formbuilder and make the OLE properties that is path of the ppt file and Activation property is set to “doubleclik” . When I runned my project after these settings, if I double click then it is showing “slide”without animation and my main windows and all other windows disappearing”. When I click end show in slide then it is returning to my formsruntime module. This is not the requirement, all that i want is my runtimewindows should be displayed within which the presenation file must be animated. Is it possible to do so, if so please suggest the way to improve the visual quality of my project.
    Thanks in advance for helping,
    Prasanth A.S.

    Actually, the .class files must be in a directory named MyPack, and the directory 'above' MyPack must be in the Classpath when compiling.
    http://java.sun.com/docs/books/tutorial/java/interpack/packages.html

  • How to Alias of formsweb.cfg file from Forms runtime

    Hi Guru
    I m using Forms10g Developer. To run the forms we use an Alias in the configaration file formsweb.cfg. Can I get this alias name programmatically from the forms runtime? If it its possible then please tell me How?
    Thanks in advance.
    Mokarem

    I afraid. I think it can't be possible as far as form built in's are concerned.
    Because whenn you launch your form form in your browser, then at that stage only you specify the alias.
    or what you can do, search for the alias name in formsweb.cfg during form runtime.
    You have do do some pl/sql coding for that :)
    1) Call your formsweb.cfg from application server using webutil.transferhost_to_client.
    2) serach for the string (use text_io package,read and search in the file.)
    Hope this will help !!

  • Problem during the setting the query data source name in forms 6i

    We are now doing assignments in forms 6i actually there is a problem during setting the query data source name in run time.
    The problem is
    declare
    v_query varchar2(200),
    begin
    v_query :='(select empno,ename,deptno from emp where hiredate =' || control .value1 ||')';
    go_block('emp');
    set_block_property('emp',query_data_source_name,v_query);
    end;
    that bolded area is the problem that ia varchar value the single qoutes embedded with that value.how can i embedded single qoutes in that concatenation.
    That is now query will run like select empno,ename,deptno from emp where hiredate =control.value
    But we need like select empno,ename,deptno from emp where hiredate ='control.value'
    Message was edited by:
    Punithavel

    Thanks for your response
    We fixed the error
    and the answer is
    declare
    v_query varchar2(200),
    begin
    v_query :='(select empno,ename,deptno from emp where hiredate = ' ' ' || control .value1 ||' ' ' ) ' ;
    go_block('emp');
    set_block_property('emp',query_data_source_name,v_query);
    end;

  • Getting the value(s) of varibales during the runtime

    Dear All
    I'm trying with the below listed code to log some information about a
    programm process during the Runtime. I would have e.g. a timestamp
    the values of some varibales s.o. The sutructure abap_call_stack_entry
    has some interesting fields but I get shown #### as value if I use some of them.
    The field abdbg-levent provides the form name which is called.
    How can get for example the content (value) of a variable within a routine or
    form ? Does anybody got an Idea on right using of this structure "abdbg"
    or how to solve above mentioned problem?
    perform first.
    perform second.
    perform fourth.
    form first.
    data latte type i.
    latte = 78.
    perform akt.
    endform.
    form second.
    data bolo type i.
    bolo = 345.
    perform akt.
    endform.
    form fourth.
    data sync type i.
    sync = 989.
    perform akt.
    endform.
    FORM akt.
      TYPES:
        begin of abap_call_stack_entry,
          mainprogram  like sy-repid,
          include      like sy-repid,
          line         type i,
          eventtype    like abdbg-leventtype,
          event        like abdbg-levent,
          flag_system  type c,
            FLINE TYPE ABDBG-FLINE,
            CLINE TYPE ABDBG-CLINE,
            BCOUNT TYPE ABDBG-BCOUNT,
            XCODE TYPE ABDBG-XCODE,
            REPID TYPE ABDBG-REPID,
            SREPID TYPE ABDBG-SREPID,
            BREAKP TYPE ABDBG-BREAKP,
            ACTUAL TYPE ABDBG-ACTUAL,
            CURRLINE TYPE ABDBG-CURRLINE,
            FIRSTV TYPE ABDBG-FIRSTV,
            VINDEX TYPE ABDBG-VINDEX,
            VNAME TYPE ABDBG-VNAME,
            VTYPE TYPE ABDBG-VTYPE,
            VLENGTH TYPE ABDBG-VLENGTH,
            VLINE TYPE ABDBG-VLINE,
            LITINDEX TYPE ABDBG-LITINDEX,
            LITOFFSET TYPE ABDBG-LITOFFSET,
            LITLENGTH TYPE ABDBG-LITLENGTH,
            LITTYPE TYPE ABDBG-LITTYPE,
            LITVALUE TYPE ABDBG-LITVALUE,
            V1INFO TYPE ABDBG-V1INFO,
            VNAME1 TYPE ABDBG-VNAME1,
            V1VALUE TYPE ABDBG-V1VALUE,
            V1HEX TYPE ABDBG-V1HEX,
            V2INFO TYPE ABDBG-V2INFO,
            VNAME2 TYPE ABDBG-VNAME2,
            V2VALUE TYPE ABDBG-V2VALUE,
            V2HEX TYPE ABDBG-V2HEX,
            V3INFO TYPE ABDBG-V3INFO,
            VNAME3 TYPE ABDBG-VNAME3,
            V3VALUE TYPE ABDBG-V3VALUE,
            V3HEX TYPE ABDBG-V3HEX,
            V4INFO TYPE ABDBG-V4INFO,
            VNAME4 TYPE ABDBG-VNAME4,
            V4VALUE TYPE ABDBG-V4VALUE,
            V4HEX TYPE ABDBG-V4HEX,
            VNUMFROM TYPE ABDBG-VNUMFROM,
            VNUMTO TYPE ABDBG-VNUMTO,
            BUTTON TYPE ABDBG-BUTTON,
            FIELDINFO TYPE ABDBG-FIELDINFO,
            FLDNAME TYPE ABDBG-FLDNAME,
            FLDVALUE TYPE ABDBG-FLDVALUE,
            FLDHEX TYPE ABDBG-FLDHEX,
            STRNAME TYPE ABDBG-STRNAME,
            STRINGNAME TYPE ABDBG-STRINGNAME,
            STRINGLEN TYPE ABDBG-STRINGLEN,
            STRINGOFF1 TYPE ABDBG-STRINGOFF1,
            STRINGOFF2 TYPE ABDBG-STRINGOFF2,
            TABNAME TYPE ABDBG-TABNAME,
            TABHEAD TYPE ABDBG-TABHEAD,
            TABLINE TYPE ABDBG-TABLINE,
            TLINE TYPE ABDBG-TLINE,
            TMODE TYPE ABDBG-TMODE,
            OBJNAME TYPE ABDBG-OBJNAME,
            OBJVIEW TYPE ABDBG-OBJVIEW,
            OBJMETHOD TYPE ABDBG-OBJMETHOD,
            OBJNAME_HA TYPE ABDBG-OBJNAME_HA,
            ICON_CI TYPE ABDBG-ICON_CI,
            ICON_PPP TYPE ABDBG-ICON_PPP,
            FLAGCLASAT TYPE ABDBG-FLAGCLASAT,
            FLAGINSTAT TYPE ABDBG-FLAGINSTAT,
            FLAGPUBLAT TYPE ABDBG-FLAGPUBLAT,
            FLAGPRIVAT TYPE ABDBG-FLAGPRIVAT,
            FLAGPROTAT TYPE ABDBG-FLAGPROTAT,
            DYNAME TYPE ABDBG-DYNAME,
            DYNUMB TYPE ABDBG-DYNUMB,
            DEVENT TYPE ABDBG-DEVENT,
            VOLEN TYPE ABDBG-VOLEN,
            VODEC TYPE ABDBG-VODEC,
            VOFFI TYPE ABDBG-VOFFI,
            POPOK TYPE ABDBG-POPOK,
            POPLINE TYPE ABDBG-POPLINE,
            WARNLINE TYPE ABDBG-WARNLINE,
            FIXPTARITH TYPE ABDBG-FIXPTARITH,
            RFCHOST TYPE ABDBG-RFCHOST,
            RFCSYSID TYPE ABDBG-RFCSYSID,
            RFCDEST TYPE ABDBG-RFCDEST,
            LICON TYPE ABDBG-LICON,
            LLINENUM3 TYPE ABDBG-LLINENUM3,
            LLINENUM6 TYPE ABDBG-LLINENUM6,
            LPROGRAM TYPE ABDBG-LPROGRAM,
            LEVENTTYPE TYPE ABDBG-LEVENTTYPE,
            LEVENT TYPE ABDBG-LEVENT,
            LPROGGROUP TYPE ABDBG-LPROGGROUP,
            LLANGUAGE TYPE ABDBG-LLANGUAGE,
            LLOADSIZE TYPE ABDBG-LLOADSIZE,
            LUPDATE TYPE ABDBG-LUPDATE,
            LFLAGKEY TYPE ABDBG-LFLAGKEY,
            LFLAGSEAR TYPE ABDBG-LFLAGSEAR,
            LSEARVALUE TYPE ABDBG-LSEARVALUE,
            LFLAG TYPE ABDBG-LFLAG,
            LISEARFROM TYPE ABDBG-LISEARFROM,
            ROLL_AREA TYPE ABDBG-ROLL_AREA,
            WFLAGOR TYPE ABDBG-WFLAGOR,
            WFLAGAND TYPE ABDBG-WFLAGAND,
            LWFLAGLOCA TYPE ABDBG-LWFLAGLOCA,
            LWPROGRAM TYPE ABDBG-LWPROGRAM,
            LWNAME TYPE ABDBG-LWNAME,
            LWCOMPOPER TYPE ABDBG-LWCOMPOPER,
            LWFLAGFIEL TYPE ABDBG-LWFLAGFIEL,
            LWVALUE TYPE ABDBG-LWVALUE,
            WPROGRAM TYPE ABDBG-WPROGRAM,
            WNAME TYPE ABDBG-WNAME,
            WVALUE TYPE ABDBG-WVALUE,
            LCOMPONENT TYPE ABDBG-LCOMPONENT,
            LCTYPE TYPE ABDBG-LCTYPE,
            LCLENGTH TYPE ABDBG-LCLENGTH,
            LVALUE TYPE ABDBG-LVALUE,
            SEARCHSTR TYPE ABDBG-SEARCHSTR,
            LTEXT TYPE ABDBG-LTEXT,
            REGION TYPE ABDBG-REGION,
            SUBKEY TYPE ABDBG-SUBKEY,
            SUBKEYC TYPE ABDBG-SUBKEYC,
            DISLINE TYPE ABDBG-DISLINE,
            SYSAREAHEA TYPE ABDBG-SYSAREAHEA,
            SYSAREALIN TYPE ABDBG-SYSAREALIN,
            MEMTABALLO TYPE ABDBG-MEMTABALLO,
            MEMTABUSED TYPE ABDBG-MEMTABUSED,
            MEM_ROLL TYPE ABDBG-MEM_ROLL,
            MEM_HEAP TYPE ABDBG-MEM_HEAP,
            MEM_HEAPMX TYPE ABDBG-MEM_HEAPMX,
            MEM_ROLLEX TYPE ABDBG-MEM_ROLLEX,
            MEM_MMUSED TYPE ABDBG-MEM_MMUSED,
            MEM_MMFREE TYPE ABDBG-MEM_MMFREE,
            MEM_SHORT TYPE ABDBG-MEM_SHORT,
            MEM_PAGING TYPE ABDBG-MEM_PAGING,
            MEM_SUM TYPE ABDBG-MEM_SUM,
            SYSTDEBUG TYPE ABDBG-SYSTDEBUG,
            MEMORY TYPE ABDBG-MEMORY,
            UPDTASKDBG TYPE ABDBG-UPDTASKDBG,
            AC_FLUSH TYPE ABDBG-AC_FLUSH,
            WARNLIST TYPE ABDBG-WARNLIST,
            WARNSTOP TYPE ABDBG-WARNSTOP,
            WARNDUMP TYPE ABDBG-WARNDUMP,
            TABTYPE TYPE ABDBG-TABTYPE,
            EXTTYPE TYPE ABDBG-EXTTYPE,
          end of abap_call_stack_entry.
      DATA:
        acse type abap_call_stack_entry,
        tab  type table of abap_call_stack_entry.
      CALL 'ABAP_CALLSTACK' ID 'DEPTH'     FIELD -1
                            ID 'CALLSTACK' FIELD tab.
        LOOP AT tab INTO acse FROM 2.
          WRITE:
          / 'Mainprog:', acse-mainprogram,
          / 'Include: ', acse-include,
          / 'Event:   ', acse-eventtype,
                         acse-event.
        ENDLOOP.
    ENDFORM.

    CALL 'ABAP_CALLSTACK' ID 'DEPTH' FIELD -1
    ID 'CALLSTACK' FIELD tab.
    provides useful information about  a programm
    and its routines like Programname linenumber etc.
    All what I want to have is getting more information
    concerning a programm during the runtime.
    As I have heard the above mentioned structure
    ABDBG provides exactly such things.
    And I have problems on using this sructure
    because I get characters like ##### instead
    of values of variables and so on.
    Please look to the structure components

  • Problem During NWDS start up

    Hi all,
        I have installed Net weaver IDE in my system.Now i have started my IDE by clicking on the icon. It was shown me a Browse option to select workspace. I have selected default workspace. But it is giving me an error saying :
    Problem during startup and check the .log file in the .metadata directory of ur workspace.
    when i open the .log file it is showing the errors.....
    !SESSION -
    !ENTRY org.eclipse.core.launcher 4 0 Aug 26, 2006 10:21:30.44
    !MESSAGE Exception launching the Eclipse Platform:
    !STACK
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Caused by: java.lang.reflect.InvocationTargetException
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:861)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         ... 7 more
    Caused by: java.lang.UnsatisfiedLinkError: Native Library C:\Program Files\SAP\JDT\eclipse\plugins\org.eclipse.swt.win32_2.1.2\os\win32\x86\swt-win32-2135.dll already loaded in another classloader
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1551)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1495)
         at java.lang.Runtime.loadLibrary0(Runtime.java:788)
         at java.lang.System.loadLibrary(System.java:834)
         at org.eclipse.swt.internal.Library.loadLibrary(Library.java:108)
         at org.eclipse.swt.internal.win32.OS.<clinit>(OS.java:46)
         at org.eclipse.swt.widgets.Display.internal_new_GC(Display.java:1291)
         at org.eclipse.swt.graphics.Device.init(Device.java:547)
         at org.eclipse.swt.widgets.Display.init(Display.java:1316)
         at org.eclipse.swt.graphics.Device.<init>(Device.java:96)
         at org.eclipse.swt.widgets.Display.<init>(Display.java:291)
         at org.eclipse.swt.widgets.Display.<init>(Display.java:287)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1361)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         ... 8 more
    !SESSION Aug 26, 2006 10:32:06.10 -
    java.version=1.4.2_12
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments: -os win32 -ws win32 -arch x86 -feature com.sap.java.ide C:\j2sdk1.4.2_12\bin\javaw.exe
    -Xmx512m
    -Xms128m
    -XX:PermSize=32m
    -XX:MaxPermSize=128m
    -DallUserDir='C:\Documents and Settings\All Users\Application Data'
    -cp C:\Program Files\SAP\JDT\eclipse\SapStartup.jar com.sap.ide.eclipse.startup.Main
    -os win32
    -ws win32
    -arch x86
    -feature com.sap.java.ide
    -showsplash C:\Program Files\SAP\JDT\eclipse\SapIde.exe -showsplash 600  -data C:\Documents and Settings\javadev0014\Documents\SAP\workspace -install file:C:/Program Files/SAP/JDT/eclipse/
    !ENTRY Startup 1 0 Aug 26, 2006 10:32:06.10
    !MESSAGE Sap NetWeaver Developer Studio - Build: 200503040130
    Sap Internal Installation
    !SESSION -
    !ENTRY org.eclipse.core.launcher 4 0 Aug 26, 2006 10:32:10.885
    !MESSAGE Exception launching the Eclipse Platform:
    !STACK
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Caused by: java.lang.reflect.InvocationTargetException
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:861)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         ... 7 more
    Caused by: java.lang.UnsatisfiedLinkError: Native Library C:\Program Files\SAP\JDT\eclipse\plugins\org.eclipse.swt.win32_2.1.2\os\win32\x86\swt-win32-2135.dll already loaded in another classloader
         at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1551)
         at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1495)
         at java.lang.Runtime.loadLibrary0(Runtime.java:788)
         at java.lang.System.loadLibrary(System.java:834)
         at org.eclipse.swt.internal.Library.loadLibrary(Library.java:108)
         at org.eclipse.swt.internal.win32.OS.<clinit>(OS.java:46)
         at org.eclipse.swt.widgets.Display.internal_new_GC(Display.java:1291)
         at org.eclipse.swt.graphics.Device.init(Device.java:547)
         at org.eclipse.swt.widgets.Display.init(Display.java:1316)
         at org.eclipse.swt.graphics.Device.<init>(Device.java:96)
         at org.eclipse.swt.widgets.Display.<init>(Display.java:291)
         at org.eclipse.swt.widgets.Display.<init>(Display.java:287)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1361)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         ... 8 more
    can anyone guide me in this issue.
    Thanks&Regards
        Kiran

    Hi
    Try to change the workspace and open it
    See this help
    http://help.sap.com/saphelp_nw2004s/helpdata/en/55/434e782e2f294ba490eccbc0e5a6fc/frameset.htm
    Kind Regards
    Mukesh

  • Date format Problem in forms&reports Services 10g

    Hi Dears,
    I Faced a problem during running reports ( i am using forms& Reports Services 10g), when i pass the parameters via parameter form to the report (built in forms10g Rel 2.0) its appearing in arabic like (25-يناير-2010) as my Date Formate is (DD-YYYY-MON) and NLS_LANG parameter is defined as Arabic_Saudi arabia.AR8MSWIN1256 so as a result report is not running due to unknown Date formate, how can i change the Same Date format (DD-YYYY-MON) to appear in english like (25-2010-JAN)
    Thanks

    You could specify the parameter as type VARCHAR2, explicitly cast it (maybe to DD.MM.YYYY) when you pass it from forms and cast it back in your query, like TO_DATE(:P_PARAM, 'DD.MM.YYYY')

  • Form Runtime

    Hi,
    What is the best way to connect to the database schema automatively when the form is in run time.
    Example:
    When you close the form builder or run the form in form runtime, it always prompts you for the database schema. What is the best way to solve this problem, because my form will deploy into the web server, I don't want the user to enter the database schema. Please advise.
    Thank you very much
    Tim
    null

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Bogdan Dincescu ([email protected]):
    With Forms 5.0 I use the following shortcut in Windows:
    D:\ORANT\BIN\F50RUN32.EXE g:\centrala\tlogin_noi_cen USERID=login/login@apollo usesdi=yes
    Still, beware!
    This way you give the luser the username & password. Yet, for this application, there is a trick so that I don't reveal the username & password of the owner of the application object schema (the login user is a dumb user that can only execute some stored procs that do logon to the application schema if they are given the right params for username & password). Back scenes I use the logon & logout built-ins.
    Hope this helps,
    BD.<HR></BLOCKQUOTE>
    Where I can find the exe file, I am running 6i.
    thank you
    tim
    null

  • HST6i, Client/Server env. Forms runtime crash!

    We successfuly instaled HSD6i on Forms Server. But we also need to run forms on client/server environment.
    When I start HSU or generated app. in Forms Runtime (ver 6.0.8.11.3) and do nothing other than navigate from menu to form 'Users' for example, form opens but the very
    next time whole runtime environment dissaper (crash with no error message).
    How can I manage this problem?
    null

    I changed all 'automatic' to <unspecified> but my forms are still crashing with access violation at uiw60.dll. It seems that only forms with item groups though. I also found another posting here by Ivica Coric about "Problem with Item Groups" where people mentioned forms with item groups would crash. It seems that this is my problem. But changing 'automatic' to something else still doesn't solve my problem. Any ideas? Thanks.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Headstart Team:
    Uros,
    I have discovered what makes this happen. As you have read in the the install guide, you need to change a number of properties in the object library. Specifically, the color "Automatic", which is very useful in webforms, is problematic on client/server.
    Because most items in the generated forms subclass from the object library, you would ideally only need to recreate the fmx files and be rid of the "Automatics".
    Unfortunately, there's one place where the generator uses the object library properties, but DOES NOT SUBCLASS BUT COPIES these properties into the generated forms. This happens with boilerplate graphics that result from item group decorations, and then only when the item group decoration has a prompt! Here the color of the CG$TITLE visual attribute is used, but not subclassed. This also explains why you solved it by regenerating the problematic forms.
    To solve this for the applications you cannot regenerate, open the fmbs, navigate to the Canvas, and then to the Graphics. You'll find the culprit there soon enough.
    Kind regards,
    Peter<HR></BLOCKQUOTE>
    null

  • Problems running Forms in Forms Builder 6.0.8.21.3

    I have upgraded some Forms from 4.5 to 6i. I compile and run the forms in Forms Builder 6.0.8.21.3. However I have a problem when running a specific form. When I run the form directly from Forms Builder the problem do not appear.
    But when I call the same form in Oracle Forms Runtime by calling the forms from the menu, the row with push buttons that I have defined do not appear.
    I have faced a similar problem earlier and then I solve the problem changing the order of the Data Blocks in the Object Navigator. I have tried this, but so far it does not work. Do the order of the Data Blocks affect how the Forms will be displayed? What about the order of the Canvases? I hope someone can help me with this challenge.
    I run win 2000 and do not get any runtime error messages.
    Thanks in advance.
    Regards
    Roar

    Roar,
    the order of blocks does only influence the navigation but not the visibility. However, if the button bar is on a canvas that doesn't show if the focus isn't in it then having teh button block on top makes sure the focus is set there. Are the push bottons on a separate canvas or are they on the same canvas as your data ? If not, then how do you ensure that the stacked canvas gets displayed ? Anyway, running the Form from teh builder uses teh same client/server runtime that is used when running your application stand alone. So it must be something within teh navigation (I am guessing).
    Fran

  • Forms runtime as cartridge?

    In a document from July 1997 from Oracle called "Developer/2000
    and the NCA: An Architectural Overview", authors Mark Doran et
    al, the future direction of the Forms Runtime was stated to be:
    In a release after 2.0, the Forms Runtime will be implemented
    as a cartridge. The Web Application Server will invoke a
    Forms cartrige directly to run a Forms application, elim-
    inating the ned for a separate Listener process and Runtime
    processes. In this configuration, the Forms cartridge will
    be able to exploit all of the functionality of the Web
    Application Server, including Inter-Cartridge Exchange
    (ICX) and dynamic load balancing.
    Initially, each instance of the Cartridge will handle a single
    connected user, just as the Forms Runtime does today, but
    in later versions a single cartridge will be able to serve
    multiple simultaneous users for even greater scalability.
    I have two questions:
    a) is this still the intended direction of the Forms Runtime?
    (I couldn't find this repeated in later documents)
    b) if so, which release will/does have this feature?
    I have scoured all the promotional documentation for OAS 4.0
    and Developer 6.0 looking for an answer, but could not find
    any.
    The reasons I care are that 1) our client will continue to grow,
    and the scalability improvement is interesting, and 2) if
    you can use Inter-Cartridge Exchange to (I think) access
    real CORBA objects which live in a custom-built application
    cartridge that lives in OAS 4.0. From Forms, you have to
    use Forms-specific syntax to access functions, and you
    can't access objects directly.
    null

    I agree.
    I've tested my application using Dev2.1 to find out that each
    user was going to take up around 10M.
    We have a user base of about 300, but usually theres only about
    80 users on during our busiest time. 80Users * 10M = 800M.
    Thats not even counting the memeory needed for the reports
    server.
    But to be fair OAS load balancing did cut down on apps which
    were inactive.
    But this still leaves me with the prospect of at least a 512M
    apps server. Which might be incredibly slow during peak times.
    So I started looking towards the OAS4.0 release which had this
    promised shared cartridge architecture. But it looks as if we
    are going to have to upgrade to Dev6.0 to use this cartridge
    architecture.
    What happened to Dev2.1?
    I received the Dev6.0 beta CD, and was imressed by OAS4.0.
    Should we just skip the Dev2.1 / OAS3.0 or are there going to be
    further releases of Dev2.x supporting OAS4.0?
    null

  • Problems during NWDS startup

    I have installed Netweaver developer studio. When i tried to launch it , it gave me an error "Problem during start up". The log file show the following
    !SESSION Oct 22, 2004 18:26:15.579 -
    java.version=1.4.2_04
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments: -os win32 -ws win32 -arch x86 -install file:C:/Program Files/SAP/JDT/eclipse/
    !ENTRY org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Problems encountered loading the plug-in registry.
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.tssap.dtr.client.vfs" was disabled due to missing or disabled prerequisite plug-in "com.sap.ide.eclipse.ext.libs.iaik".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.tssap.dtr.client.eclipse" was disabled due to missing or disabled prerequisite plug-in "com.tssap.dtr.client.vfs".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.tssap.dii" was disabled due to missing or disabled prerequisite plug-in "com.tssap.dtr.client.eclipse".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.tssap.j2ee.model" was disabled due to missing or disabled prerequisite plug-in "com.tssap.dii".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.tssap.j2ee.viewmaps.java" was disabled due to missing or disabled prerequisite plug-in "com.tssap.j2ee.model".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Unable to satisfy prerequisite constraint from "com.tssap.j2ee.library" to "com.tssap.j2ee.model".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.sap.tc.col" was disabled due to missing or disabled prerequisite plug-in "com.sap.mw.jco".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Unable to satisfy prerequisite constraint from "com.tssap.j2ee.external" to "com.tssap.j2ee.model".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Unable to satisfy prerequisite constraint from "com.sap.sld.client" to "com.tssap.dtr.client.vfs".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.sap.sld.namealloc" was disabled due to missing or disabled prerequisite plug-in "com.sap.sld.client".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Unable to satisfy prerequisite constraint from "com.sap.tc.build" to "com.tssap.dtr.client.vfs".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.sap.tc.webdynpro.runtime" was disabled due to missing or disabled prerequisite plug-in "com.sap.ide.jcb.core".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Unable to satisfy prerequisite constraint from "com.tssap.j2ee.core.providers.dtr" to "com.tssap.dii".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.sap.opensql" was disabled due to missing or disabled prerequisite plug-in "com.sap.exception".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.sap.sqlj" was disabled due to missing or disabled prerequisite plug-in "com.sap.opensql".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Unable to satisfy prerequisite constraint from "com.tssap.j2ee.ui" to "com.tssap.j2ee.model".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.tssap.j2ee.ui.perspective" was disabled due to missing or disabled prerequisite plug-in "com.tssap.j2ee.ui".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Unable to satisfy prerequisite constraint from "com.tssap.j2ee.ui.ejb" to "com.tssap.j2ee.ui".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.589
    !MESSAGE Plug-in "com.sap.tc.security.https" was disabled due to missing or disabled prerequisite plug-in "com.sap.ide.eclipse.ext.libs.iaik".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.599
    !MESSAGE Unable to satisfy prerequisite constraint from "com.tssap.j2ee.model.ext" to "com.tssap.j2ee.model".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.599
    !MESSAGE Plug-in "com.sap.tc.cmi" was disabled due to missing or disabled prerequisite plug-in "com.sap.dictionary.runtime".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.599
    !MESSAGE Unable to satisfy prerequisite constraint from "com.tssap.j2ee.ui.ejbjar" to "com.tssap.j2ee.ui".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.599
    !MESSAGE Unable to satisfy prerequisite constraint from "com.tssap.j2ee.ui.web" to "com.tssap.j2ee.ui".
    !SUBENTRY 1 org.eclipse.core.runtime 2 1 Oct 22, 2004 18:26:15.599
    !MESSAGE Unable to satisfy prerequisite constraint from "com.tssap.j2ee.ui.ear" to "com.tssap.j2ee.ui".
    !SESSION Oct 22, 2004 18:26:26.985 -
    java.version=1.4.2_04
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments: -os win32 -ws win32 -arch x86 -install file:C:/Program Files/SAP/JDT/eclipse/
    !ENTRY org.eclipse.ui 4 4 Oct 22, 2004 18:26:26.996
    !MESSAGE Unable to find Action Set: com.sap.ide.help.actionSet
    !ENTRY org.eclipse.ui 4 4 Oct 22, 2004 18:26:27.16
    !MESSAGE Unable to find Action Set: com.sap.ide.eclipse.component.provider.BuildActionSet
    !ENTRY org.eclipse.ui 4 4 Oct 22, 2004 18:26:27.16
    !MESSAGE Unable to find Action Set: com.sap.ide.login.LoginActionSet
    !ENTRY org.eclipse.core.runtime 4 2 Oct 22, 2004 18:26:29.459
    !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.core.runtime".
    !STACK 0
    java.lang.NullPointerException
         at com.tssap.util.InstallationInfo.checkInstType(InstallationInfo.java:83)
         at com.tssap.util.InstallationInfo.getInstallationType(InstallationInfo.java:66)
         at com.tssap.util.UtilPlugin.startup(UtilPlugin.java:343)
         at org.eclipse.core.internal.plugins.PluginDescriptor$1.run(PluginDescriptor.java:736)
         at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1006)
         at org.eclipse.core.internal.plugins.PluginDescriptor.internalDoPluginActivation(PluginDescriptor.java:748)
         at org.eclipse.core.internal.plugins.PluginDescriptor.doPluginActivation(PluginDescriptor.java:188)
         at org.eclipse.core.internal.plugins.PluginClassLoader.activatePlugin(PluginClassLoader.java:112)
         at org.eclipse.core.internal.plugins.PluginClassLoader.internalFindClassParentsSelf(PluginClassLoader.java:185)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.findClassParentsSelf(DelegatingURLClassLoader.java:485)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:882)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.access$0(DelegatingURLClassLoader.java:876)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader$DelegateLoader.loadClass(DelegatingURLClassLoader.java:90)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.findClassPrerequisites(DelegatingURLClassLoader.java:554)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:890)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:862)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at com.tssap.config.ConfigPlugin.<clinit>(ConfigPlugin.java:17)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at org.eclipse.core.internal.plugins.PluginDescriptor.internalDoPluginActivation(PluginDescriptor.java:722)
         at org.eclipse.core.internal.plugins.PluginDescriptor.doPluginActivation(PluginDescriptor.java:188)
         at org.eclipse.core.internal.plugins.PluginDescriptor.getPlugin(PluginDescriptor.java:306)
         at org.eclipse.ui.internal.Workbench$15.run(Workbench.java:1325)
         at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1006)
         at org.eclipse.core.runtime.Platform.run(Platform.java:413)
         at org.eclipse.ui.internal.Workbench$14.run(Workbench.java:1334)
         at java.lang.Thread.run(Unknown Source)
    !ENTRY org.eclipse.ui.workbench 4 2 Oct 22, 2004 18:26:29.479
    !MESSAGE Problems occurred when invoking code from plug-in: "org.eclipse.ui.workbench".
    !STACK 0
    java.lang.ExceptionInInitializerError
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at org.eclipse.core.internal.plugins.PluginDescriptor.internalDoPluginActivation(PluginDescriptor.java:722)
         at org.eclipse.core.internal.plugins.PluginDescriptor.doPluginActivation(PluginDescriptor.java:188)
         at org.eclipse.core.internal.plugins.PluginDescriptor.getPlugin(PluginDescriptor.java:306)
         at org.eclipse.ui.internal.Workbench$15.run(Workbench.java:1325)
         at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1006)
         at org.eclipse.core.runtime.Platform.run(Platform.java:413)
         at org.eclipse.ui.internal.Workbench$14.run(Workbench.java:1334)
         at java.lang.Thread.run(Unknown Source)
    Caused by: org.eclipse.core.internal.boot.DelegatingURLClassLoader$DelegatingLoaderException: "Plug-in "com.tssap.util" activation failed while loading class "com.tssap.util.trace.TracingManager".
         at org.eclipse.core.internal.plugins.PluginClassLoader.activatePlugin(PluginClassLoader.java:116)
         at org.eclipse.core.internal.plugins.PluginClassLoader.internalFindClassParentsSelf(PluginClassLoader.java:185)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.findClassParentsSelf(DelegatingURLClassLoader.java:485)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:882)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.access$0(DelegatingURLClassLoader.java:876)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader$DelegateLoader.loadClass(DelegatingURLClassLoader.java:90)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.findClassPrerequisites(DelegatingURLClassLoader.java:554)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:890)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:862)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at com.tssap.config.ConfigPlugin.<clinit>(ConfigPlugin.java:17)
         ... 12 more
    !ENTRY org.eclipse.ui 4 4 Oct 22, 2004 18:26:29.479
    !MESSAGE Unhandled Exception
    !ENTRY org.eclipse.ui 4 0 Oct 22, 2004 18:26:29.479
    !MESSAGE Unhandled Exception
    !STACK 0
    java.lang.ExceptionInInitializerError
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at org.eclipse.core.internal.plugins.PluginDescriptor.internalDoPluginActivation(PluginDescriptor.java:722)
         at org.eclipse.core.internal.plugins.PluginDescriptor.doPluginActivation(PluginDescriptor.java:188)
         at org.eclipse.core.internal.plugins.PluginDescriptor.getPlugin(PluginDescriptor.java:306)
         at org.eclipse.ui.internal.Workbench$15.run(Workbench.java:1325)
         at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1006)
         at org.eclipse.core.runtime.Platform.run(Platform.java:413)
         at org.eclipse.ui.internal.Workbench$14.run(Workbench.java:1334)
         at java.lang.Thread.run(Unknown Source)
    Caused by: org.eclipse.core.internal.boot.DelegatingURLClassLoader$DelegatingLoaderException: "Plug-in "com.tssap.util" activation failed while loading class "com.tssap.util.trace.TracingManager".
         at org.eclipse.core.internal.plugins.PluginClassLoader.activatePlugin(PluginClassLoader.java:116)
         at org.eclipse.core.internal.plugins.PluginClassLoader.internalFindClassParentsSelf(PluginClassLoader.java:185)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.findClassParentsSelf(DelegatingURLClassLoader.java:485)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:882)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.access$0(DelegatingURLClassLoader.java:876)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader$DelegateLoader.loadClass(DelegatingURLClassLoader.java:90)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.findClassPrerequisites(DelegatingURLClassLoader.java:554)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:890)
         at org.eclipse.core.internal.boot.DelegatingURLClassLoader.loadClass(DelegatingURLClassLoader.java:862)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClassInternal(Unknown Source)
         at com.tssap.config.ConfigPlugin.<clinit>(ConfigPlugin.java:17)
         ... 12 more
    !SESSION -
    !ENTRY org.eclipse.core.launcher 4 0 Oct 22, 2004 18:47:19.256
    !MESSAGE Exception launching the Eclipse Platform:
    !STACK
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:291)
         at org.eclipse.core.launcher.Main.run(Main.java:747)
         at org.eclipse.core.launcher.Main.main(Main.java:583)
    Caused by: java.lang.RuntimeException: Fatal Error: Unable to locate matching org.eclipse.core.runtime plug-in.
         at org.eclipse.core.internal.boot.PlatformConfiguration.locateDefaultPlugins(PlatformConfiguration.java:2264)
         at org.eclipse.core.internal.boot.PlatformConfiguration.<init>(PlatformConfiguration.java:903)
         at org.eclipse.core.internal.boot.PlatformConfiguration.startup(PlatformConfiguration.java:1368)
         at org.eclipse.core.internal.boot.InternalBootLoader.initialize(InternalBootLoader.java:582)
         at org.eclipse.core.internal.boot.InternalBootLoader.startup(InternalBootLoader.java:1035)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:838)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         ... 7 more
    !SESSION -
    !ENTRY org.eclipse.core.launcher 4 0 Oct 22, 2004 18:47:25.415
    !MESSAGE Exception launching the Eclipse Platform:
    !STACK
    java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:291)
         at org.eclipse.core.launcher.Main.run(Main.java:747)
         at org.eclipse.core.launcher.Main.main(Main.java:583)
    Caused by: java.lang.RuntimeException: Fatal Error: Unable to locate matching org.eclipse.core.runtime plug-in.
         at org.eclipse.core.internal.boot.PlatformConfiguration.locateDefaultPlugins(PlatformConfiguration.java:2264)
         at org.eclipse.core.internal.boot.PlatformConfiguration.<init>(PlatformConfiguration.java:903)
         at org.eclipse.core.internal.boot.PlatformConfiguration.startup(PlatformConfiguration.java:1368)
         at org.eclipse.core.internal.boot.InternalBootLoader.initialize(InternalBootLoader.java:582)
         at org.eclipse.core.internal.boot.InternalBootLoader.startup(InternalBootLoader.java:1035)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:838)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         ... 7 more
    Any Idea? HOw to get rid of this problem?.

    I have figured out the problem. Some of the plugins were missing from the installation source. I copied the missing plugins from other installation and it worked.

  • DB Link problem on form/report 6i

    Greeting
    I have an problem on form 6i with DB Link , that When I have view Using the DB Link and want to use the view on form6i or report 6i, the report not work when call the run file but work through the builder and also on the form not work (Form/ Report 6i With Oracle 11g Release 11.2.0.2.0 - 64bit Production)
    Thanks and appreciated,

    Tony,
    we have both 6i forms for client server for Linux and Sparc and the same forms ported (a year ago) to iAS/iDS 10g R2 just to be able to support the same application when 6i becomes obsolete. The issue of trying/asking/investigating if 6i works or will be certified against 11g or not, is simply to find out if we can support our application on the client/server side when the end users want to move to the new database server version/s. As you know the runtime for the client/server version of 6i is free. But we can not simply recommend our end users to start using 11g db server yet, given that 10gR2 forms are not yet certified against 11g yet. Thank you for your comments not only for this posting but on Forms forum though, I always find them very helpful when making educated decisions. Also knowing that you are a unix person makes your comments more valueable for me, personally.
    R/ Zafer

  • Oracle Form Runtime (bug)

    Hi guys..
    I have created an application composed by 5/6 forms. I created a .BAT file that launches the main MENU form, that has all the related buttons wich call the other modules of the application. NOw the issue is the seguent, if I install the forms on the local machine I have no problems at all. But instead, if I install them on a server pc, I begin having very strange problems. For example, my main MENU forms gets launched without any issues, I press the first button on the main menu and my application starts, if I exit and then press another button, it literally EXPLODES. The forms runtime crashes and creates a DUMP file. Now the strange thing is that it doens't do it on every PC.
    Do you guys know anything about this ?

    Could it be that you have lot of other programs running in the server so there is not enough memory to run forms.
    Just curious, why are you using a combination of version 5 and version 6 forms?
    From your main form, are you calling both version 5 and version 6 fmx files?

  • Forms Runtime crashes when installing on clients (W95)

    I'm trying to test my application which has been created with Developer 2000. Forms only, no reports or anything else yet.
    It is my understanding that all I have to do is install the FORMS RUNTIME item from the developer CD. If this is wrong, please correct me. My problem is when it gets a small portion of the way through the install, it crashes - why and how do I fix this? My error is a GPF, 'Orainst caused an invalid page fault in module kernel32.dll'. This happens on every machine so far, all Windows 95B.
    Any advice is appreciated.

    I finally callled Oracle Tech Support and figured out my problem. Thought I'd post it in case anyone else has this trouble. I had the Ora8i client installed because my app was originally VB & used ODBC drivers etc.
    I uninstalled every Oracle component on my machine.
    Physically deleted the Oracle folders from C: and from C:\Program Files
    In Regedit I physically deleted the two Oracle keys under HKEY_LOCAL_MACHINE/SOFTWARE and HKEY_LOCAL_USER/SOFTWARE.
    Reinstalled the forms runtime files using the default Oracle Home (which it requires). Then installed Net80 components to enable communication with my database.
    So far so good.
    null

Maybe you are looking for

  • ORA-12523 while creating a database on ASM using DBCA

    HI PPL, I have set up am ASM instance and also configured the listener services to it. But when I try to create database on the configured ASM instance using DBCA , I am getting the following error TNS:listener could not find instance appropriate for

  • Problems with DVD drive showing up in BIOS

    Hello everyone. I am just after getting my MSI 915P Combo mainboard. The problem is i have one DVD-RW drive which i used to load on the windows XP pro onto the computer.  When i restarted the computer a message came up checking for new devices and th

  • Oracle 9 and Crystal Report

    I want to run a crystal report against an oracle database procedure. I know that I will have to user REF CURSOR for that purpose. If I try to update a table within that procedure and use REF CURSOR and call the procedure from Crystal report it gives

  • New to OBIEE need help with Formula

    Is it possible to use a prompt in a column formula filter for e.g. FILTER("Defect Facts"."Detected on Date" USING "Defect Facts"."Detected on Date" = '@{11/20/2009 12:00:00 AM}')) this formula does not works for the column. What i need to do is creat

  • Sustain pedal not working in Mainstage only with Kontakt 4 plugin

    I can't get Kontakt 4.0.2 to sustain notes when instantiated in Mainstage. The sustain pedal works fine for Kontakt in stand alone mode, and for the same patch/channel strip in Logic 9, but not when in a channel strip in MainStage. I have the pedal m