cancel
Showing results for 
Search instead for 
Did you mean: 

BBPstart is not working < urgent >

Former Member
0 Kudos

Hi All,

I successfully configured the bbpstart services and while test the service it is working fine. But whenever i execute the internet service by using the start service of bbpstart in se80 it come with correct login form. whenever i provide the user name and password it throws error ( refer below )

*******************

", in_conf_forIE2: " onunload=\"parent.parent.sessionLauncher.unlock()\" ", in_conf_forIE: " ", autoUnlock: 20, counter: 20, URL: "", isSrvcTypeInternal: true, postLoadingScreenPossible: true, lock: sessionLauncher_lock, unlock: sessionLauncher_unlock, launch: sessionLauncher_launch, countdown: sessionLauncher_countdown, displayConfirmation: sessionLauncher_displayConfirmation, lockWImenu: sessionLauncher_lockWImenu } // ************************************************************************************** // functions for the session management // // ************************************************************************************** function registeredSessions_terminateAll() { // terminate all registered sessions while(this.hasMoreElements()) this.terminateLast(); } function registeredSessions_terminateNow(URL) { // terminates the session imediately requestManager.requestFor(URL); } function registeredSessions_add(URL) { // register session this.sessions[this.sessions.length]=URL; } function registeredSessions_terminateLast() { // terminate last registered session requestManager.requestFor(this.sessions[this.sessions.length-1]) this.sessions[this.sessions.length-1]=null; this.sessions.length--; } function registeredSessions_hasMoreElements() { // are there any session left ? if(this.sessions.length == 0) return false; else return true; } var registeredSessions = { // session object sessions: new Array(), add: registeredSessions_add, terminateLast: registeredSessions_terminateLast, terminateAll: registeredSessions_terminateAll, terminateNow: registeredSessions_terminateNow, hasMoreElements: registeredSessions_hasMoreElements } // ************************************************************************************** // functions for the external window management // // ************************************************************************************** function SRM_KeepAliveWhileExternalWindowOpen(extWindowName){ //alert(this.extWindows.length+' '+extWindowName); if (SAP_ExternalWindowInterface_checkByName(extWindowName)){ dummyImg.src = curWgateURL + "?~okcode=keepAlive&~frameName=IACFRAME"; setTimeout('dummyImg.src = frames[\'application\'].frames[\'IACFrame\'].curWgateURL + \"?~okcode=KEEPALIVE\";',1000); setTimeout('SRM_KeepAliveWhileExternalWindowOpen(\'' + extWindowName + '\')',180000); } } function ExtWindowObject(ref, name, termClose) { // the object which encapsulates the reference of the external window this.winRef = ref; this.name = name; this.termClose = termClose; this.valid = true; } function SAP_ExternalWindowInterfaceObject(refExtWin) { // interface object which contains all the attributes and methods // attributes this.extWindows=refExtWin; // methods this.open=SAP_ExternalWindowInterface_open; this.add=SAP_ExternalWindowInterface_add; this.closeAll=SAP_ExternalWindowInterface_closeAll; this.checkByName=SAP_ExternalWindowInterface_checkByName; this.closeByName=SAP_ExternalWindowInterface_closeByName; this.checkTermClose=SAP_ExternalWindowInterface_checkTermClose; this.closeTermClose=SAP_ExternalWindowInterface_closeTermClose; } function SAP_ExternalWindowInterface_open( url, name, features, termClose ) { // open an external window and adds its reference to the list this.extWindows[this.extWindows.length] = new ExtWindowObject( window.open(url,name,features), name, termClose); } function SAP_ExternalWindowInterface_add( ref, name, termClose) { // adds a given window reference to the list this.extWindows[this.extWindows.length] = new ExtWindowObject( ref, name, termClose); } function SAP_ExternalWindowInterface_closeAll() { // closes all external windows and clean up the list for(var idx=0; idx < this.extWindows.length; idx++){ if(isWinAlive(this.extWindows[idx].winRef)) this.extWindows[idx].winRef.close(); } this.extWindows.length=0; } function SAP_ExternalWindowInterface_closeByName(name) { // closes only the window which has a special name for(var idx=0; idx < this.extWindows.length; idx++){ if(isWinAlive(this.extWindows[idx].winRef) && this.extWindows[idx].name == name ) { this.extWindows[idx].winRef.close(); this.extWindows[idx].winRef=null; } } } function SAP_ExternalWindowInterface_checkByName(name) { // check if a special named window is still open for(var idx=0; idx < this.extWindows.length; idx++){ if(isWinAlive(this.extWindows[idx].winRef) && this.extWindows[idx].name == name ) return true; } return false; } function SAP_ExternalWindowInterface_closeTermClose() { // closes only the window which has a special name for(var idx=0; idx < this.extWindows.length; idx++){ if( this.extWindows[idx].termClose && isWinAlive(this.extWindows[idx].winRef) ) { this.extWindows[idx].winRef.close(); this.extWindows[idx].winRef=null; } } } function SAP_ExternalWindowInterface_checkTermClose() { // check if a special named window is still open for(var idx=0; idx < this.extWindows.length; idx++){ if( this.extWindows[idx].termClose && isWinAlive(this.extWindows[idx].winRef) ) return true; } return false; } // ************************************************************************************** // functions and objects for the frameset generation.................

**************************

Help me to resolve the issue.

Thanks in advance.

Accepted Solutions (0)

Answers (1)

Answers (1)

Soumya
Active Participant
0 Kudos

Hi there..

Was this error resolved?? How ??

Thanks