Tag: Siebel Open UI Tools

Innovation Pack 16: Enable Workspaces in Composer and Siebel Tools

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…

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…