Browser is taking lot of time in loading forms

Hi
I am working on forms 10g..
when i am running my form.... the browser is loading applet and jar files.
After loading this it is taking lot of time to show forms...
Even I am clearing all my temp files frequently...
Why it is taking so much time??
What I have to do so that it can load forms in very least time??
Thanks

After loading this it is taking lot of time to show forms...This could be caused by a resource issue on the Client PC. By resource I mean available RAM, JRE memory settings, etc. It could also be a conflict between the Client OS, installed JRE and the Browser. Please tell us what the Client OS, JRE and Browser are as well as how much RAM is installed on the client pc.
Even I am clearing all my temp files frequently...Are you clearing the Browsers temporary internet files or the JRE's JAR cache? If the JRE's JAR cache then you are forcing the client to download the JAR each time you clear the JAR cache.
The slowness can also be caused by how large your FORMS files are and what you are doing in the Pre-Form and When-New-Form-Instance triggers. If you are performing numerous calls to the database or calling SYNCHRONIZE too many time in any of the triggers that fire when a Form initially loads then this will cause your form to load slower.
Hope this helps,
Craig B-)
If someone's response is helpful or correct, please mark it accordingly.

Similar Messages

  • (Urgent) form taking lots of time to load and fetch the data

    Hi
    I have very serious problem of perfomance. I have installed oracle portal and configured it properly.
    Now except form everything working perfectly. but only forms and links are taking lots of time to load
    as well as for fetching data. I try to tune my sga and aslo findout hits and miss but i didnt find any
    any problem for it. it is ok. can u help me pls. how can i make my form fast.
    My operation system is NT.
    version of database oracle 8.1.7
    Oracle Portal 3.0.8
    Thanks in advance
    raju parmar
    [email protected]
    null

    hi chetan
    Lots of Thanks.
    Now it working perfect.
    Raju
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Chetan Kashyap ([email protected]):
    The workaround is provided at: http://technet.oracle.com:89/ubb/Forum81/HTML/000395.html <HR></BLOCKQUOTE>
    null

  • Taking lot of time for loading

    Hi,
      We are loading data from HR to BI. Connection between HR and BI has been done recently. When I am trying to load data from HR  to BI it taking lot of time--for example to load 5recs its taking 8hrs. Its same for every datasource. Should we change anything in settings to makes IDOCS work proper? Thanks

    You have to isolate the part that is taking the time.
    - Is R/3 extraction quick? (You can check with RSA3 and see how long does it take.)
    - If R/3 extraction is slow, then is the selection using an index? How many records are there in the table / view?
    - Is there a user exit? Is user exit slow?
    You can find out using monitor screen:
    - After R/3 extraction completed, how long did it take to insert into PSA?
    - How long did it take in the update rules?
    - How long did it take to activate?
    Once you isolate the problem area, post your findings here and someone will help you.

  • Forms taking lot of time  to  load

    In my machine , forms takes a lot of time to load up. When checked with the IT support they told me that, this problem is there in many IBM-NetVista machines in our Office.
    Has anyone faced similar kind of problems . If so please let me know how it was resolved
    Many Thanks,
    Bibin

    By loading i mean, the form takes time to open up in the Forms Builder .
    Bibin

  • Approval Centre in PWA 2010 is taking lot of time to load

    PWA is on the local server but still PWA is taking more than 2-3 mins to load. Is there any way we can reduce this?
    Regards 
    Deepak Dharmpurikar
    Deepak Dharmpurikar

    Following on from James' great advice, see the blog post below that details these recommendations with the TechNet links:
    https://pwmather.wordpress.com/2012/09/14/projectserver-optimisations-for-sql-server-and-ps2010-databases-sp2010-msproject/
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS |
    MVP | Downloads

  • Data load taking lot of time

    Hi All,
    I am trying to upload 2LIS_02_SCL data, I am trying to refresh the entire data using Init, it is taking lot of time in Prodcution. This is creating the problem for me for next Back ground Job which runs in the night for delta's. Please can anybody guide me how to speed up the load? This datasource is connected to 2 Infocubes and 1 ODS.
    Regards,
    Rajesh

    Hi Sal,
    I have done the same things as you said, my mistake is
    R/3:
    Locked all R/3 users.
    Deleted from LBWG.
    Filled setup tables using Document Date from 2006 to 2008 (Month wise i have filled).
    BW:
    I have cleaned entire data from 0PUR_C01 and 0PUR_C04.
    Loaded data at a time to 2 Cubes and 1 ODS using Init upload.
    It is started taking long time. Actual problem is load was not finished at the time of Daily load Process Chain starts(Night).
    I have cancelled the job. made available only delta to Process Chain.
    Now problem is escaled, again i started today same Init for 1 Cube only, again taking long time.
    Regards,
    Rajesh

  • Jsp takes lot of time to load

    Hi ,
    I'm having a servlet which generates data from database and passes to the jsp as string array. In jsp I'm giving the servlet path as
    <body onload=.../OLT/GeQuest?CMD=geQ
    so that it can query the servlet when page loads. But when I start my jsp its taking lot of time and nothing happens even after 5 mins.
    I tried giving the "onload path" directly in the browser and tried to print the string values with PrintWriter its working fine.
    Please let me know if you have any solution for this.
    Thank you,
    Harsh

    Hi,
    thanx 4 reply now im not getting any error for jsp but it doesnt even print the values from servlet (just get the blank page).
    Here is the servlet code
    /* DataBase Code*/
    public void doGet(HttpServletRequest req,HttpServletResponse res)throws IOException,ServletException
                        res.setContentType("text/html");
                        PrintWriter out = res.getWriter();
                        String ge=req.getParameter("CMD");
                        HttpSession session=req.getSession(true);
                        if (ge.equals("geQ"))
                                  CalArray(5);  //Initialize to generate 5 Random nos.
                             /* Check if strings are empty or not */
                                                   /*int c2=0;
                                  while (c2<5)
                                            out.println(Q[c2]+"<br>");
                                            out.println(op1[c2]+"<br>");
                                            out.println(op2[c2]+"<br>");
                                            out.println(op3[c2]+"<br><br><br>");
                                            c2++;
                        session.setAttribute("Qno",Qno[1]);
                        session.setAttribute("Q",Q);
                        session.setAttribute("op1",op1);
                        session.setAttribute("op2",op2);
                        session.setAttribute("op3",op3);
                        session.setAttribute("op4",op4);
                        out.println("<HTML><HEAD><TITLE>Start Test</TITLE></HEAD>");
                        out.println("<BODY><FORM METHOD=get ACTION=http://localhost:8080/OLT/Quest.jsp>");
                        out.println("<BR><BR>        ");
                        out.println("<INPUT TYPE=submit value=Click2Proceed></FORM></BODY></HTML>");/**/
                        RequestDispatcher dis=getServletContext().getRequestDispatcher("/Quest.jsp");
                         if (dis != null){
                             dis.forward(req, res);
              } Before the doGet method servlet just get the data from database and the strings arent null I have checked it,But cant figure out what is the problem while passing the values whats with RequestDispature. And can you plz guide me how to pass CMD parameter to servlet?
    Thanks,

  • Edge Animate .oam files taking a long time to load or not loading at all?

    http://pierosalardi.businesscatalyst.com
    Is there a way to correct this? I have exported this Muse Site and uploaded into my server and the same thing is happening: http://pierosalardi.com/animate/ Its taking to much time to load the .oam files and sometimes they do not load at all.
    This is a screen shot after reseting Safari and going to the site. If you see, there is no logo on the up right hand corner, or the icons at the bottom of the page
    This is another screenshot after reloading the site. Some how all the .oam files came together but only after reloading the site.
    Is there a way to correct this? I saw in another post that needed to replace the iFrame on the Muse html file and replace it with the html code generated by Edge.
    Couldn't get it to work.

    Hey Piero,
    Love your site! I'm not seeing the loading issue, but I'm also on a fast connection so that might be it.
    Took a look at the source - it looks like each button is it's own individual OAM file, which increases your load time due to the extra requests the browser has to make to load everything. Have you tried consolidating the left and right button groups into two Animate projects instead of having a seperate one for each button? This may solve your loading problems.
    You can copy and paste between projects inside of Animate so aggregating the buttons into one file should be pretty snappy.
    Sarah

  • Ssrs Report taking to much time to load

    Hello all,
    I have a matrix report which was running nice before some days, but now taking too much time to load 
    i tested store procedure but it is ok to return same data in 5 seconds 
    and when i tested in ssrs BIDS side i set 60 sec for dataset timeout option, and it gets timeout 
    after i set 1000 seconds timeout but it is just rolling and rolling loading 
    when i check in executionlog of reportserver i found  something like ..
    TimeDataRetrieval     TimeProcessing     TimeRendering       Status                                          
            RowCount
    131951   323    
    95         rsHttpRuntimeClientDisconnectionError    1784
    Reply me fast please, Help must appreciated .. 
    Thanks ..
    Dilip Patil..

    Hi Dilip,
    According to your description, your report keeps loading symbol when rendering. Right?
    In this scenario, as you can see in the Excecution Log, it spends a lot of time on data retrieval. Based on the status information, it's the issue on the conncetion. Since you have tested the stored procedure, and it works properly. Please check if the credentials
    for data source has permisson to connect the database. You can also Test Connection when creating data source. As you mentioned, it uses Raido Frequency to connection. There might be large network traffic on transfering data. 
    Reference:
    Troubleshooting Reports: Report Performance
    Best Regards,
    Simon Hou

  • Rendering BSP page in CIC0 taking lot of time

    Hi All,
    A new bsp application is developed and is called from CIC0 (Interaction Center Winclient). The UI (bsp page) rendering is taking lot of time in SAPGUI. I'm unable to find the exact reason for this problem. Has any one of us experienced this problem before? Are there any solution available for such an issue?
    Thanks & Regards
    G.Raja

    Hi G.Raja,
       How do you call the bsp ? Is the bsp inside the sapgui or the bsp is called in external browser.
    Regards.
    Manuel

  • What's in the apple TV update that came out tonight?  It's taking a long time to load.

    What's in the apple TV update that came out tonight?  It's taking a long time to load.

    Apple TV Software Update 5.2
    Feature
    Summary
    iTunes in the Cloud
    Browse and play your purchased iTunes music directly from iCloud. This feature may not be available in all countries.
    Bluetooth keyboard
    Use your Apple Wireless Keyboard to control your Apple TV. See this articlefor more information.
    AirPlay audio for videos
    Send stereo audio from movies, TV shows, and other videos on Apple TV to AirPlay-enabled speakers and devices (including AirPort Express and other Apple TVs).
    Stability and performance
    Includes general performance and stability improvements.
    If it's taking awhile to load it could be due to slow network speed or interference. It's around 600MB. If on ethernet, some have reported issues, try wifi.

  • Taking too much time to load application

    Hi,
    I have deployed a j2ee application on oracle 10g version 10.1.2.0.2. But the application is taking too much time to load. After loading ,everything works fast.
    I have another 10g server (same version) in which the same application is loading very fast.
    When I checked the apache error logs found this :-
    [Thu Apr 26 09:17:31 2007] [warn] [client 10.1.20.9] oc4j_socket_recvfull timed out
    [Thu Apr 26 09:17:31 2007] [error] [client 10.1.20.9] [ecid: 89128867058,1] (4)Interrupted system call: MOD_OC4J_0038: Receiving data from oc4j exceeded the configured "Timeout" value and the error code is 4.
    [Thu Apr 26 09:17:31 2007] [error] [client 10.1.20.9] [ecid: 89128867058,1] MOD_OC4J_0054: Failed to call network routine to receive an ajp13 message from oc4j.
    [Thu Apr 26 09:17:31 2007] [error] [client 10.1.20.9] [ecid: 89128867058,1] MOD_OC4J_0033: Failed to receive an ajp13 message from oc4j.
    [Thu Apr 26 09:17:31 2007] [warn] [client 10.1.20.9] [ecid: 89128867058,1] MOD_OC4J_0078: Network connection errors happened to host: lawdb.keralalawsect.org and port: 12501 while receiving the first response from oc4j. This request is recoverable.
    [Thu Apr 26 09:17:31 2007] [error] [client 10.1.20.9] [ecid: 89128867058,1] MOD_OC4J_0121: Failed to service request with network worker: home_15 and it is not recoverable.
    [Thu Apr 26 09:17:31 2007] [error] [client 10.1.20.9] [ecid: 89128867058,1] MOD_OC4J_0013: Failed to call destination: home's service() to service the request.
    [Thu Apr 26 11:36:36 2007] [notice] FastCGI: process manager initialized (pid 21177)
    [Thu Apr 26 11:36:37 2007] [notice] Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server configured -- resuming normal operations
    [Thu Apr 26 11:36:37 2007] [notice] Accept mutex: fcntl (Default: sysvsem)
    [Thu Apr 26 11:36:37 2007] [warn] long lost child came home! (pid 9124)
    [Thu Apr 26 11:39:51 2007] [error] [client 10.1.20.9] [ecid: 80547835731,1] MOD_OC4J_0015: recv() returns 0. There has no message available to be received and oc4j has gracefully (orderly) closed the connection.
    [Thu Apr 26 11:39:51 2007] [error] [client 10.1.20.9] [ecid: 80547835731,1] MOD_OC4J_0054: Failed to call network routine to receive an ajp13 message from oc4j.
    [Thu Apr 26 11:39:51 2007] [error] [client 10.1.20.9] [ecid: 80547835731,1] MOD_OC4J_0033: Failed to receive an ajp13 message from oc4j.
    [Thu Apr 26 11:39:51 2007] [warn] [client 10.1.20.9] [ecid: 80547835731,1] MOD_OC4J_0078: Network connection errors happened to host: lawdb.keralalawsect.org and port: 12501 while receiving the first response from oc4j. This request is recoverable.
    [Thu Apr 26 11:39:51 2007] [warn] [client 10.1.20.9] [ecid: 80547835731,1] MOD_OC4J_0184: Failed to find an oc4j process for destination: home
    [Thu Apr 26 11:39:51 2007] [error] [client 10.1.20.9] [ecid: 80547835731,1] MOD_OC4J_0145: There is no oc4j process (for destination: home) available to service request.
    [Thu Apr 26 11:39:51 2007] [error] [client 10.1.20.9] [ecid: 80547835731,1] MOD_OC4J_0119: Failed to get an oc4j process for destination: home
    [Thu Apr 26 11:39:51 2007] [error] [client 10.1.20.9] [ecid: 80547835731,1] MOD_OC4J_0013: Failed to call destination: home's service() to service the request.
    [Thu Apr 26 11:46:33 2007] [notice] FastCGI: process manager initialized (pid 21726)
    [Thu Apr 26 11:46:34 2007] [notice] Oracle-Application-Server-10g/10.1.2.0.2 Oracle-HTTP-Server configured -- resuming normal operations
    [Thu Apr 26 11:46:34 2007] [notice] Accept mutex: fcntl (Default: sysvsem)
    [Thu Apr 26 11:46:34 2007] [warn] long lost child came home! (pid 21182)
    [Thu Apr 26 11:53:32 2007] [warn] [client 10.1.20.9] oc4j_socket_recvfull timed out
    [Thu Apr 26 11:53:32 2007] [error] [client 10.1.20.9] [ecid: 89138452752,1] (4)Interrupted system call: MOD_OC4J_0038: Receiving data from oc4j exceeded the configured "Timeout" value and the error code is 4.
    [Thu Apr 26 11:53:32 2007] [error] [client 10.1.20.9] [ecid: 89138452752,1] MOD_OC4J_0054: Failed to call network routine to receive an ajp13 message from oc4j.
    [Thu Apr 26 11:53:32 2007] [error] [client 10.1.20.9] [ecid: 89138452752,1] MOD_OC4J_0033: Failed to receive an ajp13 message from oc4j.
    [Thu Apr 26 11:53:32 2007] [warn] [client 10.1.20.9] [ecid: 89138452752,1] MOD_OC4J_0078: Network connection errors happened to host: lawdb.keralalawsect.org and port: 12501 while receiving the first response from oc4j. This request is recoverable.
    [Thu Apr 26 11:53:32 2007] [error] [client 10.1.20.9] [ecid: 89138452752,1] MOD_OC4J_0121: Failed to service request with network worker: home_15 and it is not recoverable.
    [Thu Apr 26 11:53:32 2007] [error] [client 10.1.20.9] [ecid: 89138452752,1] MOD_OC4J_0013: Failed to call destination: home's service() to service the request.
    Please HELP ME...

    Hi this is what the solution given by your link
    A.1.6 Connection Timeouts Through a Stateful Firewall Affect System Performance
    Problem
    To improve performance the mod_oc4j component in each Oracle HTTP Server process maintains open TCP connections to the AJP port within each OC4J instance it sends requests to.
    In situations where a firewall exists between OHS and OC4J, packages sent via AJP are rejected if the connections can be idle for periods in excess of the inactivity timeout of stateful firewalls.
    However, the AJP socket is not closed; as long as the socket remains open, the worker thread is tied to it and is never returned to the thread pool. OC4J will continue to create more threads, and will eventually exhaust system resources.
    Solution
    The OHS TCP connection must be kept "alive" to avoid firewall timeout issues. This can be accomplished using a combination of OC4J configuration parameters and Apache runtime properties.
    Set the following parameters in the httpd.conf or mod_oc4j.conf configuration files. Note that the value of Oc4jConnTimeout sets the length of inactivity, in seconds, before the session is considered inactive.
    Oc4jUserKeepalive on
    Oc4jConnTimeout 12000 (or a similar value)
    Also set the following AJP property at OC4J startup to enable OC4J to close AJP sockets in the event that a connection between OHS and OC4J is dropped due to a firewall timeout:
    ajp.keepalive=true
    For example:
    java -Dajp.keepalive=true -jar oc4j.jar
    Please tell me where or which file i should put the option
    java -Dajp.keepalive=true -jar oc4j.jar ??????/

  • Creative Cloud is taking too much time to load and is not downloading the one month trial for Photoshop I just paid money for.

    Creative Cloud is taking too much time to load and is not downloading the one month trial for Photoshop I just paid money for.

    stop the download if it's stalled, and restart your download.

  • Full DTP taking too much time to load

    Hi All ,
    I am facing an issue where a DTP is taking too much time to load data from DSO to Cube via PC and also while manually running it.
    There are 6 such similar DTP's which load data for different countries(different DSO's and Cubes as source and target respectively) for last 7 days based on GI Date. All the DTP's are pulling almost same no. of records and finish within 25-30 min. But only one DTP takes around 3 hours. The problem started couple of days back.
    I have change the Parallel processes from 3->4->5 and packet size from 50,000->10,000->1.00.000 but no improvement. Also want to mention that all the source DSO's and target Cubes have the same structure. All the transformations have Field Routines and End Routines.
    Can you all please share some pointers which can help.
    Thanks
    Prateek

    HI Raman ,
    This is what I get when I check the report. Can this be causing issues as 2 rows have % >= 100
    ETVC0006           /BIC/DETVC00069     rows:      1.484    ratio:          0  %
    ETVC0006           /BIC/DETVC0006C     rows: 15.059.600    ratio:        103  %
    ETVC0006           /BIC/DETVC0006D     rows:        242    ratio:          0  %
    ETVC0006           /BIC/DETVC0006P     rows:         66    ratio:          0  %
    ETVC0006           /BIC/DETVC0006T     rows:        156    ratio:          0  %
    ETVC0006           /BIC/DETVC0006U     rows:          2    ratio:          0  %
    ETVC0006           /BIC/EETVC0006      rows: 14.680.700    ratio:        100  %
    ETVC0006           /BIC/FETVC0006      rows:          0    ratio:          0  %
    ETVC0007           rows: 13.939.200    density:              0,0  %

  • Background job is taking lot of time for processing the job.

    One background job - which is processing Idocs is processing a job for more than 2000+ seconds.. and completed tho.
    But this is happening for the past few days.. is there any way to trouble shoot, or find from any logs of this completed job, to find out why it was taking lot of time for processing.
    Can you please tell me the steps of analyzing / trouble shooting why it was taking lot of time daily.
    Regards,
    Satish.

    Hi Satish,
    Run DB stat from db13 it will improve the performance.
    Check number of idocs. You can send part by part, instead of sending huge data.
    Check SM58 logs
    Suman

Maybe you are looking for