Lets discuss how to write a JS file in Open UI on application level means it will work for all applets or any view or screens. Now first question arise in someones mind is why we need such a JS file as we can already implement applet level PM-PR files..? Well in my case I need to implement accordion effect…
Category: Siebel Open UI
Siebel Open UI: Invoke Business Service from PM file
Hello friends…My manager ask me to invoke a BS from PM file, get output to show it on UI using PR. Well it looks simple as we can find few lines from bookshelf, how to call BS from PR but believe me its not that much easy. I am using 8.11, so this post talks about that only. Lets go…
PM PR file is not working in IE 9
After upgrading to 8.1.1.10/11, everyone wants to customize their application using PM PR files. But most of the time their PM PR code is not working in Internet Explorer, same happened with us…. Issue: PM PR file is not working in IE 9 untill we opened inspect element (F12) Cause:
Radio Button Bug in Siebel 8.1.1.11
Radio Button Bug in Siebel 8.1.1.11 Problem Summary Radio Button not showing its actual value while record navigation in form applet in Siebel 8.1.1.11 (Open UI). Its working fine in HI mode. Problem Description
Siebel 8.1.1.10 Upgrade Issues Part – 4
[su_note note_color=”#cacab7″]File could not be created as the directory specified for the file creation is not valid.(SBL-EAI-50228)[/su_note] [su_spacer size=”50″] Issue/Error: SBL-EAI-50228. Root Cause: Siebel Upgrade Effort/Impact: Very High Resolution: To resolve the issue, you need to alter or add this parameter: EAIFileTransportFolders = <folder where the xml file will be generated>. Local: Add below line in cfg file under this section [EAIFileTransportConfigSubsys] EAIFileTransportFolders…
Siebel 8.1.1.10 Upgrade Issues Part – 3
AddRecord method not Working in Siebel 8.1.1.10 Issue/Error: AddRecord doesn’t work in Server side script. Root Cause: Siebel Upgrade Effort/Impact: Very High Resolution: We need to replace AddRecord with AddRecords as method name has been changed in 8.1.1.10 upgrade. Anyone could face this issue in any applet with scripts. In our case,when user select invoices from…
Example of How Siebel Open UI Identifies the JavaScript Files It Must Download
Explanation of Callouts The example manifest administration includes the following items: 1The Files list specifies the siebel/custom/recyclebinpmodel.js file. 2The presentation model specifies siebel/custom/recyclebinpmodel when it calls the define method. Note: Its a refrence from Siebel 8.1/8.2 Bookshelf. [su_divider] Thanks for subscribing to SimplySiebel.
Siebel 8.1.1.10 Upgrade Issues Part – 2
SetProfileAttr not Working in Siebel 8.1.1.10 Possibly Oracle disable as a security fix. It can be enable but its not recommended while it could be requisite for any existing project. Issue/Error: SetProfileAttrib doesn’t work in Browser side script. Root Cause: Siebel Upgrade Effort/Impact: High Resolution: SetProfileAttr() access can be turned on by setting…
Siebel 8.1.1.10 Upgrade Issues Part – 1
Guys i am starting a series of Siebel 8.1.1.10 Upgrade Issues which are commonly faced by users who started with this upgrade.Lets start with the first one…. Issue/Error: Checkbox in form applet not showing as checked. Root Cause: Siebel Upgrade. Effort/Impact: High Resolution: 1. Stop the Web Server & Siebel servers or Mobile Web/Dedicated Client. 2. Make a backup of <Siebel_Root>siebsrvrWEBMASTERimages directory. 3. Download file IE8Images.zip…
Siebel Open UI: Open a pop up applet on mouseover of field caption
In other words, we can say that we need to open a Pick Applet on mouseover of field caption. I know its a simple requirement for a Siebel developer using browser script. But here, we are trying to implement this using PM-PR files in Open UI. If we remember, on click of a button control in a form applet, we…