Well we got many ways to interact with user from Browser Script or using OpenUI PM/PR files. But what if we are restricted to use any of these and we need this interaction from Server end only. And yes we have very limited options and that too.. well hidden Vanilla Business Services, although you can find few articles on web…
Tag: Siebel Configuration
Siebel IP 2014: Customize Buttons with Icons using Google Web Fonts
If you ever got a chance to work upon Innovation Pack 2014, you must amazed with all brand new features it loaded with. As per my experience, while working 8.1.1.11 this is the exact expectations of our client (Fully Responsive, Flashy Icons etc) which we somehow not able to complete. Anyway, the most amazing feature now , about what I…
Innovation Pack 2014: How to restrict menu navigation control for a user group ??
Innovation Pack 2014 provides a single theme “Aurora” and three options for menu navigation controls. User can change it whatever he/she likes, from User Preferences -> Behavior. Change Navigation control from Behavior and refresh application to get the change. TAB Layout HAMBURGER Navigation Layout TREE Layout Suppose we want to restrict Tree Navigation from ADMIN user only. That means…
IP 2014: Adding Presentation Model Properties That Siebel Servers Send to Client side
In earlier Siebel Open UI versions, we are missing this feature to set user properties from server side (or tools) which we can use directly in our Presentation Model and Physical Renderer files. In Innovation Pack 2014, Oracle has extended this feature. Now we can set properties in Applet/Views User Properties and can access in PM/PR files. For Applets Tools…
IP 2014: Features overview and changed in Siebel Open UI
Here is the list of features that added or modified in Open UI to make it comparable to HI. Open UI deviates for specific features from the way Siebel has worked in the past. This should be considered when implementing Open UI, Modern Controls • Grid / forms • Map Integration ability (requires configuration) • URL Integration • Date and…
Installing Siebel CRM IP 2014
For all Open UI freaks, here is the big news. We got Siebel Innovation Pack 2014 released fully loaded with all HI features and leaving all shortcomings far behind. Well I got late to announce this.. 😛 Our installation include below items: Siebel Developer/Mobile Web Client Siebel Tools Siebel Sample Database If you already installed 8.1.1.11, its easier for you.…
Siebel Open UI and Object Oriented Javascript Programming
In my last post, I had explained OOPs concept in Javascript. Now, I will pick one sample PR file of Siebel Open UI and try to explain its relevance with Object Oriented Programming. Please check my last post first to understand this one better. In this post, below are the well defined snapshots of a sample PR with all its…
Introduction to Object Oriented Programming | JavaScript
My Guruji told me if you really want to do better in Siebel OpenUI, then you should learn Object Oriented Javascript. Usually, whatever concept or methods in Javascript I need, just GOOGLE it and got the answer. But seriously thats not enough..!!! In Siebel OpenUI, all vanilla JS files and any custom PM/PR files are purely based on Object Oriented…
Siebel OpenUI: Adding FilterToolbar in List Applet using JqGrid
Hope you guys like my last post, exploring further I got more interesting feature we can have in our Siebel List Applets with a single line of code only. For all new buddies, let me explain here that with Siebel OpenUI upgrade we have a lot of jQuery plugins used as vanilla files in Siebel. JQGrid is one of them…
Siebel Open UI: How to invoke PM’s method from PR based on some events
Whoever working on Siebel Open UI developement feels like calling Presentation Models’ methods based on some events triggered in Physical Renderer. Lets dig out with a scenario… Requirement: We want to save values of a custom control (say radio button) on click of Save button in a form applet. Pre requisites: We should know how to create custom controls and…