Java Script Errors on Siebel Sales and Call Center Login Pages

Hello,
This only happens with some users, but not all of them.
When we first open the login screen in TRIAL we get several Internet Explorer errors.
1. Line: 1153
Char: 16
Error: Expected ')'
Code: 0
URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
2. Line: 59
Char: 1
Error: Object expected
Code: 0
URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
3. Line: 13
Char: 1
Error: Object expected
Code: 0
URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
4. Line: 30
Char: 1
Error: Object expected
Code: 0
URL: http://topaxsear009.iss.bnr.com/callcenter_enu/start.swe?SWECmd=Start&SWEHo=topaxsear009.iss.bnr.com
Once we enter our login credentials and click the login button or press Enter nothing happens. No Siebel errors are shown and the login page does not react. No additional IE errors are thrown either.
As mentioned earlier, this does not happen to everyone that tries to log in to Trial. This also does not happen in Dev or Prod. Also, this only occurs in Thin Client. We are able to log into Thick Client which leads me to believe it is a web server issue.
Has anyone ever seen this behavior beenbefore and what would cause this to occur?
Thanks,
Andrea Thomas
(817) 352-0175
[email protected]

There isn't any browser script on the Siebel Sales Enterprise or the Siebel Universal Agent Applications.
We have the following script in the Application_Start function on the Siebel Sales Enterprise and Siebel Universal Agent Applications:
function Application_Start (CommandLine)
var sysDate = new Date();
//var sDate = Date("2003","10","16","03","00","00");
//var sDate = ((sysDate.getMonth() + 1) + "/" + sysDate.getDate() + "/" + sysDate.getFullYear());
var sDate = (sysDate.getMonth() + 1) + "/" + sysDate.getDate() + "/" + sysDate.getFullYear() +" "+sysDate.getHours()+":"+sysDate.getMinutes()+":"+sysDate.getSeconds();
var sLogin = TheApplication().LoginName();
var ZepBO = TheApplication().GetBusObject("ZephyrUsage-BNSF");
var ZepBC = ZepBO.GetBusComp("ZephyrUsage-BNSF");
var sLastError = "" ;
     try
     ZepBC.SetViewMode(AllView);
     ZepBC.ClearToQuery();
     ZepBC.ActivateField("Login Name");
     ZepBC.ActivateField("Recent Login");
     ZepBC.ActivateField("Previous Login");
     ZepBC.SetSearchSpec("Login Name",TheApplication().LoginName());
     ZepBC.ExecuteQuery(ForwardBackward);
     var sflg = ZepBC.FirstRecord();
          if(sflg == true)
               ZepBC.SetFieldValue("Previous Login",ZepBC.GetFieldValue("Recent Login"));
               ZepBC.SetFieldValue("Recent Login",sDate);
               ZepBC.WriteRecord();
               ZepBC = null;
               ZepBO = null;
     catch(e)
          e=null;
     finally
          ZepBC = null;
          ZepBO = null;
We have the following script in the Application_Close function on the Siebel Sales Enterprise Siebel Universal Agent Applications:
function Application_Close ()
var sysDate = new Date();
var sDate = (sysDate.getMonth() + 1) + "/" + sysDate.getDate() + "/" + sysDate.getFullYear() +" "+sysDate.getHours()+":"+sysDate.getMinutes()+":"+sysDate.getSeconds();
var sLogin = TheApplication().LoginName();
var ZepBO = TheApplication().GetBusObject("ZephyrUsage-BNSF");
var ZepBC = ZepBO.GetBusComp("ZephyrUsage-BNSF");
var sLastError = "" ;
//var fp = Clib.fopen('d:\\AppScript.txt', 'wt');
//Clib.fputs('\n I am UnGracefully Closed', fp);
//Clib.fclose(fp);
     try
     ZepBC.SetViewMode(AllView);
     ZepBC.ClearToQuery();
     ZepBC.ActivateField("Login Name");
     ZepBC.ActivateField("Last Logout");
     ZepBC.SetSearchSpec("Login Name",TheApplication().LoginName());
     ZepBC.ExecuteQuery(ForwardBackward);
     var sflg = ZepBC.FirstRecord();
          if(sflg == true)
               ZepBC.SetFieldValue("Last Logout",sDate);
               ZepBC.WriteRecord();
               ZepBC = null;
               ZepBO = null;
     catch(e)
          e=null;
     finally
          ZepBC = null;
          ZepBO = null;
