To replace local database concept used for development for years, workspace intoduced in Siebel 16. Developers can work directly against the repository in their independent sandboxes. Here is the snapshots of workspace in tools and web composer. [su_slider source=”media: 974,973,972,975,971,970,969″ link=”lightbox” target=”blank” width=”1420″ height=”700″] You can follow below video to better understand this, Thanks to SIEBEL HUB for their sincere…
Tag: Siebel Open UI Tools
Siebel Tools on Web :: Future of Siebel
[su_youtube url=”https://www.youtube.com/watch?v=syAbKqHwIhw” width=”600″ height=”500″]
Thanks Breschi for sharing this video !!
How to replace Buttons with ICONS in Innovation Pack 2014
In older days of Siebel, If we need to add images on buttons then we must create Bitmaps & Html Icon Map to register that image. And then add it to applet controls wherever we want it. But with IP 2014, all we need is 3-4 lines of CSS codes only. Actually we are not using images here, we will…
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…
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: Hide column in List Applet using JQGRID methods
This post is related to my last post. Requirement: Hide a column permanently in a List Applet which is mandatory to expose on Applet. Possible Solutions: Check Show in List property in applet list control. By checking this, column will be not be visible but available in Column Displayed option. Check Hidden property in applet list control. Using this, control…
How to use LinkedIn API to get its relevant data ??
Up to my last post, we have created our app on LinkedIn and able to authorize it. Now, time to hit APIs and get data. In this post, we will try to understand about LinkedIn PeopleSearch API. This is how it looks like… IN.API.PeopleSearch() .params({“first-name”:”Barack”}) .fields([“firstName”,”headline”]) .result(function(result) { alert JSON.stringify(result)) } fields() (optional) – Array {String}, Argument…