Form hangs in HRMS apps

Hi,
I have installed Vision Demo of Oracle Apps 11.5.5 on Windows 2000 server.
when I try to open the form People/Enter and Maintain the system shows busy and I am not able to perform any operations.
pls help
Thanks

Check your memory. You may need to re-start your server just to refresh memory resources specially with windows os.

Similar Messages

  • A particular form hangs while saving in Oracle Apps 11.5.10.2

    Hi Friends,
    I am using Oracle Apps 11.5.10.2 on Linux.
    In a custom Responsibilty ,In a particular form after entering the valuses when i give confirm button the application forms hangs for a long time without saving the values.
    Please let me know the Fix.
    Regards,
    Arun

    Hi,
    Was this working before? If yes, any changes have been done recently?
    Can you find any errors in the Jinitiator Console Window, application log files, and the database log files?
    Please verify that you have no invalid objects in the database. Also, try to generate the form via adadmin and see if this helps.
    In none of the above helps, please obtain FRD file, and see if more details about the error are reported in the log then -- See (Note: 150168.1 - Obtaining Forms Runtime Diagnostics (FRD) In Oracle Applications 11i) for details.
    Regards,
    Hussein

  • Forms hangs when using result of an OUT parameter to do an Insert

    Hello,
    I think I have slightly odd problem here... I'm currently migrating a Forms 6i client-server application to Forms 10g904. I found that one of my Forms was hanging i.e. screen goes blank, 'activity' bar on the bottom right just keeps whirring away indefinitely.
    After much investigation, the hanging-form problem occurs in the following scenario:
    - In a routine in a Forms pll library, a variable is declared e.g. w_capture_output
    - In the first round of a loop, this variable is passed into a database stored proc, which has an OUT parameter to return a result e.g. SOME_PROC(w_some_input, w_capture_output);
    - w_capture_output comes back with a value e.g. 'P'
    - This is then used in an Insert e.g. INSERT INTO some_table (a, b) VALUES (1, w_capture_output)
    - The next round of the loop; the variable is passed in again into the proc. It still holds the value from the last round e.g. 'P'
    - In this round, the logic of the proc is such that the OUT argument is set to null i.e. when the proc has finished, w_capture_output is now null. This can be confirmed with IF w_capture_output IS NULL THEN display_some_message. The code is still all running fine.
    - But now when I run INSERT INTO some_table (a, b) VALUES (2, w_capture_output) - the form hangs.
    I can, however, work around this and prevent the form from hanging simply by ensuring at the start of each round of the loop that I explicitly set w_capture_output back to null before passing it into the proc that sets it. Or alternatively, after it comes back from the proc, the following also prevents the hanging problem:
    w_capture_output := NVL(w_capture_output,NULL);
    To summarise - if I pass a variable into a proc taking an OUT parameter, AND that variable is not null going into the proc, AND the proc sets it to null AND I then try to use that variable in an Insert statement - the form hangs. Something horrible is happening to the variable inside the procedure, I think.
    Now, I can kind of see why passing a non-null variable into an OUT argument might cause problems (although only if you then try to set it to null - not if you set it to another, non-null value). However, exactly the same code works fine under Forms 6i, using the same database instance and proc. And if Oracle have changed the rules, shouldn't it throw an error, rather than just hanging? I'd prefer not to have to use the workaround, as this is a very large app and I don't know yet how many places would need it.
    Has anyone else come across this issue..? (Database is 9.0.2. btw, Forms are 10g904)
    Cheers,
    James

    Try
    v_log_name := 'Fnd_File.LOG_OUT';Hey, what r u doing with above code?
    You are assigning string value to a variable?
    The compilation won't give any error.
    And OP thinks it's solution!!!!!!!!!!!
    LOL

  • Webutil - Forms Hangs

    Hi All,
    I am using Webutil for my forms. I have just created a small form with only one block. I am using forms 9i.
    I have signed the Jar fiels as per the doucment and when i run the form in the Java Console I have got the following message
    Oracle JInitiator: Version 1.3.1.8
    Using JRE version 1.3.1.9 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\cwi1091.WIPRO Proxy Configuration: Manual Configuration
    Proxy: blrproxy.wipro.co.in:80
    Proxy Overrides: *.wipro.co.in,<local> JAR cache enabled
    Location: C:\Documents and Settings\cwi1091.WIPRO\Oracle Jar Cache
    Maximum size: 50 MB
    Compression level: 0 ----------------------------------------------------
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    q: hide console
    s: dump system properties
    t: dump thread list
    x: clear classloader cache
    0-5: set trace level to <n>
    Loading http://wi-3a09-tarun.wipro.co.in:8888/forms90/java/f90all_jinit.jar from JAR cache
    Loading http://wi-3a09-tarun.wipro.co.in:8888/forms90/java/jacob.jar from JAR cache
    Loading http://wi-3a09-tarun.wipro.co.in:8888/forms90/java/webutil.jar from JAR cache connectMode=HTTP, native.
    Forms Applet version is : 90270
    After this the forms hangs. Pls tell me what should i do.
    Regards
    Reddy

    Use the correct template for the app - see the WebUtil doc.
    baseHTMLjinitiator should be set to webutiljini.htm

  • Forms 9i/ DB 10g - Form Hangs when function is called

    Using 9i Web Forms on 10g Database Linux O/S
    I have the following function call in a form within a loop:
    :nbt02_lentrn.nbt_txn_descr := fn_get_trans_descr(ls_app_area_code,ls_txn_type);
    The function being called contains this code:
    FUNCTION fn_get_trans_descr(ps_app_area_code IN VARCHAR2,
    ps_txn_code IN VARCHAR2) RETURN VARCHAR2 IS
    CURSOR cur_txn_descr IS
    SELECT descr
    FROM financial_trans_types
    WHERE code = ps_txn_code
    AND aparea_code = ps_app_area_code;
    ls_txn_descr financial_trans_types.descr%TYPE;
    BEGIN
    OPEN cur_txn_descr;
    FETCH cur_txn_descr INTO ls_txn_descr;
    CLOSE cur_txn_descr;
    Return(ls_txn_descr);
    END;
    When the call is executed, the form hangs after the OPEN command. I have checked the parameters for their values and successfully executed the cursor in SQL.
    When I hardcode the function parameter values, the code executes successfully. Also, and perhaps most unusually, if I do either of the following before the function call, the code runs successfully:
    ls_txn_type     :=     ls_txn_type;
    :nbt02_lentrn.nbt_txn_descr := fn_get_trans_descr(ls_app_area_code,ls_txn_type);
         ls_txn_type     :=     NVL(ls_txn_type,NULL);
    :nbt02_lentrn.nbt_txn_descr := fn_get_trans_descr(ls_app_area_code,ls_txn_type);
    I have also extracted the call and placed it into a different form where it works fine!
    The variable ln_txn_type is populated via another call within the same loop. It's value alternates between null and a value for the record set.
    The same code works fine Client/Server and although I have a solution, I'm not sure what the problem is! Does anyone have any clues?

    Hello - your problem actually looks similar in symptoms to one I hit just a couple of days ago (see my post 'Forms hangs when using result of an OUT parameter to do an Insert ' on July 19th.)
    The problem I was having was if I had a variable which already had a value, then passed into an IN OUT parameter of a db stored proc, the proc set the value to null, and then I tried to use the variable in a table insert. The form would just hang completely. Like you, one workaround for the problem was to have a line like:
    my_var := NVL(my_var,NULL);
    to somehow 'fix' the variable before trying to use it further. Even though the variable seems null, and returns true for IF ... IS NULL, something had gone wrong with it that rendered it toxic to my form. This workaround should have no net effect, but it does somehow solve the problem. Like your problem, mine doesn't occur on client server, only on the newer version.
    I hit this problem using Forms 10g904, against a 9i database. Having talked it over with Oracle support, I've tried doing the same thing using 10g Release 2, and the problem disappears, so Oracle have obviously fixed it somewhere between the two releases - I'm currently investigating intermediate Patch Sets.
    Don't know if this is helpful, but all I can suggest is that you ensure you've applied the latest patchsets to your Forms (you can try it on the Builder first before patching your apps server installation.) If that doesn't do it, I'm guessing it's a case of use the workarounds, or go up to a higher version altogether of Forms.
    Sorry not to have any more optimistic advice!
    James

  • Applicaiton form hangs when trying to make C# form visible from menu event

    I have a MDI windows app, running as an addon on Verion 2007A
    The applicaion is written in C# ( VS 2005)
    I am a newbee to C# ( VS too ) as well.
    All I want is to display the MDI container form when a menu is clicked. But the windows form hangs forever, and does not show.
    if I try to show the form within Main method then no issues! The problem happens only off the SBO menu event .
    I cannot have the form loaded all the time. so I need the services of the SBO menu click, so a user can open it whenever he wants.
    Note: I can open any other form off the menu click, but that , provided they are not MDI containers and they are opened with ShowDialog(); If I use Show(); then again hangs.
    I tried opening the MDI form in Main method, ( wich of course works) and hide it when not needed. I could hide the form, but when I issued a command myForm.visible = true;  through the SBO menu event, again hangs!
    my applicaion Main function is as follows. The class AA_SBO_MAIN  holds the SBO application events.
    static void Main()
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);
                Classes.AA_SBO_MAIN oSBOMain = null;
                oSBOMain = new Classes.AA_SBO_MAIN(); 
                 Application.Run();        
    the menu event simply does
                  frmMain fm = new frmMain();
                  fm.Visible = true;

    Hi
    I try doing these few steps and it seems to work!  The code is in Visual Basic though!
    Declare the form variable
    Private mMDI As New frmMDI
    In your menu click event enter a code like this
    If mMDI Is Nothing Then mMDI = New frmMDI
    mMDI.Visible = True
    On your startup function do something like this
    Public Sub New()
           mMDI.Show() : mMDI.Visible = False
    End Sub
    And more important ... in the form class comment all the code inside the Dispose method
    and finally do the following
    Private Sub frmMDI_Closed(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Closed
            Me.Hide()
    End Sub
    it seems to work for me . Hope it helps you too!

  • My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    My "Hanging with Friends" app keeps crashing whenever I try to open it. I have deleted and re-downloaded the app, restarted my iPhone, and even restored my iPhone all together, and nothing is working. How can I get this app to work again?

    Can you start Firefox in [[Safe mode]] ?
    You can also do a clean reinstall and download a fresh Firefox copy from http://www.mozilla.com/firefox/all.html and save the file to the desktop.
    Uninstall your current Firefox version and remove the Firefox program folder before installing that copy of the Firefox installer.
    It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    You can initially skip the step to create a new profile, that may not necessary for this issue.
    See http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • HCM form hangs

    Hi everyone. I am encountering a problem with Adobe forms within the HCM Processes and Forms framework. I am not able to press the check and send button because of the never ending hour glass symbol. The form just seems to hang. This is not related to the hanging problem before when you press check and and send button then the form hangs. This has been fixed. In this case, I cannot even press check and send.
    I created the form using ALD 8.0 and tried to open in the portal using Adobe reader 9.0 and 8.1.1 but the problem still persists. What is strange is this is not happening to the standard forms like Birth of Child etc... There seems to be no problem with my custom form as I also tried it using a blank form and it still happens. The Form Wide ISR scripts and ZCI scripts have already been embedded into the form.
    Could it be because of ALD 8.0?
    Does anyone have any ideas of what's wrong?
    [IMG]http://i576.photobucket.com/albums/ss206/alexanderb522/HCMhanging.jpg[/IMG]

    Hi Chris,
    I have read your blogs before. Great work! However, this is not the problem I am encountering. I was able to fix the bug you described that occurs when you press check and send. This was fixed by upgrading from ECC 6.0 patch 12 to 19.
    I am experiencing a different problem where I cannot even press the check and send button. It does not hang on the form i.e I can enter data but if I move my mouse outside the form into the surrounding web dynpro component there is the never ending hour glass that does not let me press the buttons on the web dynpro component.
    I think it may be related to the version of the script installed...
    Any ideas?
    Thanks!

  • How to add a photo to a pdf form via the iOS app

    How do I add a photo to a pdf form via the iOS app?  I need to fill out a form for work using field observations and photos.  I can easily fill out the text portions of the form but I'm unable to add the photos from my phone.  Is this possible?

    Does the form have a provision to insert images (e.g. a Browse button)?
    [topic moved to iOS subforum]

  • Having problems with and advanced form to Mail PHP app in Dreamweaver

    Hello,
    I would like to start off by saying i am horrible when it comes to php of any kind so i use an attachment for my forms call Advanced from to Mail PHP in dreameaver for connecting my site to my email contact for user data.
    I have had this problem a few times but don't remember what someone told me about a year ago, the form that i have setup is from a free template so i did not set it up. Any how i am gettiing an error where dreamweaver is stating i need to "Please Enter Valid Form" pretty sure that means the from im trying to manipulate is unreadable for this application.
    Are there any PHP or form experts out there that may be able to help me in making this form readable to the app i am using in order to tie it to my email for submisions?
    I will post a picture of the form i am trying to use the app on, the app and the error i am getting.
    Could it be that i have to replace <label for= with <Input Name   possibly?!
    Thank you so much!
    The Form
      <form action="../index.php">
               <h4>fill in your contact details</h4>
               <div class="form1">
                 <label for="fname"> <span>first name</span>
                   <input type="text" name="fname" id="fname">
                    </label>
                 <label for="lname"> <span>last name</span>
                   <input type="text" name="lname" id="lname">
                    </label>
                 <label for="email3"> <span>email address</span>
                   <input type="text" name="email3" id="email3">
                    </label>
                 <label for="phone"> <span>phone number</span>
                   <input type="text" name="phone" id="phone">
                    </label>
                 <label for="address1"> <span>address 1</span>
                   <input type="text" name="address1" id="address1">
                    </label>
                 <div>
                   <label for="city"> <span>city</span>
                     <select name="city" id="city">
                       <option value=""></option>
                       <option value=""></option>
                       <option value=""></option>
                        </select>
                      </label>
                   <label for="state"> <span>state</span>
                     <select name="state" id="state">
                       <option value=""></option>
                       <option value=""></option>
                       <option value=""></option>
                        </select>
                      </label>
                    </div>
                 <label for="address2"> <span>address 2</span>
                   <input type="text" name="address2" id="address2">
                    </label>
                 <label for="zip"> <span>zipcode</span>
                   <input type="text" name="zip" id="zip">
                    </label>
                 <label for="schedule"> <span>When Do You Prefer Us To Call?  (We only call during weekdays and Saturdays)</span>
                   <select name="schedule" id="schedule">
                     <option value=""></option>
                     <option value="">In the morning (Between 9am - 12nn)</option>
                     <option value="">In the afternoon (Between 1pm - 5pm)</option>
                     <option value="">In the evening (Between 6pm-7pm)</option>
                      </select>
                    </label>
                  </div>
               <h4> Describe the  Contents of your pickup or Quote below:</h4>
               <div class="form2">
                 <label for="message2">
                   <textarea name="message2" id="message2" cols="30" rows="10"></textarea>
                    </label>
                  </div>
               <input type="submit" name="send2" id="send2" value="">
                </form>

    > dreamweaver is stating i need to "Please Enter Valid Form"
    It's asking for a valid 'FROM' field, not FORM.

  • How to find the invalid form session in oracle Apps

    Oracle Apps R12
    Hai All
    How to find the invalid form session in oracle Apps R12 and How to Kill the that.
    Thanks & Regards
    Srikkanth.M

    Hi,
    Please refer to these docs (for 11i and R12).
    How to Kill Inactive Sessions Based on the Information in the Monitor User Form [ID 103516.1]
    Script: How To Identify The apps User Using The O/S PID For Forms Users In 11i [ID 185762.1]
    Thanks,
    Hussein

  • Forms hangs after using FileUpload PJC  in our application

    1) I've successfully tested the stand-alone FileUpload demo form provided by Oracle for moving files from C/S to the middle tier machine. That tells me all the environment variables, etc. are good to go.
    2) When i try to use the same demo form from my application using the call_form function, it works till the point of transferring the file to the server. Then when I try to close the demo form by hitting the close button to go back to my application, the form hangs up with no error message either in the Java console or the Application.
    3) Even when i made changes to my application to implement the PJC as per the Oracle implementation paper, the same result as #2.
    We are using Forms 6i (v6.0.8.19.2), iAS Rel1 (v1.0.2.2.2a) running on W2000.
    BTW, the size of the file is 1K. The last message I see in the Java console is oracle/ewt/laf/basic/ProgressBarPainter.class
    Any ideas or help appreciated. Thanks.

    Hi,
    You can try a package named: JTwain, which is available at http://asprise.com/product/jtwain.
    JTwain supports all kinds of digital cameras and scanners. You can use Java to access, contorl digital cameras and scanners, and of course, to acquire images with flexible settings.
    The developers' guide is available @ http://asprise.com/product/jtwain/devGuide.php
    In the simplest case, one line of Java code can solve your problem.
    Good luck!

  • HRMS APP-PER-52803:Your business group does not match your security profile

    I see this as a common problem, please guide me as to what should be done to rectify it.
    While opening \Payroll\Description, it gives message as under:
    HRMS APP-PER-52803:Your business group does not match your security profile
    Regards
    Nemo

    Hi,
    I feel that "HR: Security Profile" option is not set properly, BZ of that screen is errors out.
    Please check the following Profile Options
    HR: Security Profile -- Enter the sec profile name which is business Group name
    HR: Business Group -- Your Business Group Name
    Note: If you set the HR: Security Profile optional first, then system will sets the HR: Business Group profile option too automatically.
    I hope this will solves your problem.
    thanks
    Krishna Prasad Rapolu
    Oracle HRMS Consultant.

  • Is there a way to convert a fillable form to a mobile app?

    I have a business process that involves a network of affiliated people collecting data via a particular document which they then sign and return to me.  This could be something like a customer filling in a complex order entry form and returning it to me to place an order.  You could also imagine this like the IRS which provides forms for individuals to fill in and return.
    I would like to offer, as an alternative, a mobile app (iOS and Android) that is based on the same forms.  Imagine, for example, the IRS forms: there are desktop apps (such as TurboTax) that put a GUI form on screen, collect the data, and produce the forms necessary to print out and/or submit electronically.  I want to present my forms in a mobile app using 'native' UI widgets.
    Is there an Adobe tool that can do this conversion process?  I know I can use Acrobat and convert documents from Word to fillable PDF form.  And I believe I can use Adobe DC to convert fillable PDF forms to web forms.  Is there something similar to take me from fillable PDF to mobile app?

    TurboTax or H&R Block Tax software only print a copy of the inputted data to a PDF for the client's records. The input screens and data storage are all independent of the PDF printer.

  • Web Form Hangs When Scrolling through Multi-Record Block

    Hello!
    I have a web-deployed form that uses the Sun Java JVM and utilizes WebUtil.
    We are using JDK v1.4.2.
    When I open this form using the Java plug-in and try to scroll through a multi-record block ... it will hang at various points and eventually I have to close the form because it won't respond.
    This does not happen if I simply access the form through the Microsoft JVM.
    Any suggestions?

    That's a know solved bug. You must install AS10g patchset 9.0.4.2.
    For me it solved the problem.
    Bug 3557904: Forms hangs (deadlocks) when scrolling on XP under some circumstances
    Joao Oliveira

Maybe you are looking for