Forms 6i hangs

I've installed Forms 6i and Oracle 9i together on a laptop running under Windows XP Professional successfully. However, Forms seems to have this intermittent problem of crashing the system when I try to edit and save a stored procedure. I've also noticed that this occurs more commonly when I have SQL/PLUS 9i running at the same time. Usually once I reboot the machine the problem goes away but at some point something seems to trigger this behavior so I'm not sure where the incompatibility lies. Any patches available out there for Forms 6i to address this problem and if so, where is it?
Thanks

Sounds like your laptop may not have enough resource usually memory

Similar Messages

  • ISR Form is hanging after converting to ZCI

    Hi experts,
    We are on EP7 ECC 6.0 SP9. We have recently converted few ISR forms (SAP delivered forms for PCR) to ZCI. The form is hanging when clicked on 'Review Form' . Earlier before changing the forms to ZCI at least we used to go to the next screen when clicked on 'Review Form' but now the form is just hanging.
    Did anyone come across this issue?
    Can you please let me know what needs to be done?
    Thanks
    Phani

    Hi Anto,
    I have already installed ACF on my pc but still the Adobe form is hanging. I even changed installed new version of Adobe reader 8.0 (earlier it was 7.0.9) but same result.
    We are currently on EP7 ECC 6.0 SP9. I have adobe reader 7.0.9 version.
    When I revert back the SAP Standard SAP form to 'unknown layout' I could at least go to the next step but when I covert to ZCI, I am facing this problem. Right now I really don't understand the reason .. I am stuck with this.
    Do you have any ideas?
    Thanks
    Phani

  • Forms gets hang after 15 mins in 11.5.10.2

    Hi,
    I have cloned an instance from production. Now my forms in production are getting hanged after 15 mins but the development instance is running fine. The EBS version is 11.5.10.2. Linux RedHat 4.0. Jserv 1.1.
    Everytime this is happening at 15-20 mins interval. I have seen the log files in iAS_HOME/Apache but they are clean.
    Can anyone plz help on this.
    Thanks.
    Neeraj.

    Rapid Clone does not modify the source system. adpreclone.pl prepares the source system to be cloned by collecting information about the database and creating generic templates of files containing source specific hardcoded values.
    I suggest you use Forms Runtime Diagnostics (FRD) to debug the issue, for more details on how to use it please check Note: 150168.1 - Obtaining Forms Runtime Diagnostics (FRD) In Oracle Applications 11i
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=150168.1

  • Using get_AJAX_SELECT_XML causes form to "hang" in IE but notin  FIREFOX

    I have 2 fields on a form that are coordinated to make use of the javascript call of get_AJAX_SELECT_XML,
    P118_CLONE_DEPT
    P118_CLONE_POS
    The HTML form element attributes for P118_CLONE_DEPT are:
    onchange="get_AJAX_SELECT_XML(this,'P118_CLONE_POS')"
    The LOV is supposed to be automatically populated for P118_CLONE_POS once you select a department for P118_CLONE_DEPT.
    The code hangs in IE at the same place, but never hangs in Firefox. If you let the browser sit, control seems to eventually come back, but it may take 5 to 6 minutes - most users would bail out well before 5 minutes have elapsed. I have no clue what is causing this.
    This is triggered by picking a deparment that has 9 positions, then a deparment that has 0 positions and then repeating it all over again. ie.
    dept 854 with 9 positions
    dept 857 with 0 positions
    dept 854 with 9 positions
    dept 857 with 0 positions
    Here is the function with alerts:
    function get_AJAX_SELECT_XML(pThis,pSelect){
         var l_Return = null;
         var l_Select = html_GetElement(pSelect);
    alert('1in get_AJAX_SELECT_XML value of item is ('+ pThis.value + ')' );
         var get = new
    htmldb_Get(null,html_GetElement('pFlowId').value,'APPLICATION_PROCESS=clone_Select_XML',0);
    alert('2in get_AJAX_SELECT_XML value of item is ('+ pThis.value + ')' );
         get.add('TEMP_POS_TYPE_CD_DEPT',pThis.value);
    alert('3in get_AJAX_SELECT_XML value of item is ('+ pThis.value + ')' );
    //alert('2 in get_AJAX_SELECT_XML value of item is ('+ pThis.value + ')' );
         gReturn = get.get('XML');
    alert('4in get_AJAX_SELECT_XML value of item is ('+ pThis.value + ')' );
         if(gReturn && l_Select){
              var l_Count = gReturn.getElementsByTagName("option").length;
    alert('5in get_AJAX_SELECT_XML l_Count is' + l_Count );
              l_Select.length = 0;
    alert('6in get_AJAX_SELECT_XML l_Count is' + l_Count );
              for(var i=0;i<l_Count;i++){
    alert('7in get_AJAX_SELECT_XML i is' + i );
                   var l_Opt_Xml = gReturn.getElementsByTagName("option");
    alert('8in get_AJAX_SELECT_XML about to call appendToSelect');
                   appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
    alert('8in get_AJAX_SELECT_XML i is' + i );
    alert('9in get_AJAX_SELECT_XML i is' + i );
         get = null;
    alert('10in get_AJAX_SELECT_XML i is' + i );
    It hangs just after alert # 3 is displayed on the screen. Does this mean the call "     gReturn = get.get('XML');" is taking a while to process? Is it my browser? Once control is returned, the position LOV is filled in correctly.

    To put an example here would not allow you to debug the problem because I can't replicate the table that the query goes against. The table I use has 160 different departments that have 1 or more positions.
    Instead I have altered your code and page 37 and got the "hanging" to occur. I have altered the process "get_AJAX_SELECT_XML" to be,
    declare
    l_cnt number;
    l_o_name varchar2(2000);
    begin
    owa_util.mime_header('text/xml', FALSE );
    htp.p('Cache-Control: no-cache');
    htp.p('Pragma: no-cache');
    owa_util.http_header_close;
    l_cnt := 0;
    htp.prn('<select>');
    for rec in (
    select distinct position
    from position
    where position_type_cd = substr(:TEMP_POS_TYPE_CD_DEPT,7,1) and
    department_cd = substr(:TEMP_POS_TYPE_CD_DEPT,1,6) and
    position_status_cd = 'A'
    loop
    l_cnt := l_cnt + 1;
    htp.prn('<option value="' || rec.position || '">' || rec.position || '</option>');
    end loop;
    if l_cnt = 0 then
    htp.prn('<option value="' || '-'|| '">' || '-' || '</option>');
    end if;
    htp.prn('</select>');
    end;
    From above, I have added some code to detect when no positions are found, but including it or not still yields the same "hang" results. The field "TEMP_POS_TYPE_CD_DEPT" is a string with department and department-type concatenated ie. 0021XXP
    On page 37, I have left it alone. The item P37_ITEM_SELECT is fired on the "Element region" through the element attributes of
    onchange="get_AJAX_SELECT_XML(this,'P37_SELECT_DROP_XML').
    Its "List of values definition" is:
    select department_cd || ' - ' || department "disp", department_cd || 'P' "rval"
    from department order by 2
    To get the "hanging" on page 37 is a little tricker. I go to a department with positions in the LOV for P37_ITEM_SELECT that is near the end of the list and select it. I then go off to other screens that I have open (ie, go to note-pad and type some text, go to MS outlook and check mail). When I come back to the screen with page 37 and just hit the "up-arrow" key to go to a department with positions, that is when the hanging occurs. ie
    1. go to dept 0854 (has 9 positions)
    2. go to dept 0857 (has 0 positions) via a "down-arrow" key
    3. switch tasks for about a minute ie. notepad, outlook. This is the tricky part,
    as step 4 may or may not work, but after 3 tests in a row I have got it to work.
    4. go to dept 0854 via the "up-arrow" and get "hanging" behaviour
    In the LOV for P37_ITEM_SELECT, the last 4 depts shown are:
    0854, 9 positions
    0857, 0 positions
    0862, 2 positions
    0873, 0 positions
    Does this help?

  • Forms Applet hangs after configuration of webutil

    Hi,
    I have Oracle Application Server 10g Release 2 with Oracle Database 10g on Windows 2000 server. Browser is IE6
    Our application was working fine. But for one of the functionality, we used webutil and after configuration of webutil on AS, the application is not launching.
    Applet hangs showing applet initiated and in java console it shows
    Downloading http://localhost/forms/java/frmwebutil.jar to JAR cache
    RegisterWebUtil - Loading WebUtil Version 1.0.6.
    I have signed both frmwebutil.jar and jacob.jar.
    I have followed all steps mentioned in the document for configuration.
    I think still there is something missing.
    Please give some pointers on resolving this issue.
    Thanks
    AT

    Do the following:
    1. On client machine, exit all open browsers.
    2. If you are running Developer Suite, stop OC4J.
    3. Manually delete JAR cache. Delete all files in:
    C:\Documents and Settings\<USER NAME>\Oracle Jar Cache
    4. Delete the following file (your JInitiator version may be different):
    C:\Documents and Settings\<USER NAME>\jinitiator13129.trace
    5. Open the Jinitiator Control Panel which can be found on the Windows Control Panel and add the following to the "Java Runtime Parameters" on the Basic tab:
    -Djavaplugin.trace=true -Djavaplugin.trace.option=basic
    Click on Apply and exit the Control Panel
    6. On the server, add the following to the formsweb.cfg:
    WebUtilLogging=on
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    6. If the server is a Unix platform, recompile the form and ensure that you use the COMPILE_ALL=YES option.
    7. Retest one time. Do not try more than one time as this will create too many entries in the trace file.
    8. After the failure has reproduced, exit the form and the browser. Open the new jinitiator13129.trace file and carefully review. It is likey you will find the cause of the problem in this file. At minimum, a hint should be offered.

  • 9i form gen : hangs when using object libraries

    9i form gen seems to hang (no progress, pegs the CPU) when specifying any object library. I thought that perhaps the OFGSTND1.OLB hadn't been recompiled for forms 9, but even after recompilation it happens. I have double checked paths, etc. (the generator refers to the right .olb just before hanging...)
    Anyone else experienced this or have a workaround?

    Hi Trevor,
    I tried generating a Form base don EMP Table with Object library Ofgstnd1.olb.It worked fine.Can you try and generate the form without any library attachement and see if it is hanging still or not.Because there seems to be no problem with the object library.Do tell me if you can generate the form easily without attachement.
    Thanks
    Vishal

  • Prevent form/timer hanging while holding the minimize button

    I got troubles when the customers holding the minimize button (without release) on my form, it make all forms and all timers/controls entirely hanging. And thus make some exception bugs for my application.
     Steps to Reproduce Behavior:
    In Form1,  create a Timer1 & Label1 and paste this code :
    Public Class Form1
    Public a As Long
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    Timer1.Enabled = True
    Timer1.Interval = 1
    End Sub
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    a = a + 1
    Label1.Text = a
    End Sub
    End Class
    Press F5 to run the application. You will see the number display on Label1 increase rapidly. Now try to hold the Minimize button and the timer will hang up, label1 stop increasing. Release the minimize button will make the timer resume increasing.
    I want my timer and all controls in form still working while holding the minimize button. Is there any good resolution for my issue ?

    various possible resolution. remove controlbox. remove text. draw text if wanted. draw controls. use system.timers.timer. system menu removed so no menu for move size minimize maximize close available.
    https://msdn.microsoft.com/en-us/library/system.timers.timer(v=vs.110).aspx?cs-save-lang=1&cs-lang=vb#code-snippet-1
    form transparent background in image. movement or buttons not affect timer may affect display speed.
    Option Strict On
    Imports System.Timers
    Public Class Form1
    ' Code from this link - http://www.dreamincode.net/forums/topic/275178-drawing-icon-on-form-border/
    WithEvents Timer1 As New System.Timers.Timer
    Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
    Me.FormBorderStyle = Windows.Forms.FormBorderStyle.Sizable
    Me.ControlBox = False
    Me.Text = ""
    Me.Location = New Point(CInt((Screen.PrimaryScreen.WorkingArea.Width / 2) - (Me.Width / 2)), CInt((Screen.PrimaryScreen.WorkingArea.Height / 2) - (Me.Height / 2)))
    Timer1.Interval = 10
    AddHandler Timer1.Elapsed, AddressOf Timer1_Elapsed
    End Sub
    Private Sub Form1_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
    Timer1.Enabled = False
    End Sub
    'A form with custom border and title bar.
    'Some functions, such as resize the window via mouse, are not implemented yet.
    'The color and the width of the border.
    Private borderColor As Color = Color.GreenYellow
    Private borderWidth As Integer = 3
    'The color and region of the header.
    Private headerColor As Color = Color.GreenYellow
    Private headerRect As Rectangle
    'The region of the client.
    Private clientRect As Rectangle
    'The region of the title text.
    Private titleRect As Rectangle
    'The region of the minimum button.
    Private miniBoxRect As Rectangle
    'The region of the maximum button.
    Private maxBoxRect As Rectangle
    'The region of the close button.
    Private closeBoxRect As Rectangle
    'The states of the three header buttons.
    Private miniState As ButtonState
    Private maxState As ButtonState
    Private closeState As ButtonState
    'Store the mouse down point to handle moving the form.
    Private x As Integer = 0
    Private y As Integer = 0
    'The height of the header.
    Const HEADER_HEIGHT As Integer = 25
    'The size of the header buttons.
    ReadOnly BUTTON_BOX_SIZE As Size = New Size(15, 15)
    Dim Test As Boolean = False
    Private Sub CustomBorderColorForm_Paint(ByVal sender As System.Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
    'Draw the header.
    Using b As Brush = New SolidBrush(Color.FromArgb(10, Color.White))
    e.Graphics.FillRectangle(b, headerRect)
    End Using
    'Draw the title text
    If Test = False Then
    Using b As Brush = New SolidBrush(Me.ForeColor)
    e.Graphics.DrawString("Anything you want Baby", Me.Font, b, titleRect)
    End Using
    ElseIf Test = True Then
    Using b As Brush = New SolidBrush(Me.ForeColor)
    e.Graphics.DrawString("Hello Dolly", Me.Font, b, titleRect)
    End Using
    End If
    'Draw the header buttons.
    If Me.MinimizeBox Then
    ControlPaint.DrawCaptionButton(e.Graphics, miniBoxRect, CaptionButton.Minimize, miniState)
    End If
    If Me.MinimizeBox Then
    ControlPaint.DrawCaptionButton(e.Graphics, maxBoxRect, CaptionButton.Maximize, maxState)
    End If
    If Me.MinimizeBox Then
    ControlPaint.DrawCaptionButton(e.Graphics, closeBoxRect, CaptionButton.Close, closeState)
    End If
    'Draw the border.
    ControlPaint.DrawBorder(e.Graphics, clientRect, borderColor, _
    borderWidth, ButtonBorderStyle.Solid, borderColor, borderWidth, ButtonBorderStyle.Solid, borderColor, borderWidth, ButtonBorderStyle.Solid, borderColor, borderWidth, ButtonBorderStyle.Solid)
    End Sub
    'Handle resize to adjust the region ot border, header and so on.
    Private Sub CustomBorderColorForm_Resize(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Resize
    headerRect = New Rectangle(Me.ClientRectangle.Location, New Size(Me.ClientRectangle.Width, HEADER_HEIGHT))
    clientRect = New Rectangle(New Point(Me.ClientRectangle.Location.X, Me.ClientRectangle.Y + HEADER_HEIGHT), _
    CType(New Point(Me.ClientRectangle.Width, Me.ClientRectangle.Height - HEADER_HEIGHT), Drawing.Size))
    Dim yOffset = (headerRect.Height + borderWidth - BUTTON_BOX_SIZE.Height) / 2
    titleRect = New Rectangle(CInt(yOffset), CInt(yOffset), _
    CInt(Me.ClientRectangle.Width - 3 * (BUTTON_BOX_SIZE.Width + 1) - yOffset), _
    BUTTON_BOX_SIZE.Height)
    miniBoxRect = New Rectangle(Me.ClientRectangle.Width - 3 * (BUTTON_BOX_SIZE.Width + 1), _
    CInt(yOffset), BUTTON_BOX_SIZE.Width, BUTTON_BOX_SIZE.Height)
    maxBoxRect = New Rectangle(Me.ClientRectangle.Width - 2 * (BUTTON_BOX_SIZE.Width + 1), _
    CInt(yOffset), BUTTON_BOX_SIZE.Width, BUTTON_BOX_SIZE.Height)
    closeBoxRect = New Rectangle(Me.ClientRectangle.Width - 1 * (BUTTON_BOX_SIZE.Width + 1), _
    CInt(yOffset), BUTTON_BOX_SIZE.Width, BUTTON_BOX_SIZE.Height)
    Me.Invalidate()
    End Sub
    Private Sub CustomBorderColorForm_MouseDown(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseDown
    'Start to move the form.
    If (titleRect.Contains(e.Location)) Then
    x = e.X
    y = e.Y
    End If
    'Check and press the header buttons.
    Dim mousePos As Point = Me.PointToClient(Control.MousePosition)
    If (miniBoxRect.Contains(mousePos)) Then
    miniState = ButtonState.Pushed
    ElseIf (maxBoxRect.Contains(mousePos)) Then
    maxState = ButtonState.Pushed
    ElseIf (closeBoxRect.Contains(mousePos)) Then
    closeState = ButtonState.Pushed
    End If
    End Sub
    Private Sub CustomBorderColorForm_MouseMove(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseMove
    'Move and refresh.
    If (x <> 0 And y <> 0) Then
    Me.Location = New Point(Me.Left + e.X - x, Me.Top + e.Y - y)
    Me.Refresh()
    End If
    End Sub
    Private Sub CustomBorderColorForm_MouseUp(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseUp
    'Reset the mouse point.
    x = 0
    y = 0
    'Check the button states and modify the window state.
    If miniState = ButtonState.Pushed Then
    Me.WindowState = FormWindowState.Minimized
    miniState = ButtonState.Normal
    ElseIf maxState = ButtonState.Pushed Then
    If Me.WindowState = FormWindowState.Normal Then
    Me.WindowState = FormWindowState.Maximized
    maxState = ButtonState.Checked
    Else
    Me.WindowState = FormWindowState.Normal
    maxState = ButtonState.Normal
    End If
    ElseIf closeState = ButtonState.Pushed Then
    Me.Close()
    End If
    End Sub
    'Handle this event to maxmize/normalize the form via double clicking the title bar.
    Private Sub CustomBorderColorForm_MouseDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MyBase.MouseDoubleClick
    If (titleRect.Contains(e.Location)) Then
    If Me.WindowState = FormWindowState.Normal Then
    Me.WindowState = FormWindowState.Maximized
    maxState = ButtonState.Checked
    Else
    Me.WindowState = FormWindowState.Normal
    maxState = ButtonState.Normal
    End If
    End If
    End Sub
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    If Test = False Then
    Test = True
    Me.Invalidate()
    Else
    Test = False
    Me.Invalidate()
    End If
    End Sub
    Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
    If Timer1.Enabled = False Then
    Timer1.Enabled = True
    Else
    Timer1.Enabled = False
    End If
    End Sub
    Private Sub Timer1_Elapsed(sender As Object, e As ElapsedEventArgs)
    Invoke(New Timer1sDelegate(AddressOf Timer1sSub))
    End Sub
    Private Delegate Sub Timer1sDelegate()
    Private Sub Timer1sSub()
    Label1.Text = Now.Ticks.ToString
    End Sub
    End Class
    La vida loca

  • Forms 10g   hang during working

    hi...
    i am currently working on forms 10g [32 Bit] Version 9.0.4.0.19 (Production).
    but always form is working fine but some time it hang automatic .
    how can i see the cause of hangup .
    my os is win xp/sp2 .
    I need it urgently ........
    Thanks in advance
    Ravi Ranjan

    to begin check Java console output

  • Forms Runtime Hangs

    We have recently upgrades some of our client workstations to Forms&Reports 6i and are having a problem on a few of the client workstations since the upgrade. When the user runs our client application the Forms Runtime window pops up and just hangs, then the workstation locks up and we have to force a reboot, can not even kill using task manager. Even after the reboot the same problem occurs and I have to reinstall patch 12 to fix but this fix is only temporary as the problem again comes back after a while. To give a brief back ground the clients are running NT4 Wrkstn SP6a, Oracle Forms & Reports Runtime 6i patch 12, connecting to a 9i DB. Any ideas or assistance would be greatly appreciated!

    I'm sorry, should have been more specific. We are running client\server not web. Before the upgrade we were running Forms&Reports 4.5 and everything was stable. The funny thing is that we have upgraded 50 client workstations and only (2) are experiencing this problem. I have tried completely removing the Oracle software and reinstalling on both workstations but this has not helped.

  • Form builder hangs connecting to database

    I am having a problem with forms builder. When I try to connect to a database, the builder hangs. Report builder from same home works fine, as well as sqlplus and tnsping.
    The developer suite is running on windows.
    Has anyone run into this problem?
    thanks in advance,
    Mark

    Hi Mark,
    What is the version of forms and database ?
    Also you can try re-installing the forms.
    Regards,
    Amol

  • Form arbitrarily hangs

    I'm using forms 9i on 9ias v2 in Win 2000. When I quickly click through records the form hangs and I have to restart the browser. If I take my time it doesn't hang. Can someone advise? Thanks

    Do you get any FRM errors?
    I would suggest working with Support on this. It could be related to BUG:2888189 which is viewable on metalink.
    Regards
    Grant Ronald
    Forms Product Management

  • Oracle Forms Service hangs while run time

    I have Oracle 10g, I have a from (10g) I compile and generate when I try to run from Forms Builder, I hang in a screen while is said "Oracle Application Server - Forms Service" any iideas what might be wrong of what should I check

    This sounds like a configuration issue to me. Have you modified the "default.env" file (found in %ORACLE_HOME%\forms\server) to include the path to your form in the FORMS_PATH variable? Have you installed the Oracle Jinitiator or modified the formsweb.cfg file to use the Sun JRE? If you have installed the Jinitiator or are using the Sun JRE, what version did you install? The formsweb.cfg file defaults to Jinitiator version: 1.3.1.26 and Sun JRE version: 1.4.2_06. If you have a newer version installed you will need to update the version in the formsweb.cfg to match the installed version.
    Hope this helps,
    Craig...

  • Adobe form with Webdynpro - Form is hanging on click of Submit button

    Hello Experts,
    My View has an adobe form that has many dropdowns and input fields. There are some fields which get automatically populated based on entries made by the users. There are several internal tables getting populated in the WDDOINIT method. I have a 'Submit Button' which when clicked should close the browser, retrieve data in the Context and do processing in SAP.
    When I click on the submit button, I get a 'Wait' symbol (the circle symbol) for a very long time and then the Connection time out error comes up.
    I commented the population of some internal tables in the 'Init' method. when I tested by clicking this button, it worked. The browser got closed and processing in SAP was done too.
    I am working with a fairly large data. 2-3 of the internal tables (that I commented) have 2000-3000 records. Is there is restriction on how much data the WDN can handle? I am stuck now because even though all codes are correct, the wdn is not able to handle the data.
    Any suggestions ?
    appreciate all your help! Regards, Liz

    This issue is resolved. This was due to loading a large data set to the form.

  • Customized form is hanging in 11.5.10.2

    Hi Friends,
    In our 11.5.10.2 instance. one customized form is haning after entering the values and after clicking the confirm button. It is taking nearly 1 hr 30 mins to take the values. It usually take 5 to 10 min.....
    I have enabled the trace for the form and found out that one sql is taking elapsed time almost 1 hr 30 min to complete. It is happening for the pertuculer parameter. But for the same parameter if we want to reproduce the same issue in the very recent clone it is completing fast.....
    Could you please advise the possible resolution.
    Thanks,
    Prashanth.

    Hi Prashanth
    It sounds like your tables and indexes need to be analyzed to gather statistics for the CBO (cost based optimiser) in the database. Try run "Gather Schema Statistics" for the relevant schema in the System Administrator responsibility to analyze your tables.
    See Metalink note: 419728.1 (How To Gather Statistics On Oracle Applications 11.5.10(and above) - Concurrent Process,Temp Tables, Manually) for more info on running the Gather statistics programs.
    Cheers
    Dale

  • Forms 10g hanging.

    Has anyone else encountered this problem.
    I leave my 10g application running (doing nothing) and start a new browser session looking at OTN. After a while
    the forms application goes permanently busy and CPU useage goes up to 100%. The only way to get any response is to close the forms application.
    (Browser is IE 5 on win 2000 pro, ias 9.0.4 is on solaris)

    Obvious question but I assume this replicates on a simple form?
    Also, does it replicate every time and if so is it always with the same website. How about if go to some very simple web page (i.e. something which does not have any Flash, Java or applets running).
    Regards
    Grant Ronald
    Forms Product Management

  • Forms 10g hangs while running a procedure which has got lot of loops

    Hi,
    When executing a procedure in Forms 10g which fetches millions of records, application getting stuck.
    What parameter is required to be changed in forms configuration?
    Can any1 help me out???
    Thanks in advance,
    Natz.

    Particularly this passage:
    MaxBlockTime
    MaxBlockTime is the time in mili seconds to wait when reading data from the
    Runform process.
    e.g. a long query, lots of complex processing
    (default = 1000 milli sec)
    /j2EE/OC4J_BI_Forms/application/forms90app/forms90web/WEB-INF/web.xml
    or
    /j2EE/OC4J_BI_Forms/application/formsapp/formsweb/WEB-INF/web.xml
    Example
    =======
    <servlet>
    <servlet-name>l90servlet</servlet-name>
    <servlet-class>oracle.forms.servlet.ListenerServlet</servlet-class>
    <init-param>
    <param-name>maxBlockTime</param-name>
    <param-value>1800000</param-value>
    </init-param>
    </servlet>
    or
    <servlet>
    <servlet-name>lservlet</servlet-name>
    <servlet-class>oracle.forms.servlet.ListenerServlet</servlet-class>
    <init-param>
    <param-name>maxBlockTime</param-name>
    <param-value>1800000</param-value>
    </init-param>
    </servlet>
    What happens?
    =============
    For long requests (like querying a big table), the Listener
    Servlet waits for a default time of 1 second for the Forms
    runtime process to complete the request
    If the request is not completed then the Listener Servlet sends a busy
    response to the client asking the client to retry.
    The client sends a retry zero content length request to check if the query is
    complete.
    This default time of 1 second can be configured using Listener Servlet
    parameter called maxBlockTime
    Reference
    =========
    Note 218846.1 How to increase Heap size in OC4J in V2
    Francois

Maybe you are looking for