We have the following script in the general declarations of the Siebel Sales Enterprise Siebel Universal Agent Applications:
//     8/20/01 Melissa Ahluwalia
//     Define global variables for the VBC connections
//     MA 8/1/2 - Add global variable for URL
var gOLTP;
var gOLAP;
var gURL;
var LOVBC;
// CS Project: Yash: 09/16/2004
var gEqUndoRecord;
//Aditya CS REDESIGN
var gEnforceSRReqFields;
var gForceSRInput;
var gRunSREquipmentAutoTrace;
TheApplication().SetSharedGlobal("gEqUndoRecord", "N");
TheApplication().SetSharedGlobal("gEnforceSRReqFields", "Y");
TheApplication().SetSharedGlobal("gForceSRInput", "N");
TheApplication().SetSharedGlobal("gRunSREquipmentAutoTrace", "Y");
     LOVBC = TheApplication().GetBusObject("List Of Values").GetBusComp("List Of Values");
                         LOVBC.SetViewMode(AllView);
                         LOVBC.ClearToQuery();
                         LOVBC.ActivateField("Type");
                         LOVBC.ActivateField("Value");
                         LOVBC.ActivateField("Active");
                         LOVBC.SetSearchSpec("Active", "Y");
                         LOVBC.SetSearchSpec("Type", "BNSF_CONNECT_OLTP");
                         LOVBC.ExecuteQuery(ForwardBackward);
                         LOVBC.FirstRecord();
     TheApplication().SetSharedGlobal("gOLTP", LOVBC.GetFieldValue("Value"));
                         LOVBC.SetSearchSpec("Type", "BNSF_CONNECT_OLAP");
                         LOVBC.SetSearchSpec("Active", "Y");
                         LOVBC.ExecuteQuery(ForwardBackward);
                         LOVBC.FirstRecord();
     TheApplication().SetSharedGlobal("gOLAP", LOVBC.GetFieldValue("Value"));
                         LOVBC.SetSearchSpec("Type", "BNSF_CONNECT_URL");
                         LOVBC.SetSearchSpec("Active", "Y");
                         LOVBC.ExecuteQuery(ForwardBackward);
                         LOVBC.FirstRecord();
     TheApplication().SetSharedGlobal("gURL", LOVBC.GetFieldValue("Value"));
//     LOVBC = '';
LOVBC = null;
The following script is in the function EmpAvailability in the general section of the Siebel Universal Agent Application:
function EmpAvailability(sLogin, sStatus)
     //Availability Setting
     var EmpBO = TheApplication().GetBusObject("Employee")
     var EmpBC = EmpBO.GetBusComp("Employee");
     EmpBC.SetViewMode(AllView);
     EmpBC.ClearToQuery();
     EmpBC.ActivateField("Login Name");
     EmpBC.ActivateField("Availability Status");
     EmpBC.SetSearchSpec("Login Name", sLogin);
     EmpBC.ExecuteQuery(ForwardBackward);
     var bRec = EmpBC.FirstRecord();
     if (bRec == true)
          EmpBC.SetFieldValue("Availability Status", sStatus);
          EmpBC.WriteRecord();
     EmpBC = null;
     EmpBO = null;
}

