Wait While Processing - Javascript?

Hello
I have two applications which take a while to processes.
I would like to display a mesaage asking the user to wait while processing is been completed ... also stop them from entering "send" twice
I expect a solution I looking for is a Javascript?
Any help is very welcome
Thank you
Pete

Hi Pete,
If you are using an Ajax call to start your processes, you can use: "GetAsync". It is a function of an ajax request object.
1. Create a div which containts your waiting logo or text (put it in the page footer or something like that)
<div id="AjaxLoading" style="display:none;padding:5px;font-size:18px;width:200px;text-align:center;left:48%;top:48%;position:absolute;border:5px solid #2A689F;background-color:#FFF;">..Loading..<br /><img src="#WORKSPACE_IMAGES#ajax-loader.gif" /></div>  2. Create a javascript function that triggers the div while loading, and disables your button while loading
function f_AsyncReturn(){ 
         if(p.readyState == 1){                      
                     html_ShowElement('AjaxLoading');
                     $x('P1_YOUR_SAVE_BUTTON').disabled = true;
         }else if(p.readyState == 2){ 
         }else if(p.readyState == 3){ 
         }else if(p.readyState == 4){ 
                     html_HideElement('AjaxLoading');
                     $x('P1_YOUR_SAVE_BUTTON').disabled = false; 
         }else{return false;} 
} 3. Create/Edit your ajaxRequest with the following (where **Your_app_process** is your application process that triggers or executes your long process)
var ajaxRequest = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=**Your_app_process**',null);
ajaxRequest.GetAsync(f_AsyncReturn);Note that this sollution requires an ajax call to work. To make a progress bar with simple page processes (that trigger long processes), you'll need to go the "old fashion way".
This mean you need to return values while executing the process, and catch them in the calling process. Then make sure you use these values to fill in a progress bar or something.
Personally I'd go for a application process that executes your long process(es) and use the aSync method. It looks really clean and web 2.0.
*Edit: I used this method in my Drag and Drop planboard: http://apex.oracle.com/pls/otn/f?p=52879:1
If you drag an order to a new field, and Save the record. You'll see a loading image (very briefly, because the process is quite short)
Hope this helps,
Rutger
Edited by: Rutger on Apr 16, 2009 5:44 AM

