Tag: siebel open ui examples

Siebel OpenUI: Hiding a Column in List Applet

It seems to be pretty simple and may be stupid  requirement but its a possiblity that you need to expose some Field on applet web layout and in same time you don’t want it to be visible. Well in OpenUI enhancements, we can access only those fields in PM/PR which are mapped in web layout of applet or you can…

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…

Authorize your connection with LinkedIn using your App

This post is in continuation of my last Siebel Open UI example to integrate LinkedIn in Siebel Open UI, please refer this first. Lets start with actual PM-PR coding, till now we have created our app on LinkedIn to connect with. Now from Presentation Model we need to call AUTH API of LinkedIn to authorize our access by using our…

Siebel Open UI: How to integrate LinkedIn in Siebel ??

One of my blog’s reader asked me, How to integrate Facebook into Siebel ?? I thought what kind of requirement it could be, then I came up with a scenario where we can innovate, and dazzle our Siebel Clients…. But I have never implemented any Social integration using EAI concepts, but with the help of Siebel Open UI we gonna implement LinkedIN…

What is Bootstrap ??

I know you might not interested in these details but if you are using some technology then you should know details about it. What is Bootstrap Bootstrap is an open-source Javascript framework developed by the team at Twitter. It is a combination of HTML, CSS, and Javascript code designed to help build user interface components. Bootstrap was also programmed to…

Siebel Open UI: Sample PM (Presentation Model) Template with detailed explaination

In my last post, tried to explain PR step by step. Hope it helps you. Lets try to explore PM in this post in details, scene by scene. [su_label]Scene 1:[/su_label] [su_lightbox type=”image” src=”http://askmesiebel.com/wp-content/uploads/2014/06/PM1.jpg”] [/su_lightbox] Line#5: define a name to your first PM say MyFirstPM Line#9: it has two parts, in first mention relative path to your file and in 2nd…