Form refresh in debug mode

I am trying to debug an issue on why my labels are not changing color when I update the forecolor property.  When I run the code below in debug mode I do not see the label change color.  I know my real issue is more involved but if the form does
not update in debug mode then I really don't know how to isolate the real issue
lblPlayer1.ForeColor = Color.Gray;

The control won't update until the form refreshes.  This normally happens when OnForeColorChanged is called but that simply invalidates the window.  The actual refresh happens later after the UI thread finishes processing the current message. Hence
you might not see it refresh while you're in an event handler as you're processing a message and the message is pending.  Windows processes UI messages sequentially.
Michael Taylor
http://blogs.msmvps.com/p3net

Similar Messages

  • Need Help - JVM error in Forms 10g in Debug mode

    Hello,
    This issue has bothered me since I started coding in Forms. If I use an Associative Array with a VARCHAR2 index type, whenever I try to look at the contents of the array, a small JVM aborting messagebox appears with OK as the only option. Once I click OK, I get a Forms error saying it has lost connection with the server. This ONLY happens if I'm trying to look at the contents of the array when it has data. I can see the variable in the debug console just fine when it doesn't have data, but once one value is populated, the JVM aborting message pops up. Another weird caveat is the JVM error will only occur IF you have a debug window open which would display the contents of this array. I can still use arrays of this type IF I don't try and look at the contents in the debugger.
    Here is a quick test case. I just have a simple form with one push button. The following code is in the WHEN-BUTTON-PRESSED trigger:
    DECLARE
         TYPE COLUMN_ARRAY IS TABLE OF VARCHAR2(4000) INDEX BY VARCHAR2(50);
         testArray COLUMN_ARRAY;
    BEGIN
         testArray('col1') := 'value1'; -- break point here
         testArray('col2') := 'value2';
         testArray('col3') := 'value3';
    END;
    Put a breakpoint on the first statement and debug it. If you have the local variables debug window up, the JVM aborting error will appear when you step over the first line. We have submitted a metalink bug report about 3 months ago but never heard anything back. I wanted to post something here incase anyone else has encountered this error and might know how to fix it.
    Here are some details of the environment we are using.
    Forms [32 Bit] Version 10.1.2.3.0 (Production)
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    PL/SQL Version 10.1.0.5.0 (Production)
    Oracle Procedure Builder V10.1.2.3.0 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 10.1.2.3.0 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.2 (Production)
    Oracle Tools GUI Utilities Version 10.1.2.0.2 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE     10.1.0.5.0     Production
    There was also a log file that was created on the error. Here are the contents:
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x603c0f7b, pid=4184, tid=5384
    # Java VM: Java HotSpot(TM) Client VM (11.3-b02 interpreted mode, sharing windows-x86)
    # Problematic frame:
    # C [orageneric10.dll+0xc0f7b]
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    --------------- T H R E A D ---------------
    Current thread (0x010b7400): JavaThread "main" [_thread_in_native, id=5384, stack(0x00030000,0x00130000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x0000000c
    Registers:
    EAX=0x00000000, EBX=0x00000000, ECX=0x77c421e7, EDX=0x00000001
    ESP=0x0012ba60, EBP=0x0012bb60, ESI=0x00c8a47c, EDI=0x00000000
    EIP=0x603c0f7b, EFLAGS=0x00210212
    Top of Stack: (sp=0x0012ba60)
    0x0012ba60: 00000000 0369d8ac 037f6c00 037f6c00
    0x0012ba70: 037f6c00 003b65a8 6d9335ec 00000000
    0x0012ba80: 00000018 0369d8ac 6d8b83bc 2b193da8
    0x0012ba90: 0369d8ac 00000018 6d96abbe 0369d8ac
    0x0012baa0: 6d91ad4e 6d97c34f 037f6c00 0369d8a8
    0x0012bab0: 0369d8b0 6d97d636 270aba00 00000000
    0x0012bac0: 037f6c00 0369d8a8 6d96e711 0369d8b0
    0x0012bad0: 037f6c00 0000000a 0369d898 00000010
    Instructions: (pc=0x603c0f7b)
    0x603c0f6b: 90 55 8b ec 81 ec fc 00 00 00 ff 75 0c 8b 45 08
    0x603c0f7b: 8b 50 0c 8b 48 10 89 95 04 ff ff ff 8b 50 14 89
    Stack: [0x00030000,0x00130000], sp=0x0012ba60, free space=1006k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C [orageneric10.dll+0xc0f7b]
    C [oraclient10.dll+0x45fa9]
    C [orageneric10.dll+0x2b21d]
    C [DEB.dll+0xea2b]
    C [DEB.dll+0xcd54]
    j oracle.opb.debugger.impl.DbgServer.nGetPackageValues(JJ)[B+0
    j oracle.opb.debugger.impl.DbgServer.getPackageValues(IJ)V+5
    j oracle.opb.debugger.impl.DbgPacketProcessor.processCommand(Loracle/opb/net/CommandPacket;)Z+624
    j oracle.opb.debugger.impl.DbgPacketProcessor.processPacket(Z)Z+30
    j oracle.opb.debugger.impl.DbgPacketProcessor.processPacketsUntilRun()V+2
    j oracle.opb.debugger.impl.DbgServer.suspended()V+22
    v ~StubRoutines::call_stub
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j oracle.opb.debugger.impl.DbgServer.nGetPackageValues(JJ)[B+0
    j oracle.opb.debugger.impl.DbgServer.getPackageValues(IJ)V+5
    j oracle.opb.debugger.impl.DbgPacketProcessor.processCommand(Loracle/opb/net/CommandPacket;)Z+624
    j oracle.opb.debugger.impl.DbgPacketProcessor.processPacket(Z)Z+30
    j oracle.opb.debugger.impl.DbgPacketProcessor.processPacketsUntilRun()V+2
    j oracle.opb.debugger.impl.DbgServer.suspended()V+22
    v ~StubRoutines::call_stub
    --------------- P R O C E S S ---------------
    Java Threads: ( => current thread )
    0x03c28400 JavaThread "Packet Receiver[oracle.opb.net.PacketTransceiver@61de33]" [_thread_in_native, id=5424, stack(0x03da0000,0x03ea0000)]
    0x03c27000 JavaThread "Packet Sender[oracle.opb.net.PacketTransceiver@61de33]" [_thread_blocked, id=1660, stack(0x03ca0000,0x03da0000)]
    0x0325ec00 JavaThread "Low Memory Detector" daemon [_thread_blocked, id=3432, stack(0x03880000,0x03980000)]
    0x03258800 JavaThread "CompilerThread0" daemon [_thread_blocked, id=6132, stack(0x03760000,0x03860000)]
    0x03257400 JavaThread "Attach Listener" daemon [_thread_blocked, id=4244, stack(0x03660000,0x03760000)]
    0x03253400 JavaThread "Finalizer" daemon [_thread_blocked, id=4212, stack(0x03550000,0x03650000)]
    0x0324ec00 JavaThread "Reference Handler" daemon [_thread_blocked, id=6056, stack(0x03440000,0x03540000)]
    =>0x010b7400 JavaThread "main" [_thread_in_native, id=5384, stack(0x00030000,0x00130000)]
    Other Threads:
    0x0324d000 VMThread [stack: 0x03330000,0x03430000] [id=3540]
    0x03260400 WatcherThread [stack: 0x03980000,0x03a80000] [id=5840]
    VM state:not at safepoint (normal execution)
    VM Mutex/Monitor currently owned by a thread: None
    Heap
    def new generation total 960K, used 538K [0x22990000, 0x22a90000, 0x22e70000)
    eden space 896K, 52% used [0x22990000, 0x22a06b08, 0x22a70000)
    from space 64K, 100% used [0x22a80000, 0x22a90000, 0x22a90000)
    to space 64K, 0% used [0x22a70000, 0x22a70000, 0x22a80000)
    tenured generation total 4096K, used 109K [0x22e70000, 0x23270000, 0x26990000)
    the space 4096K, 2% used [0x22e70000, 0x22e8b660, 0x22e8b800, 0x23270000)
    compacting perm gen total 12288K, used 82K [0x26990000, 0x27590000, 0x2a990000)
    the space 12288K, 0% used [0x26990000, 0x269a48c0, 0x269a4a00, 0x27590000)
    ro space 8192K, 67% used [0x2a990000, 0x2aef7ea8, 0x2aef8000, 0x2b190000)
    rw space 12288K, 53% used [0x2b190000, 0x2b805530, 0x2b805600, 0x2bd90000)
    Dynamic libraries:
    0x00400000 - 0x00410000      C:\Oracle\Ora10gRep\bin\frmweb.exe
    0x7c900000 - 0x7c9b2000      C:\WINNT\system32\ntdll.dll
    0x7c800000 - 0x7c8f6000      C:\WINNT\system32\kernel32.dll
    0x608d0000 - 0x60963000      C:\Oracle\Ora10gRep\bin\oranls10.dll
    0x60730000 - 0x607dc000      C:\Oracle\Ora10gRep\bin\oracore10.dll
    0x60c40000 - 0x60c47000      C:\Oracle\Ora10gRep\bin\orauts.dll
    0x71ab0000 - 0x71ac7000      C:\WINNT\system32\WS2_32.dll
    0x77dd0000 - 0x77e6b000      C:\WINNT\system32\ADVAPI32.dll
    0x77e70000 - 0x77f02000      C:\WINNT\system32\RPCRT4.dll
    0x77fe0000 - 0x77ff1000      C:\WINNT\system32\Secur32.dll
    0x77c10000 - 0x77c68000      C:\WINNT\system32\msvcrt.dll
    0x71aa0000 - 0x71aa8000      C:\WINNT\system32\WS2HELP.dll
    0x76b40000 - 0x76b6d000      C:\WINNT\system32\WINMM.dll
    0x77f10000 - 0x77f59000      C:\WINNT\system32\GDI32.dll
    0x7e410000 - 0x7e4a1000      C:\WINNT\system32\USER32.dll
    0x62b40000 - 0x62b53000      C:\Oracle\Ora10gRep\bin\oraunls10.dll
    0x774e0000 - 0x7761d000      C:\WINNT\system32\ole32.dll
    0x66220000 - 0x6623c000      C:\Oracle\Ora10gRep\bin\nn.dll
    0x64ce0000 - 0x64dbd000      C:\Oracle\Ora10gRep\bin\UIW.dll
    0x64ca0000 - 0x64cb1000      C:\Oracle\Ora10gRep\bin\UTL.dll
    0x64cd0000 - 0x64cd7000      C:\Oracle\Ora10gRep\bin\UTC.dll
    0x64cc0000 - 0x64cc9000      C:\Oracle\Ora10gRep\bin\UTJ.dll
    0x64f10000 - 0x64f21000      C:\Oracle\Ora10gRep\bin\UIIM.dll
    0x73000000 - 0x73026000      C:\WINNT\system32\WINSPOOL.DRV
    0x5d090000 - 0x5d12a000      C:\WINNT\system32\COMCTL32.dll
    0x64ed0000 - 0x64ef6000      C:\Oracle\Ora10gRep\bin\UIOLE.dll
    0x763b0000 - 0x763f9000      C:\WINNT\system32\comdlg32.dll
    0x7c9c0000 - 0x7d1d7000      C:\WINNT\system32\SHELL32.dll
    0x77f60000 - 0x77fd6000      C:\WINNT\system32\SHLWAPI.dll
    0x663d0000 - 0x66414000      C:\Oracle\Ora10gRep\bin\CA.dll
    0x66340000 - 0x6636a000      C:\Oracle\Ora10gRep\bin\mmc.dll
    0x616b0000 - 0x61893000      C:\Oracle\Ora10gRep\bin\oraclient10.dll
    0x62b60000 - 0x62b66000      C:\Oracle\Ora10gRep\bin\oravsn10.dll
    0x60d30000 - 0x60de8000      C:\Oracle\Ora10gRep\bin\oracommon10.dll
    0x60300000 - 0x6071c000      C:\Oracle\Ora10gRep\bin\orageneric10.dll
    0x629c0000 - 0x629d2000      C:\Oracle\Ora10gRep\bin\orasnls10.dll
    0x62b80000 - 0x62c86000      C:\Oracle\Ora10gRep\bin\oraxml10.dll
    0x00330000 - 0x00341000      C:\WINNT\system32\MSVCIRT.dll
    0x607e0000 - 0x608cc000      C:\Oracle\Ora10gRep\bin\oran10.dll
    0x62000000 - 0x6202c000      C:\Oracle\Ora10gRep\bin\oranl10.dll
    0x62030000 - 0x62042000      C:\Oracle\Ora10gRep\bin\oranldap10.dll
    0x62090000 - 0x62184000      C:\Oracle\Ora10gRep\bin\orannzsbb10.dll
    0x61e10000 - 0x61e52000      C:\Oracle\Ora10gRep\bin\oraldapclnt10.dll
    0x61f30000 - 0x61f47000      C:\Oracle\Ora10gRep\bin\orancrypt10.dll
    0x71ad0000 - 0x71ad9000      C:\WINNT\system32\WSOCK32.dll
    0x76d60000 - 0x76d79000      C:\WINNT\system32\iphlpapi.dll
    0x77120000 - 0x771ab000      C:\WINNT\system32\OLEAUT32.dll
    0x621a0000 - 0x621d7000      C:\Oracle\Ora10gRep\bin\oranro10.dll
    0x621f0000 - 0x621fc000      C:\Oracle\Ora10gRep\bin\orantcp10.dll
    0x61f70000 - 0x61f76000      C:\Oracle\Ora10gRep\bin\oranhost10.dll
    0x61f20000 - 0x61f26000      C:\Oracle\Ora10gRep\bin\orancds10.dll
    0x62210000 - 0x62216000      C:\Oracle\Ora10gRep\bin\orantns10.dll
    0x60970000 - 0x60c31000      C:\Oracle\Ora10gRep\bin\orapls10.dll
    0x62500000 - 0x62507000      C:\Oracle\Ora10gRep\bin\oraslax10.dll
    0x627b0000 - 0x628b3000      C:\Oracle\Ora10gRep\bin\oraplp10.dll
    0x618b0000 - 0x61906000      C:\Oracle\Ora10gRep\bin\orahasgen10.dll
    0x622b0000 - 0x622e6000      C:\Oracle\Ora10gRep\bin\oraocr10.dll
    0x622f0000 - 0x62315000      C:\Oracle\Ora10gRep\bin\oraocrb10.dll
    0x5b860000 - 0x5b8b5000      C:\WINNT\system32\NETAPI32.dll
    0x76bf0000 - 0x76bfb000      C:\WINNT\system32\PSAPI.DLL
    0x62a80000 - 0x62af6000      C:\Oracle\Ora10gRep\bin\orasql10.dll
    0x66450000 - 0x66538000      C:\Oracle\Ora10gRep\bin\frmw.dll
    0x00410000 - 0x004d4000      C:\Oracle\Ora10gRep\bin\frmwcm.dll
    0x662f0000 - 0x66320000      C:\Oracle\Ora10gRep\bin\mmi.dll
    0x64e30000 - 0x64e93000      C:\Oracle\Ora10gRep\bin\UIREM.dll
    0x659a0000 - 0x659ee000      C:\Oracle\Ora10gRep\bin\ROS.dll
    0x64ad0000 - 0x64c05000      C:\Oracle\Ora10gRep\bin\VGS.dll
    0x66250000 - 0x6627e000      C:\Oracle\Ora10gRep\bin\mmw.dll
    0x662a0000 - 0x662b0000      C:\Oracle\Ora10gRep\bin\mmv.dll
    0x73b50000 - 0x73b67000      C:\WINNT\system32\AVIFIL32.dll
    0x77be0000 - 0x77bf5000      C:\WINNT\system32\MSACM32.dll
    0x75a70000 - 0x75a91000      C:\WINNT\system32\MSVFW32.dll
    0x662c0000 - 0x662df000      C:\Oracle\Ora10gRep\bin\mms.dll
    0x66690000 - 0x6680f000      C:\Oracle\Ora10gRep\bin\DEB.dll
    0x627a0000 - 0x627af000      C:\Oracle\Ora10gRep\bin\oraplc10.dll
    0x66380000 - 0x66389000      C:\Oracle\Ora10gRep\bin\mma.dll
    0x64ff0000 - 0x65003000      C:\Oracle\Ora10gRep\bin\UAT.dll
    0x64f70000 - 0x64f94000      C:\Oracle\Ora10gRep\bin\UIA.dll
    0x64f30000 - 0x64f45000      C:\Oracle\Ora10gRep\bin\UIDC.dll
    0x76390000 - 0x763ad000      C:\WINNT\system32\IMM32.DLL
    0x773d0000 - 0x774d3000      C:\WINNT\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\comctl32.dll
    0x74720000 - 0x7476c000      C:\WINNT\system32\MSCTF.dll
    0x755c0000 - 0x755ee000      C:\WINNT\system32\msctfime.ime
    0x71a50000 - 0x71a8f000      C:\WINNT\System32\mswsock.dll
    0x76f20000 - 0x76f47000      C:\WINNT\system32\DNSAPI.dll
    0x76fb0000 - 0x76fb8000      C:\WINNT\System32\winrnr.dll
    0x76f60000 - 0x76f8c000      C:\WINNT\system32\WLDAP32.dll
    0x00d30000 - 0x00d88000      C:\WINNT\system32\hnetcfg.dll
    0x71a90000 - 0x71a98000      C:\WINNT\System32\wshtcpip.dll
    0x76fc0000 - 0x76fc6000      C:\WINNT\system32\rasadhlp.dll
    0x6d8b0000 - 0x6db06000      C:\Oracle\Ora10gRep\jdk\jre\bin\client\jvm.dll
    0x7c340000 - 0x7c396000      C:\WINNT\system32\MSVCR71.dll
    0x6d340000 - 0x6d348000      C:\Oracle\Ora10gRep\jdk\jre\bin\hpi.dll
    0x6d860000 - 0x6d86c000      C:\Oracle\Ora10gRep\jdk\jre\bin\verify.dll
    0x6d3e0000 - 0x6d3ff000      C:\Oracle\Ora10gRep\jdk\jre\bin\java.dll
    0x6d8a0000 - 0x6d8af000      C:\Oracle\Ora10gRep\jdk\jre\bin\zip.dll
    0x6d6c0000 - 0x6d6d3000      C:\oracle\Ora10gRep\jdk\jre\bin\net.dll
    VM Arguments:
    jvm_args: -Djava.compiler=NONE abort exit -Xrs -Xbootclasspath/p:C:\Oracle\Ora10gRep\vbroker4\lib\vbjboot.jar
    java_command: <unknown>
    Launcher Type: generic
    Environment Variables:
    CLASSPATH=C:\Oracle\Ora10gRep\j2ee\OC4J_BI_Forms\applications\formsapp\formsweb\WEB-INF\lib\frmsrv.jar;C:\Oracle\Ora10gRep\jlib\repository.jar;C:\Oracle\Ora10gRep\jlib\ldapjclnt10.jar;C:\Oracle\Ora10gRep\jlib\debugger.jar;C:\Oracle\Ora10gRep\jlib\ewt3.jar;C:\Oracle\Ora10gRep\jlib\share.jar;C:\Oracle\Ora10gRep\jlib\utj.jar;C:\Oracle\Ora10gRep\jlib\zrclient.jar;C:\Oracle\Ora10gRep\reports\jlib\rwrun.jar;C:\Oracle\Ora10gRep\forms\java\frmwebutil.jar
    PATH=C:\Oracle\Ora10gRep\bin;C:\Oracle\Ora10gRep\jdk\jre\bin\client
    OS=Windows_NT
    PROCESSOR_IDENTIFIER=x86 Family 15 Model 2 Stepping 9, GenuineIntel
    --------------- S Y S T E M ---------------
    OS: Windows XP Build 2600 Service Pack 3
    CPU:total 1 (1 cores per cpu, 1 threads per core) family 15 model 2 stepping 9, cmov, cx8, fxsr, mmx, sse, sse2
    Memory: 4k page, physical 1046512k(39192k free), swap 4094688k(2722564k free)
    vm_info: Java HotSpot(TM) Client VM (11.3-b02) for windows-x86 JRE (1.6.0_13-b03), built on Mar 9 2009 01:15:24 by "java_re" with MS VC++ 7.1
    time: Thu Jul 02 14:35:18 2009
    elapsed time: 131 seconds
    Any help is appreciated.
    Thanks!!!

    Nobody has any suggestions or comments???
    Can anyone confirm they have the same issue when running the sample code I provided below?
    Can anyone see the contents of a VARCHAR2 index based array when debugging??
    Thanks

  • Run form in debug mode with windows vista

    hi guys
    plz help me
    i'm using oracle forms 10g r2 on windows vista home primume and everything is ok but
    when i need to run any form in debug mode i get the following
    the jvm 1.4 give me jvm is aborting after that
    the oc4j give me the following error frm-92101 there was a failure in the form server during start up
    thanks

    Hi Manoj,
    You can do it directly from felix console. just go to http://<host>:<port>/system/console/slinglog there you will see all log files. under first table "Log Level" you will see all the log files and besides to that you will have configuration option, just go there and set log level for each of log files and save it.
    Let me know if you need more information.
    Thanks,
    Pawan

  • How to run the forms under debug Mode?

    Hi,
    I run my form under debug mode by introducing a break point on a trigger. But i am receive the following error how to solve this issue.
    JVM aborting and followed by the following one.
    FRM-92101: There was a failure in the forms server during startup.
    This could happend due to invalid configuration.
    Please look into the Web-server log files for details.and additional information from Java console.
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0
    oracle.forms.net.ConnectionException: Forms session <5> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.StreamMessageWriter.run(Unknown Source)I am running on my standalone machine.
    Where and what file i want to look into this to solve this issue.
    Good help will be appreciated. Thank in advance.
    kanish

    Kanish,
    Lets start with a few of the basics, shall we. What JVM are you using (Jinit or Sun JRE and the version)? Based on the error you posted, I can infer that you are using Forms 10.1.2.0? Are you running a custom configuration in the formsweb.cfg and default.env? This could be the cause if you have modified the CLASSPATH setting in the default.env excluding core .jar files.
    Typically, the FRM-92101 error is caused by a Java error; either a .jar is not found or invalid or not compatible with JVM, etc.
    Have you tried clearing your Java Cache to check for a corrupt .jar?
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Debug mode for forms 9.0.4.0.19

    Hello there,
    i have been trying to run the form in debug mode.I inserted a break point at "exit_form". how do i run the form and see results. I tried clicking on "debug->debug_windows" and see results but could not find anything.
    Please help me.
    thanks

    Thanks for writing back.
    I started OC4J, set application url and web browser location in "preferences" menu.
    I placed the breakpoint and used "Run From Debug' from toolbar. I get a html page
    <html> <head> ORACLE FORMS.</head>
    <body onload="document.pform.submit();" >
    <form name="pform" action="http://myname:8889/forms90/f90servlet" method="POST">
    <input type="hidden" name="form" value="C:\Documents and Settings\mydesk\Desktop\Documents\LOGON.fmx">
    <input type="hidden" name="userid" value="max/testpass@devdb">
    <input type="hidden" name="obr" value="yes">
    <input type="hidden" name="debug_messages" value="YES">
    <input type="hidden" name="array" value="YES">
    <input type="hidden" name="debug" value="YES">
    <input type="hidden" name="HOST" value="myname">
    <input type="hidden" name="PORT" value="2607">
    </form> </body></html>
    My form doesn't show up. What is going on?
    Thanks

  • Forms in debug mode

    Hi,
    I am able to run my forms in run mode. But, when I try to run my application in debug mode, facing problems. FRM-92101 error is thrown.
    Java console shows,
    Loading http://157.227.14.178:8889/forms90/java/f90all_jinit.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 9.0.4.0
    oracle.forms.net.ConnectionException: Forms session <3> aborted: unable to communicate with runtime process.
         at oracle.forms.net.ConnectionException.createConnectionException(Unknown Source)
         at oracle.forms.net.HTTPNStream.getResponse(Unknown Source)
         at oracle.forms.net.HTTPNStream.doFlush(Unknown Source)
         at oracle.forms.net.HTTPNStream.flush(Unknown Source)
         at java.io.DataOutputStream.flush(Unknown Source)
         at oracle.forms.net.StreamMessageWriter.run(Unknown Source)
    Trace level set to 5: basic, net, security, ext, liveconnect ... completed.
    Opening http://157.227.14.178:8889/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.class
    Connecting http://157.227.14.178:8889/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.class with no proxy
    Opening http://157.227.14.178:8889/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    Connecting http://157.227.14.178:8889/forms90/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties with no proxy
    Any idea?
    Pl help
    Priya

    Nobody has any suggestions or comments???
    Can anyone confirm they have the same issue when running the sample code I provided below?
    Can anyone see the contents of a VARCHAR2 index based array when debugging??
    Thanks

  • Launching from web a form in debug mode (?!)

    Hello,
    I have Developer Suite 10g with WebUtil 1.6. I am playing with a form, which has an attached library from which use a function. This function doesn't function properly and I would like to debug it.
    Problem: in Forms Developer, when I launch the form in DEBUG MODE, it launches my form using the webutil configuration section. The URL looks like this:
    http://localhost:8889/forms/frmservlet?config=webutil
    I need to launch the form with another configuration section and at the same time in debug mode.
    How should I do this?
    Thank you in advacne for the help.
    daniela

    forms-builder:
    look at Edit-Preferences, go to the last tab (Runtime) and then look at "Application Server URL"
    there you can change the used section of your forms builder configuration

  • Running Forms in Debug Mode (appletviewer / J-Initiater)

    Hi All,
    I have a sitiuation where i would like to run a form with debug_messages='YES'. The form is compiled under Forms 4.5 16 bit Windows 95. It is run with J-Initiater under a NCA enviroment. Is there a command parameter to run the fmx in debug mode, probably as a applet parameter or something.
    Thanks,
    Easo

    Attaching to a Form running outside the builder
    The advantage of attaching the debugger to a Form that runs outside of the Builder is that the Form can be running on a different machine other than the one debugging it. The configuration gives an end user the opportunity to run the Form and encounter errors while the developer debugs interactively with the user.
    To start debugging a Form that runs outside the Builder, the Form must be invoked with the parameter Debug=yes passed in the URL. This parameter will invoke a dialog that displays the host name and port number.
    In the Forms Builder, open the FMB for the running Form, and select Debug | Attach Debug. You'll need to supply the host name and port number to start debugging the running Form.

  • Running Form in Debug Mode: How? (Appletviewer/J initiater)

    Hi All,
    I have a sitiuation where i would like to run a form with debug_messages='YES'. The form is compiled under Forms 4.5 16 bit Windows 95. It is run with J-Initiater under a NCA enviroment. Is there a command parameter to run the fmx in debug mode, probably as a applet parameter or something.
    Thanks,
    Easo

    You can also check Francois Degrelle excellent answer to the same question:
    Running a form in debug mode

  • Forms 6i Insists on debug mode

    I am running a form (6i). I compile it on windows and it runs fine. Then I copy it to our solaris server and compile it and whenever it is run over the web with Jinitiator it comes up in debug mode. Other forms compile on the solaris server and don't come up in debug mode. My form builder settings says don't include debug messages.
    Any ideas how to get rid of the debug messages?

    i have created a master detail module and when trying to run it, it doesn't come with data when clicking on "execute query"
    Instead it displays error
    "FRM-42401 Performing program trigger ON_CLEAR_DETAILS on form"
    can someone pls help to get rid of this error

  • Running a form in Debug Mode

    Hi,
    Is it possible for us to debug a forms which is running in Oracle AS?
    I guess is a remote question, but what is the purpose of having Attach Debug & Debug Control in the form builder?
    Please help me.
    Thanks
    Balaji

    Attaching to a Form running outside the builder
    The advantage of attaching the debugger to a Form that runs outside of the Builder is that the Form can be running on a different machine other than the one debugging it. The configuration gives an end user the opportunity to run the Form and encounter errors while the developer debugs interactively with the user.
    To start debugging a Form that runs outside the Builder, the Form must be invoked with the parameter Debug=yes passed in the URL. This parameter will invoke a dialog that displays the host name and port number.
    In the Forms Builder, open the FMB for the running Form, and select Debug | Attach Debug. You'll need to supply the host name and port number to start debugging the running Form.

  • Working in Debug mode, not after building the installation.

    Hi,
    I have a button to launch a form.
    When I test it in debug mode, it works fine.
    But, after making installation, if I do the same thing (press the button), I'm getting the following error:
    Unexpected end of file while parsing name has occured. Line 1, position 2654.
    Also, we have few add-ons operating on sales order.
    When we open the sales order in client site through RDP, there is continuous flickering/refresh.
    In in-house, we don't get that problem.
    Please help me with this.
    These are very critical issues for my release.
    Thank you in advance.
    Regards,
    Geetha

    Hi Geetha,
    1.) button problem:
    i don't know how you open the form - when you do it with a XML file maybe you packed the wrong XML file into your addon installer.
    2.) the flickering can be a problem of formatted searches or interacting with other addons.
    when addon a. changes a field it can be that addon b. does something because of the event from addon a.
    the same can happen when you have formatted searches that do something when a field changes.
    ok - that are my last tipps for this day
    good night
    David

  • Finding Events in debug mode?

    Dear All,
    I found a list of events which will be used for the transaction EA10 by the method mentioned in the video.
    http://www.sap-isu.net/video/fica-events.
    Out of the many events which are triggerred one of them is R431.
    Right now the function module in this has no code . Accept the function start and end syntax.
    When I try to put the breakpoint in this and run the transaction in the debugging mode , the flow of the program doesnt stop at the debug point.
    Why such analomy?
    Edited by: Rahul_paldiwal on Jan 6, 2010 11:30 AM

    Hi,
      If you go to the code of program LE21AF08. You will see that program will not go to the code if the function module is 'ISU_SAMPLE_R431'.
    FORM event_r431  TABLES   p_contrcl STRUCTURE t_contrcl
                     CHANGING p_iiu   TYPE isu21_invoice_unit
                              p_param TYPE isu21_invoice_param.
      PERFORM get_user_exit_function USING 'R431'.
      REFRESH: t_vkk_doc_id.
      LOOP AT t_fbstab WHERE funcc NE 'ISU_SAMPLE_R431'.
        t_vkk_doc_id  = p_iiu-t_vkk_doc_id.
        wa_t_bill_doc = p_iiu-t_bill_doc.
        CALL FUNCTION t_fbstab-funcc
          EXPORTING
            x_printdoc    = p_iiu-print_doc
            x_bldat       = p_param-bldat
            x_budat       = p_param-budat
            x_bupa        = p_iiu-bupa
            x_fkkvkp      = p_iiu-acc-fkkvkp
          TABLES
            t_contrcl     = p_contrcl
            t_bill_doc    = wa_t_bill_doc
            t_vkk_doc_id  = t_vkk_doc_id
          EXCEPTIONS
            error_message = 1.
        IF sy-subrc <> 0.
          mac_msg_putx co_msg_error sy-msgno sy-msgid
          sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4 iu_error.
        ENDIF.
        FREE: wa_t_bill_doc.
      ENDLOOP.
    * for cross reference purpose only
      SET EXTENDED CHECK OFF.
      IF 1 = 2. CALL FUNCTION 'ISU_SAMPLE_R431'. ENDIF.
      SET EXTENDED CHECK ON.
    ENDFORM.                                                    "EVENT_R431
      most of time if I know the event, I just where use list the function module and go into the code and set the break-point a little bit earlier.
    Cheers,
    Chaiphon

  • Can not view contents of variable in debug mode (version 1.1.1.5.0)

    Hi
    I am running on WebLogic 11R1 and using OEPE 1.1.1.5.0.
    When Fast swap is enabled and I run WebLogic in debug mode using OEPE I can not view the contents of variables with the Eclipse debugger. I get the message "Expressions must contain either an expression or a block containing a well formed statement"
    However, if I disable Fast swap, i can view the variable within the Eclipse debugger
    Has anyone else had this problem?
    Regards
    Steve H

    Small correction... the soon-to-be-released version of WebLogic Server that Danny was referring to is 11gR1 PatchSet 2 or 10.3.3.

  • FlashBuilder 4.7 will not run in Debug mode with BlackBerry 10 simulator

    We have developed an app that has been released both for Apple and Android working well.
    When trying to do the same for BlackBerry it was rejected because it did not start at all.
    The App that runs fine on the BlackBerry simulator in the "run configurations mode".
    However when I try to run it in Debug mode it will not start at all. Just flashes and simulator goes back to main menu.
    The debugger will after a while time out since it cannot connect to the app running on the simulator.
    BlackBerry 10 Simulator runs under vmWare Fusion.
    Anyone seen this before?

    Hi, Silence04. Welcome to the Discussions.
    You had serious disk directory corruption. That can also cause corruption in OS files: while Disk Utility or DiskWarrior may fix the directory, if the directory corruption resulted in OS files being damaged — as it appears to be in this case — then you can't avoid an Archive and Install. For important tips on this, see my "General advice on performing an Archive and Install" FAQ. Perform the steps therein in the specified order.
    Good luck!
    Dr. Smoke
    Author: Troubleshooting Mac® OS X
    Note: The information provided in the link(s) above is freely available. However, because I own The X Lab™, a commercial Web site to which some of these links point, the Apple Discussions Terms of Use require I include the following disclosure statement with this post:
    I may receive some form of compensation, financial or otherwise, from my recommendation or link.

Maybe you are looking for

  • Open sales order in billing due list

    Dear Gurus when doing VF04, I get a list of billing due documents that have an error status:- 'the document is not relevant for billing'' when I check this sales document, I see that it's ''open''. Only preceeding document  here is a quotation. My qu

  • Creating view to turn result vertical

    Greetings guru, This is a simplified version of what I need, but has all the elements to let me expand it to my real world situation. I need to basically turn this horizontal result set vertical and add the item # and Title (See table below). Per eac

  • How to set a password?

    finally got the wireless up and runnin, now how to put WEP key so people cant jus freely hop on?

  • Is firmware part of apple update for ipod

    been advised to update firmware is this the same as downloading apple software update? 

  • Not responding when I try to go back to an old  project

    Please help I edited a film and then went onto another project and now I wish to go back to the previous film to do more work on it but when I try and load the previous film final cut says not responding why is that happening