Similar Messages

  • What's "Please wait while the document is being processed" mean ?

    When open a WebI report and click "Refresh Data", then "Please wait while the document is being processed" prompt page be poped up.
    Does it mean datas had been refreshed completely when the prompt page disappeared?

    When you hit "Refresh Data" button the data will be fetched. If you have lov's in the report then all the lov's data will be fetched and the report data is refreshed accordingly to the lov's fetched.If you hit the refresh data button again without changing the lov values then the report data is fetched for the cache and will be refreshed

  • Crystal reports visual studio 2013. "Please wait while the document is being processed." Error

    I am using Crystal Reports for VS 2010. The report is working fine but if you click on the next page or click on group tree,
    the message “Please wait while the document is being processed.” comes. Never show next page.
    Any ideas?

    Hi Qin Yang,
    Please post your question in the official
    SAP Crystal Reports for Visual Studio forum.
    Thanks for your understanding.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • CRVS2010 Beta - PLEASE WAIT WHILE DOCUMENT I S PROCESSING

    I have installed Cristal report 2010 y Visual studio 2010 the report in visual studio 2010 in design mode Correctly , but when run the aplication show de next message > PLEASE WAIT WHILE DOCUMENT I S PROCESSING and the aplication not responding and not show the report why?.  I call the report >
    myreport r = new myreport();
    crystalReportViewer1.ReportSource = r;
    crystalReportViewer1.RefreshReport();
    Updated subject line....
    Edited by: Don Williams on Oct 31, 2010 5:00 PM

    Not enough info,
    What OS?
    What language is the OS?
    What have you done to debug the problem?
    Is it a Windows or WEB app?
    What happens if you use a report with saved data?
    Why are you not setting the database log on info?
    Thank you
    Don

  • Please wait  while the document is being processed

    warning...newbie question....
    We are using the crystal report viewer on an ASP.NET application.
    on the parameter panel there is an edit icon, if the user double clicks this,  the report viewer triggers the page to re-load,  then it displays a tiny dialogbox that says "Please wait  while the document is being processed" but the report viewer never refreshes.  the dialogbox never goes always.
    1) why does the edit icon show up on all the parameters?
    2) what is it doing when someone double clicks it?
    3) how can i hide or disable it?
    any help would greatly be appreciated!!!

    Is this happening on your development computer or after you deploy the app?
    it happenes both in dev and on the servers
    Is this an app you wrote? (I don't recognize this error "Please wait while the document is being processed" as a Crystal reports error)
    no, it's a small dialog that the viewer is generating when the user clicks on the edit icon in the viewer
    If this is on a deployed system - how was the CR runtime deployed?
    uggh, i grabbed the MSI that was referenced in the product.xml
    What is the OS?
    XP on dev, win2k3 on the server
    What is the database?
    MS SQL 2005
    What is the database connection method?
    ADO Client
    Are yo changing the database connection information (e.g.; new server, database)?
    when the report is instantiated, we set the db connections and the report works,  it just kind goes off to never never land when the user click the edit icon in the report viewer.

  • Error: var g_objCurrentFormData_Error : There has been an error while processing the form

    Hi,.
    I have a InfoPath 2010 form which was published to SharePoint 2010.  I migrated the content db to SQL Server 2012 and I have converted the Sharepoint 2010 (windows based) to the SharePoint 2013 claims based site. I have not fully upgraded the site to
    2013 version (Version upgrade to SP 2013) is not done..
    In the InfoPath 2010 form, which is available in SP 2013. I have a button and on click of it, i have the below code:
    XPathNavigator domNav = MainDataSource.CreateNavigator();
    XPathNavigator fldUserurl = domNav.SelectSingleNode("/my:myFields/my:TaskUrl", this.NamespaceManager);
    if (!string.IsNullOrEmpty(fldUserurl.Value))
    string urlToDecode = HttpUtility.UrlDecode(fldUserurl .Value);
    HttpContext.Current.Response.Write("<script type='text/javascript'>window.open('" + urlToDecode + "','_self','left=20,top=20,width=500,height=500,toolbar=1,resizable=0');</script>");
    HttpContext.Current.Response.Flush();
    HttpContext.Current.Response.End();
    The above code works fine in SharePoint 2010, however after moving the Site to SP 2013 Claims mode, I am getting the error as
    "var g_objCurrentFormData_Error = [[[12,"There has been an error while processing the form.","","","guid"]],[],0,"","",1033,"","",["0","","","","","",0,0,"",0,false],"","0",false,"",0,"","http:\u002f\u002ftest-t1.com\u002fs\u002fTestApplication","ltr","http:\u002f\u002ftest-t1.com\u002fs\u002fTestApplication",6.35202885373882E+17"
    In the SP Logs, i found the below:
    Unhandled exception processing request for PostbackPage Microsoft.Office.InfoPath.Server.Util.InfoPathFatalException: Exception of type 'Microsoft.Office.InfoPath.Server.Util.InfoPathFatalException' was thrown.   
     at Microsoft.Office.InfoPath.Server.Util.GlobalStorage.get_CurrentFormId()   
     at Microsoft.Office.InfoPath.Server.Util.GlobalStorage.get_CurrentContext()   
    How to fix this?
    Thanks

    Hi Venkatzeus,
    please let us know your sharepoint 2013 latest cumulative update, if possible please make sure it is March 2013 update or above.
    as i know, between 2010 infopath and 2013 there are difference, perhaps if you can debug your form it may help.
    most probably there are environment settings difference between 2010 sharepoint and 2013 sharepoint. such as the data connection size/length, that causing it failed, or the form data is NULL.
    http://infopathdebugger.codeplex.com/
    http://www.infopathdev.com/forums/t/26330.aspx
    http://social.technet.microsoft.com/Forums/en-US/5c9d2fce-0fd8-439c-a636-bf856eb76e15/how-to-retrieve-term-store-management-values?forum=sharepointgeneralprevious
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Error while processing INVOIC01 inbound idoc in R/3

    Hello @ all,
    in XI I'm mapping a XML-file to an INVOIC01 idoc and then sending it to an R/3.
    While processing the idoc in the R/3 it is passed to the application and brings the following error:
    A company code cannot be determined for LS 0000001111
    As solution the system advices to send the company in segment E1EDK14 and ORGID field and the value "011" used as the qualifier, what I allmost did.
    And btw. in my case 1111 is not LS but LF.
    So has anyone an idea what the problem could be, or how to solve it?
    P.S.: To determine the company code for LS 0000001111  in Financial Accounting customizing is not possible, because it is a training system without admin rights I'm working with.
    Thankx.

    Hi Krishna,
    The middleware user is locking the order so the document has not distributed through the system properly. 
    Try looking at the inbound queue (transaction SMQ2) and outbound queue (SMQ1) for errors.  Also look at the BDocs in error (SMW01).
    When CRM sends an order to R/3 it waits for a confirmation to be returned, looks like the problem is here, maybe in your delta downloads not being set correctly.
    Cheers
    Andrew

  • Error while processing library references. Unresolved application library r

    Hi Experts,
    When i try to deploy .ear file in weblogic 11g server (linux 64-bit redhat OEL 5.46), I am facing following error.
    Please help me out to resolve it.
    Eror Message
    <May 6, 2011 7:32:40 PM IST> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1304690560384' for task '8'. Error is: 'weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: org.apache.commons.httpclient, exact-match: false].'
    weblogic.management.DeploymentException: [J2EE:160149]Error while processing library references. Unresolved application library references, defined in weblogic-application.xml: [Extension-Name: org.apache.commons.httpclient, exact-match: false].
    at weblogic.application.internal.flow.CheckLibraryReferenceFlow.prepare(CheckLibraryReferenceFlow.java:26)
    at weblogic.application.internal.BaseDeployment$1.next(BaseDeployment.java:613)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:52)
    at weblogic.application.internal.BaseDeployment.prepare(BaseDeployment.java:184)
    at weblogic.application.internal.EarDeployment.prepare(EarDeployment.java:58)
    Truncated. see log file for complete stacktrace
    >
    <May 6, 2011 7:44:58 PM IST> <Alert> <WebLogicServer> <BEA-000396> <Server shutdown has been requested by weblogic>
    <May 6, 2011 7:44:58 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SUSPENDING>
    [JCABindingManager] : This operation is not supported for JCA based MDB
    <May 6, 2011 7:45:00 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <May 6, 2011 7:45:00 PM IST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to FORCE_SHUTTING_DOWN>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[3]" listening on fe80:0:0:0:be30:5bff:fed3:5db0:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[1]" listening on 10.108.26.246:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[7]" listening on 0:0:0:0:0:0:0:1:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[6]" listening on 127.0.0.1:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[2]" listening on fe80:0:0:0:200:ff:fe00:0:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default" listening on 192.168.122.1:8001 was shutdown.>
    <May 6, 2011 7:45:00 PM IST> <Notice> <Server> <BEA-002607> <Channel "Default[4]" listening on fe80:0:0:0:fcff:ffff:feff:ffff:8001 was shutdown.>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:01 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:05 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    [TopLink Info]: 2011.05.06 19:45:06.235--ServerSession(255740887)--deferred_session logout successful
    [TopLink Info]: 2011.05.06 19:45:06.236--ServerSession(256131953)--tracking_session logout successful
    <May 6, 2011 7:45:06 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:06 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:06 PM IST> <Warning> <oracle.adf.share.ADFContext> <BEA-000000> <Automatically initializing a DefaultContext for getCurrent.
    Caller should ensure that a DefaultContext is proper for this use.
    Memory leaks and/or unexpected behaviour may occur if the automatic initialization is performed improperly.
    This message may be avoided by performing initADFContext before using getCurrent().
    To see the stack trace for thread that is initializing this, set the logging level of oracle.adf.share.ADFContext to FINEST>
    <May 6, 2011 7:45:09 PM> <FINEST> <NodeManager> <Waiting for the process to die: 20074>
    <May 6, 2011 7:45:09 PM> <INFO> <NodeManager> <Server was shut down normally>
    <May 6, 2011 7:45:09 PM> <FINEST> <NodeManager> <runMonitor returned, setting finished=true and notifying waiters>
    Thanks
    Phani

    George,
    To solve my problemn I uninstall my JDev, remove all folders (Oracle_home, and JDeveloper folder in users - app data - roaming). Install again, and get Webcenter Bundle from Help - Updates. Before a uninstall I was using a bundle that a have here in my machine.
    Thks

  • Wierd ColdFusion erro : Error occurred while processing request.

    Hi there ,
    I am a graduate student and new to ColdFusion.I started working on this already developed project by someone couple of years ago , and the client wants some changes to be done.so i went ahead and did some small modifications to the appearance of the form(insertdata.cfm page) like adding some more options to a drop down menu , changing the label names and so on and am very sure this changes would not have effected the application in any way.And the place where the message says the error can be , i didnt even touch that part.Now after 4 days i start getting this weird error saying " Error Occurred While Processing Request
    The system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code.
    Null Pointers are another name for undefined values."
    And this happens randomly not everytime i access the website or different webpages.Here are the errors.
    The error occurred in /export/web/virtual/web3_unt_edu/cps/webaccess/sites/Amarillo/index.cfm: line 8
    5 :   SELECT UserName,Password FROM user_data WHERE UserName=
    6 :   <cfqueryparam value="#FORM.UserName#" maxlength="8">
    7 :     AND Password=
    8 :   <cfqueryparam value="#FORM.Password#" maxlength="8">
    9 :   </cfquery>
    10 :   <cfif MM_rsUser.RecordCount NEQ 0>
    I tried adding " cfsqltype="cf_sql_clob"  " in cfqueryparam also on my friends advice , but it doesnt work out.
    2nd ERROR
    The error occurred in /export/web/virtual/web3_unt_edu/cps/webaccess/sites/Amarillo/InsertData.cfm: line 13
    11 :   <cflocation url="#MM_failureURL#" addtoken="no">
    12 : </cfif>
    13 : <cfquery name="rsDay" datasource="cps">
    14 : SELECT days FROM days
    15 : </cfquery>
    3rd ERROR
    The error occurred in /export/web/virtual/web3_unt_edu/cps/webaccess/sites/Amarillo/InsertData.cfm: line 27
    25 : ORDER BY ethnicity ASC
    26 : </cfquery>
    27 : <cfquery name="rsHospitals" datasource="cps_amarillo">
    28 : SELECT *
    29 : FROM hospitals
    Can anyone help me with this. I have to get the modifications done in 2 weeks.
    Thank you
    Craj

    Hi Mak
             I can get the stack trace for now , but here is my complete code , may be this ll give u complete idea .........
    The index page where i am getting the first error
    <cfif IsDefined("FORM.UserName")>
      <cfset MM_redirectLoginSuccess="menu.cfm">
      <cfset MM_redirectLoginFailed="../../fail.htm">
      <cfquery  name="MM_rsUser" datasource="cps_amarillo">
        SELECT UserName,Password FROM user_data WHERE UserName=
      <cfqueryparam value="#FORM.UserName#" maxlength="8">
        AND Password=
      <cfqueryparam value="#FORM.Password#" maxlength="8">
      </cfquery>
      <cfif MM_rsUser.RecordCount NEQ 0>
        <cftry>
          <cflock scope="Session" timeout="30" type="Exclusive">
            <cfset Session.MM_Username=FORM.UserName>
            <cfset Session.MM_UserAuthorization="">
          </cflock>
          <cfif IsDefined("URL.accessdenied") AND true>
            <cfset MM_redirectLoginSuccess=URL.accessdenied>
          </cfif>
          <cflocation url="#MM_redirectLoginSuccess#" addtoken="no">
          <cfcatch type="Lock">
            <!--- code for handling timeout of cflock --->
          </cfcatch>
        </cftry>
      </cfif>
      <cflocation url="#MM_redirectLoginFailed#" addtoken="no">
      <cfelse>
      <cfset MM_LoginAction=CGI.SCRIPT_NAME>
      <cfif CGI.QUERY_STRING NEQ "">
        <cfset MM_LoginAction=MM_LoginAction & "?" & XMLFormat(CGI.QUERY_STRING)>
      </cfif>
    </cfif>
    <cfinclude template="../../../Connections/cps_amarillo.cfm">
    <cfif IsDefined("FORM." & "UserName")>
      <cfscript>
        MM_valUsername=Evaluate("FORM." & "UserName");
        MM_fldUserAuthorization="";
        MM_redirectLoginSuccess="menu.cfm";
        MM_redirectLoginFailed="../../fail.htm";
        MM_dataSource=MM_cps_amarillo_DSN;
        MM_queryFieldList = "UserName,Password";
        if (MM_fldUserAuthorization IS NOT "") MM_queryFieldList=MM_queryFieldList & "," & MM_fldUserAuthorization;
      </cfscript>
      <cfquery datasource=#MM_dataSource# name="MM_rsUser" username=#MM_cps_amarillo_USERNAME# password=#MM_cps_amarillo_PASSWORD#>
      SELECT #MM_queryFieldList# FROM user_data WHERE UserName='#Replace(MM_valUsername,"\'","
      ","ALL")#' AND Password='#FORM.Password#'
      </cfquery>
      <cfif MM_rsUser.RecordCount GREATER THAN 0>
        <cfscript>
          // username and password match - this is a valid user
          Session.MM_Username = MM_valUsername;
          if (MM_fldUserAuthorization IS NOT "") {
            Session.MM_UserAuthorization = MM_rsUser[MM_fldUserAuthorization][1];
          } else {
            Session.MM_UserAuthorization = "";
          if (IsDefined("accessdenied") AND true) {
            MM_redirectLoginSuccess = Evaluate("accessdenied");
        </cfscript>
        <cflocation url="#MM_redirectLoginSuccess#" addtoken="no">
      </cfif>
      <cflocation url="#MM_redirectLoginFailed#" addtoken="no">
      <cfelse>
      <cfscript>
        MM_LoginAction = CGI.SCRIPT_NAME;
        if (CGI.QUERY_STRING NEQ "") MM_LoginAction = MM_LoginAction & "?" & CGI.QUERY_STRING;
      </cfscript>
    </cfif>
    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Amarillo Login Screen</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <script type="text/JavaScript">
    <!--
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_validateForm() { //v4.0
      var i,p,q,nm,test,num,min,max,errors='',args=MM_validateForm.arguments;
      for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
        if (val) { nm=val.name; if ((val=val.value)!="") {
          if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
            if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
          } else if (test!='R') { num = parseFloat(val);
            if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
            if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
              min=test.substring(8,p); max=test.substring(p+1);
              if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
        } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
      } if (errors) alert('The following error(s) occurred:\n'+errors);
      document.MM_returnValue = (errors == '');
    //-->
    </script>
    </head>
    <body>
    <div id="Layer2" style="position:absolute; left:26px; top:112px; width:683px; height:56px; z-index:2">
      <div align="right"><font size="+6"><strong><font color="#999999" size="5" face="Verdana, Arial, Helvetica, sans-serif">Seniors
        / Volunteers for Childhood Immunization<br />
        </font></strong></font><font color="#999999" size="5"><strong><font size="4" face="Verdana, Arial, Helvetica, sans-serif">Web
        Access Database</font></strong></font></div>
    </div>
    <div id="instructions" style="position:absolute; left:160px; top:182px; width:259px; height:30px; z-index:3"><font color="#999999" size="5"><strong><font size="4" face="Verdana, Arial, Helvetica, sans-serif">Please
      enter your user name and password...</font></strong></font></div>
    <div id="LayerLogin" style="position:absolute; left:427px; top:182px; width:310px; height:94px; z-index:4">
      <form ACTION="<cfoutput>#MM_loginAction#</cfoutput>" name="form1" id="form1" method="POST">
        <p><img src="../../../images/image14.gif" alt="" name="UserNameImg" width="150" height="21" border="0" id="UserNameImg" />
          <input name="UserName" type="text" id="UserName" size="15" maxlength="15" />
          <br />
          <img src="../../../images/image15.gif" alt="" name="PasswordImg" width="150" height="21" border="0" id="PasswordImg" />
          <input name="Password" type="password" id="Password" size="17" maxlength="15" />
        </p>
        <p align="right">
          <input name="Submit" type="submit" id="Submit" onclick="MM_validateForm('UserName','','R','Password','','R');return document.MM_returnValue" value="Log In!" />
        </p>
      </form>
    </div>
    </body>
    </html>
    I checked it again and again , but the code seems to work well on a local host ..... but not whn i upload it to server. Please let me know where i am goin wrong.
    Thank you

  • Everytime I try to scan it says "Please wait while windows configures scan".

    Hi guys. I am trying to use my HP Photosmart D110 on my windows XP SP3. I am using the same printer on another computer (Windows 7) and it works perfectly. I don't know why everytime I try to scan it tells me "Please wait while winows configures scan". I have done research on this and nothing has helped. Some people it has something to do with scan.msi. People found success with the issue I have with this forum 
    http://h30434.www3.hp.com/t5/Scanning-Faxing-and-Copying/HP-C7250-quot-configures-quot-itself-every-...
    Unfortunately, the program "Windows Installer Clean Up Utility" is no longer available and has been replaced with "Microsoft Fix it" and the person who answered the question (rasengan-bankai) said to look for "scan" but in the list it doesn't show anything that specifically that says that. This is what the list contains (that has to do with HP):
    HPAppStudio
    HP Product Assistant 
    Solution Center
    I don't know what to do and anything that helps fix the problem will be greatly appreciated. Also, I don't know if this has anything to do with the subject but the computer I am using (Windows XP SP3) was not working a while back and had to replace the hard drive and reformatted it.  
    Thanks a lot for your help.

    It sounds like your install has become messed up in some manner.  It is possible that not all portions installed correctly or that registry keys tied to the program have been broken.  I would advise performing a cleanup uninstall process and then reinstall the software on your PC.  I will provide these steps below.
    1. Run disk cleanup on your computer
    2. Download and run the software and drivers below.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-80511-1&cc=us&dlc=en&lc=en&...
    3. Once the download is done extracting, cancel the download.
    4.. Press the Windows key + R on the keyboard to bring up the run menu.
    5. Type %temp% in the run field and click OK.
    6. Look for, and open the folder starting with 7z (Example: 7zS2356)
    7. Open folder Util
    8. Open folder CCC
    9. Run the uninstall_ L4.bat for non-HP computers.  For HP computers run the Uninstall_L3.bat
    10. When the uninstall has completed restart the computer
    11. Run Disk cleanup from Accessories\ System Tools
    12. Download and install the latest version of Adobe flash player
    http://www.adobe.com/support/flashplayer/downloads.html
    13. Use this tool to clean the system and registry.  Note: This utility is not HP sponsored or approved.  HP and I are not responsible for damages or loss of data caused by the utility.  This step is optional.   You can skip it if you want.
    http://download.cnet.com/Advanced-SystemCare/3000-2086_4-10407614.html?part=dl-6271865&subj=dl&tag=b...
    14. Download the full feature software and drivers
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-80511-1&cc=us&dlc=en&lc=en&...
    15. Run the download to reinstall the printer
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------
    I am not an HP employee.

  • Why must I "Please wait while Windows configures iTunes" again and again?

    I have just allowed the automatic settings to update my iTunes. The last time this happened it meant that the icon left on my desktop would not simply START iTunes, but instead went through the entire installation process all over again. Someone gave me some good advice and I was able to make the correct changes - it stopped and I have enjoyed it since.
    This time, every time I click the icon, I must "please wait while Windows configures iTunes".
    So, how do I fix this one?

    Just adding my voice to a long and growing list of unhappy iTunes users who by now have spent hundreds of thousands of unproductive hours searching for a solution. My guess is that the latest iTunes install package (as with those for earlier versions of iTunes) fails to update the registry properly. It's possible that Apple is not responding becasue it hopes many of us will give up on Windows nd buy an Apple Mac (Jobs is sounding more and more like Gates did 20 years ago). Let's see a little more grace from Apple and a solution before the cows come home.

  • InfoView Errror - Please wait while the document...

    Hello, I am looking for some assistance as I am stumped on this. Very recently we have had an issue come up on our InfoView site when people attempt to run a report a progress windows comes up saying "Please wait while the document is being processed."  I have gone through many checks to try and troubleshoot but nothing has worked, tried various browsers and versions, java versions, removed windows updates from the server and updated the Crystal Server to 3.1 SP4 and none of helps.  It just sits in and endless loop with that error on the screen. I am open to ideas, any suggestions?
    Rod

    Hi Rod,
    Please follow the steps provided below, it might help you.
    1.Open Report in Crystal Reports Full Client
    2.Click File/Page Setup
    3.Click "No Printer" -- This will force the report, when run on the server, to be set automatically to the default printer, instead of looking for the printer driver that was set up on the client machine where the report was developed
    4.Click "OK"
    5.Click on File/Report Options
    6.Remove the check mark from "Verify On First Refresh" and "Verify Stored Procedures On First Refresh" -- This will force the report to skip the process of querying the database to verify metadata information
    7.Click "OK"
    Let us know if this works for you or not.
    Thanks,
    Kuldeep G

  • While Processing one ASN in EBIZ we are getting below work flow error.

    Hi Gurus,
          while processing WF details , i am receiving following erorr in one of node process. Can you please give any sugessions from your end why this error will come and resolution ways.
    thanks in advance
    issue details are below :
    Error Stack Wf_Engine.CompleteActivity(NVISPASN, 36562, STOP)
    NVISP_EDI_856_PREPROCESS_PKG.CompleteParentStop(36562-100101309584-1)
    Wf_Engine_Util.Function_Call(nvisp_edi_856_preprocess_pkg.CompleteParentStop,
    NVISPASN, 36562-100101309584-1, 230620, RUN)
    for ref please find below screen shot.
    and we retry same work flow by clicking retry button on the screen.
    so the work flow was completed successfully.
    and processed one more ASN for this ASN also got same work flow error.
    could you please suggest the solution to avoid this error.
    it is customized work flow but we are getting WF standard error.
    thanks
    raghava

    According to error, it appears that child flow activity trying to push the parent flow notified activity. Could be that parent flow is not ready/notified when child tries to push it.. Check for timings of 1)  begin and end times of child activity 2) begin & end times of parent activity . If this is timing issue, add defer activity for child flow to wait till parent flow comes to required status.

  • CFG0008: Error occured while processing. Possible Cause: URN_NOT_FOUND : urn "JRM" : Not

    Dears , Kindly advise
    I have a server running Ciscoworks LMS 4.2.3 version. Server has been working without any issues.
    Now when I try to go into Netconfig Jobs, I get the following popup:
    CFG0008: Error occured while processing.
    Possible Cause: URN_NOT_FOUND : urn "JRM" : Not found !!
    I've been looking at various threads similar to my situation and tried several, to no avail.

    It may be that the related services are down. Share the output of NMSROOT/bin/pdshow -brief from the server to share service status.
    Many times, it happens when the port required by service is being used by other. Try the following procedure and see it works :
    1.Stop daemon manager: net stop crmdmgtd
    2.Go the location: CSCOpx\MDC\tomcat\webapps\rme\WEB-INF\lib take a copy of the following
    file and them delete them: ctmregistery and ctmregistery.backup
    3.Restart the daemon manager: net start crmdmgtd (wait for 10 minutes)
    Check if everything works fine.
    -Thanks
    Vinod

  • Please wait while ...

    HI ppl,
    Give me some ideas how to display a msg "Please wait while page loads " while jsp page is doing long database operations.
    I know how to achieve this in html pages using javascript when page loads big image but with long database operations javscript trick doesnt works.
    Any thoughts???
    Thanks in advance.

    There is one little sneaky trick that might work, but I'm not sure if this will work all the time. Here's what you do:
    1. page where you fill in a form to store in the database or something. Hit submit
    2. submit to a simple JSP page which has the text you want to show the user, plus all the submitted data in hidden inputs. in the body tag, add an onLoad='document.formname.submit();' to submit the hidden input fields to the page that does the database action.
    The old page SHOULD stay visible until the database operations are completed, as long as you don't generate ANY output before the database transactions are complete... but again don't shoot me if it doesn't (or better yet, shoot the browser for clearing the display buffer to soon) :-)

Maybe you are looking for

  • After installing non mac store application i get error

    hello there i have installed non apple application after i did i get this error ever min i uninstalled this application but i still get this error i want to know if there is a way i fix it with any way like terminal command i write could fix it here

  • Flash player plugin has been blocked

    It also says this Add-ons Extensions  Themes   Collections  More-  Add-ons for Firefox Blocklist Flash Player Plugin between 11.0 and 11.... Flash Player Plugin between 11.0 and 11.7.700.169 (click-to-play) has been blocked for your protection. Why w

  • Older e-mails are not being shown (one week back only)

    Where can I find e-mail older than one week? How can I change the settings to see all e-mails? Thank you all for ideas.

  • Getting Error in Fulfillment

    Hi Jim, I am getting following error in download an ebook from our ebookstore: Error getting license Server communication problem: E_ADEPT_INTERNAL Please suggest me why this error occures? Regards, Mangal Varshney

  • Query to find out the sales order

    Hi All, I need a query to find sales order number against which a serial number is transacted. Can ny one help onthis. Thanks ,