Posts

Siebel eScripts: Getting System Date Time

 Siebel Working   Working with Date Time Objects is a very easy and sophisticate in Siebel eScripts function getcurrentDateString(dateObj){           var year = dateObj.getFullYear();           var month = dateObj.getMonth();           var date = dateObj.getDate();           var hours = dateObj.getHours();           var minutes = dateObj.getMinutes();           var seconds = dateObj.getSeconds();                     month = month - (-1);                     dateString = month+ "/"+ date + "/" + year + " " + hours + ":" + minutes + ":" + seconds;                     return dateString;      }

Oracle Siebel: Architecture

Image
Oracle Siebel Oracle Siebel is an CRM ( Customer Relationship Management) Tool, Which is totally robust and can be easily modified as per the business requirements. Although, it needs a sharp hands to work with it and it's started gaining some potential clients attention. Apart from its management capabilities, the thing which makes Siebel a market leader is its cloud availability and Web-Based Development Environment. Oracle is providing CRM on Demand services for the past 5 years and is undeniably working well. Siebel Architecture Siebel Architecture is a 5 layer based architecture which can be easily integrated to each other internally. To Understand the Siebel Architecture we will go from bottom-to-up. 1) Table: A Table is the basic component of any technology to store the data. It is the first and Bottom most layer of the Siebel Tools Just like any other Database tool Siebel also works with the RDBMS (Relational Database Management System) to store and process the Data. 2)...