GetService and theApplication() are Not Working In Browser Script In Siebel 8.1.1.11 (SIA)
GetService and theApplication() are Not Working In Browser Script In Siebel 8.1.1.11 (SIA) SOLUTION Engineering Team is currently working on fixing these issues. In the mean while you can use the below work around. The work around requires changing a standard .js file from the Siebel Client framework. Files to be modified: $siebsrvr_location$\webmaster\siebel_build\scripts\applicationshadow.js Steps to apply the fix 1. Replace the function theApplication() implementation in applicationshadow.js with the below change. Existing implementation of the function theApplication() function theApplication () { if ( App() == null ) return null; if(SiebelAppFacade != undefined && SiebelAppFacade.InterfaceSI != undefined && SiebelAppFacade.InterfaceSI.App != undefined) return App().GetShadow(); else retu...