Similar Messages

  • Getting Java Script error:(0) in travel and expenses in ESS

    Hi All,
       I  had one issue in ESS Travel and expenses ,when I am clicking on Travel and Expenses ->Moment  Order
       After giving the details I am clicking On -->Add Flight   ,after that it is giving blank screen
       in bottom of the line getting error : java script error :(0)
           Please share your knowledge ..
    Thanks,
    Sony.
    << moved by moderator - check out the list of other forums on top of portal forum >>
    http://forums.sdn.sap.com/thread.jspa?threadID=1239838&tstart=0
    Edited by: Anja Engelhardt on Feb 15, 2012 1:06 PM

    Hi,
    Please take help of Basis team and IT team for updating JAVA in your system for ESS.
    And also get it checked by Basis team if the correct internet explorer version is applied to the system you are using for employee self service.

  • Error in OAM Identity and Access Servers login pages

    Hi All,
    I am trying to install OAM I completed all installations . But now am getting error as invalid "*Invalid credential*". IS there any process to know what the userid and password for the both Identity and Access Servers . Please tell me if there is any process. It very helpful to me .
    Thank u & Regards
    Pokuri

    Hi Pokuri,
    Could be that the searchbase is wrong, so that OAM is not finding the user whose credentials you are entering. Or, maybe OAM is using a different attribute as the login attribute (for example, you could be entering the cn when OAM is expecting the uid).
    Try binding to ldap with another utility (such as ldapbind or ldapsearch) to see if this gives any indications. You may need to reconfigure the Identity Server to verify/correct the searchbase (for this, follow note 730376.1) and to check which attribute has the "Login" semantic type in OAM.
    Regards,
    Colin

  • All-11-otn4.js - Page Stops responding due to Java script error

    Hi,
    I am getting java script error in all-11-otn4.js. My page becomes unresponisve and I am getting the cause as all-11-otn4.js file. After this error I cannot do any thing in page, I need to restart IE.
    I am navigating from one View state to another View state and then again comming back to original view state. When I am comming back to Original View state, I am getting this error.
    - Sujay

    Hi,
    what you describe doesn't help solving the issue. What do you mean by "I am navigating from one View state to another View state" ? Also it seems that you on a non production version of JDeveloper11 (TP4), so can you pelase try a production version ?
    Frank

  • Getting tha java script error while calling OAF forms in ADF

    Hi ,
    I am trying to get/access the Oracle forms in ADF page.
    I am following http://static.commit-consulting.com/oraformsfaces developers guide for guidlines.
    while runnign my page getting the error in popup look like java script error.
    the pop up contente is :
    Failed to execute java script
    Check for JavaScript errors, if the Forms server is running and if your browser can download a javaScript from http://bdc6oracle001.gdnindia.com:8005/forms/frmservlet?config=OraFormsFaces
    http://bdc6oracle001.gdnindia.com:8005/forms/frmservlet?config=OraFormsFaces is my server EBS server where oracle forms exist.
    Please help me on this.
    Thanks,
    MadhavaReddy

    You're probably better off asking the OraFormsFaces people for help

  • Updated to Firefox 35.0 recently and I keep getting a Java Application error message everytime I pull up a new page

    This is more of a heads-up rather than a ques
    tion.
    I recently update Firefox to version 35. My computer operating system is Windows 7 Starter. Since adding the update every page I pull up I get a Java script error message "Error: 'console' getter called on an object that does not implement window interface."
    I followed the steps for trouble shooting extensions and managed to isolate the problem. It was an add-on extension for Youtube Auto HD 1.4. The message no longer pops up.
    I hope others out there find this helpful.

    Sorry didn't noticed it was solved.

  • Java Script Error

    Saved various websites which I was researching a trip with and about a week later opened them all up and got this error.
    Java Script: error in konaSafe reporting   it gave me the option to click OK which I did and it repeated itself 3 times before it quit.
    Any idea what is happening here
    Thanks

    I'm using Safari 5.1.7 and I'm using Snow Leopard 10.6.8 Intel.
    Ok I did a bit more experimenting and it turned out to be just one of the half a dozen web sites that I had archived during my research for a trip.
    When I had gone back to them and opened them up I did so as a block and that's when I got the error.
    This time I opened them one by one and found that just one of them was the culprit.
    It appeared that somehow an Add company called Invite had superimposed a Lufthanser rental add across part of the website which prevented me from using the website until I had clicked on their rental link.
    I searched for and  brought up the original website from Google and it opened up without the Add and I didn't get the Java Script error.
    Don't know just why only one of my original saved websites was affected but I'm sure that the Add by Invite had been the problem.   I have now opted out of that company's add program not that I had ever opted in.
    Thanks Brody for the suggestions and help.

  • When opening firefox 3.6.8 I get a java script error at line 323

    When trying to open Firefox 3.6.8, I get a java script error:
    [JavaScript Error: "dir is null" {file: "file:///C:/Users/My%20Computer/AppData/Roaming/Mozilla/Firefox/Profiles/lk5mbar9.default/extensions/%7B0538E3E3-7E9B-4d49-8831-A227C80A7AD3%7D/components/nsForecastfox.js" line: 323}]' when calling method: [ffIDiskService::get]
    If I cancel the error message, FF opens, but then my google search bar will not search & then FF freezes up. I'm using Windows7.

    That is a problem with the Forecastfox extension.
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • When I click on firefox I get a java script error that says "TypeError: Components.classes[TvtPwmComponent_CID] is undefined", what does that mean?

    Whenever I click on firefox, or when a pop-up occurs, I get a java script error that says, "TypeError: Components.classes[TvtPwmComponent_CID] is undefined". I don't know why. It first occurred while I was on ESPN while trying to watch college games live.

    This issue can be caused by an extension that isn't working properly.
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • Java Script Error while deploying a Model with Value Help

    Hi,
    I am using EP 7.0 SP 10.
    I am trying to deploy a model which includes the Value Help for an Input field, and i am trying to deploy this model.
    The model compiles successfully, but gives a Java Script Error while deploying the model,
    ! Error on Page
    When Click on this java script error, it shows that ,
    Line:14985
    Char 1: Error
    object does n't support this property or method.
    code
    URL: <serverhost>/VCRes/WebContent/VisualComposer6.0/bin/223334.htm?24102006.1712.
    The Same model works in dev server, and it fails in the production server.
    Thanks and Regards,
    Sekar

    Hi jakob,
    Thankyou for your quick response.
    I did a basic model with the help of a documentation which i got from this forums.I created a iView and from there i used Bapi "BAPI_SALESORDER ".
    I created a Input Form and a outpot form (table view).I tested model and am able to get the output.but when i try to deploy it is giving me the error.
    And i think am not paring any formulas here.
    Please guide me.
    thanks and regrads
    Pradeep.B

  • Keep getting java script errors in DW CS3

    I have been using Dreamweaver CS3 and had not had problems up to last month or so. Now I keep getting Java errors and java script errors whenever i try to put a file to my site or even on some task boxes that have undefined in the command box instead of the normal command. I am wondering if downloading product again could help but i worry about licensing problem. It seems like there is no support for CS3 Dreamweaver.
    I resent the fact i may have to upgrade to Dreamweaver CS5. IF I do can I just upgrade Dreamweaver and not the other programs as part of the web design suite? My last upgrade was the CS3 web design suite.
    Gary

    Thanks for the suggestion, I followed the links and instructions and still have same problem. Very frustrating as I cannot get any phone support, actually i was told Dreamweaver CS3 is not being supported anymore, and I was directed to this forum.
    Kind of makes me not like Adobe and I am going to search for another web building program. Once I calm down I may consider just upgrading to CS 5 Dreamweaver. Do I have to upgrade the entire Web Design suite or can I just upgrade Dreamweaver?
    Another option is to try and reinstall but I worry I can run into licensing problems (I think I ran into this before as destop and laptop crashed and had to reinstall).
    Gary

  • Installation of Adobe Flash 11.7.700.169 fails w/Java script errors

    I am getting very frustrated with Adobe software, it seems that nearly every time I try to update my flash player the update Flash player process fails with a java script error.
    I currently am running Adobe Flash player: 11.6.602.180
    My system is running 32-bit Windows XP, SP3, all patches to date, IE v8.0.6001.18702.
    When I try to install the Adobe Flash player update to 11.7.700.169 the process always fails with the following....
    A pop up to the screen from IE, titled: "Internet Explorer Script Error"
    The  message displayed on the screen is:
       An error has occured on the script on this page.
       Line: 1
       Char: 15965
       Error: Object Expected
      Code: 0
      URL: http://127.0.0.1/app/_js/adobe.js
    Do you want to continue running scripts on this page? <Yes>/<No>
    No matter what choice I make the install fails (choosing yes causes more Script Error messages to appear, before it finally hangs).
    I have followed the steps suggested on the 'Troubleshooting page', yes Active Scripts are enabled within IE
    I also have tried turning off all AV and Firewalls when performing installation, yet I get the same errors.
    Thanks,
    Mark Reynolds

    Download and run the offline installer from http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html#mai n-pars_header

  • Java Script Error in downloading CS3 Master Collection

    I just bought a new MacBook Pro and I went to download my CS3 Master Collection. In the middle of downloading Disc 1 I got a kernel telling my to push the power button until the computer shuts off and turn it on again. Then when I tried to redownload Disc 1 it gives me an error message. "Java Script Error and says to download using the original media, but I AM using the ORIGINAL MEDIA. Anyone ever have this problem? I already tried pulling out the partial download from applications but it did not help. I cannot use my CS3 Master Collection now unless I figure out how to fix this problem.

    clear your adobe.com cookies or use a different browser or dl from prodesigntools.com
    to dl from prodesigntools.com:
    if you follow all 7 steps you can directly download a trial here:  Download Adobe CS4 and CS3 Free Trials Here (incl. After Effects) | ProDesignTools
    and activate with your serial number.
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

  • How do i disable a java script error that pops up everytime i click on something?

    java script error Error: Permission denied to access property 'host'
    this continues to come up every time i click on something. this has only started since i downloaded firefox 4.0. how do i disable the pop up or do i just stop using 4.0? would go back to the last version but when i try to download that i'm told the files are corrupted

    Create a new profile exclusively for the 4.0 beta version and create a desktop shortcut with -P "profile" appended to the target to launch that profile.
    * http://kb.mozillazine.org/Testing_pre-release_versions
    * http://kb.mozillazine.org/Creating_a_new_Firefox_profile_on_Windows
    * http://kb.mozillazine.org/Shortcut_to_a_specific_profile
    * http://kb.mozillazine.org/Using_multiple_profiles_-_Firefox

  • I get a java script error saying my password is incorrect?

    when I start Firefox 5 a pop says" java script error password my be invalid try typing in your email address" no idea what it is talking about

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

Maybe you are looking for