siebeldev.blogspot.com
Siebel Developer: 3/7/10 - 3/14/10
http://siebeldev.blogspot.com/2010_03_07_archive.html
Tips and Tricks for Siebel development from an expert in the field. Friday, March 12, 2010. Interview Question #2 - What is a Siebel Operation Step? This interview question uses a technical term to test a Siebel Developer's understanding of a topic. "Siebel Operation" can be almost anything to someone who does not have a basic familiarity with Siebel Workflow, but it is an everyday term for any Workflow Developer. Q: Please explain what a Siebel Operation is, and how it is used. Workflow Process Steps op...
siebeldev.blogspot.com
Siebel Developer: Workflow Policies vs Workflow Processes
http://siebeldev.blogspot.com/2010/04/workflow-policies-vs-workflow-processes.html
Tips and Tricks for Siebel development from an expert in the field. Saturday, September 4, 2010. Workflow Policies vs Workflow Processes. A Workflow Process is a program that runs on the Siebel server. It is defined through a graphical interface as a set of steps. When the process runs, a single record is processed. The workflow process steps are performed as a series of data operations. Do not be confused between the Business Object that is part of the Workflow Process definition and the Workflow Policy...
siebeldev.blogspot.com
Siebel Developer: 4/26/09 - 5/3/09
http://siebeldev.blogspot.com/2009_04_26_archive.html
Tips and Tricks for Siebel development from an expert in the field. Friday, May 1, 2009. Get Rid of Dead Code. How many Siebel developers believe that the best way to remove lines of code from an existing script is to put some comment characters in front of the un-needed code, preventing it from executing. Many developers will copy an existing line of code to change an operation or add a condition, "commenting" the original version instead of deleting it. - Added 5/3. Subscribe to: Posts (Atom). Siebel C...
siebeldev.blogspot.com
Siebel Developer: 9/6/09 - 9/13/09
http://siebeldev.blogspot.com/2009_09_06_archive.html
Tips and Tricks for Siebel development from an expert in the field. Monday, September 7, 2009. Setting the SSA Primary Field. When I started configuring Siebel, I was mostly self-taught, which means that I usually settled for the first way I found of accomplishing my goal. Setting the primary record on a multi-value group through script is one example. The SSA Primary field does not correspond directly to a database column. The SSA Primary field is editable. Using the SSA Primary field, here is the corre...
siebeldev.blogspot.com
Siebel Developer: New Siebel Administration Book
http://siebeldev.blogspot.com/2010/09/new-siebel-administration-book.html
Tips and Tricks for Siebel development from an expert in the field. Tuesday, September 7, 2010. New Siebel Administration Book. There are few Siebel books on the market, so when I found out about a book by the author of one of my favorite Siebel blogs. I wanted to write a review right away. Oracle Siebel CRM 8 Installation and Management. By Alexander Hansal, is an introduction to many of the key administrative tasks in short, easy-to-understand sections. September 20, 2010 at 12:29 AM. I am a Siebel Adm...
siebeldev.blogspot.com
Siebel Developer: 4/19/09 - 4/26/09
http://siebeldev.blogspot.com/2009_04_19_archive.html
Tips and Tricks for Siebel development from an expert in the field. Thursday, April 23, 2009. A Regular Expression Validation. Data Validation Manager is great, but what would validation be without Regular Expressions? Here's how I used both to meet a business requirement. Step 1: Create a Business Service. Create a new Business Service with a method containing the following code snippet:. Var sPattern = Inputs.GetProperty("Pattern");. Var sSample = Inputs.GetProperty("Sample");. InvokeServiceMethod("ABC...
siebeldev.blogspot.com
Siebel Developer: Launching a Workflow Process from a Business Component
http://siebeldev.blogspot.com/2010/11/launching-workflow-process-from.html
Tips and Tricks for Siebel development from an expert in the field. Tuesday, November 23, 2010. Launching a Workflow Process from a Business Component. An example of using the applet version of the Named Method. User property to invoke a workflow process can be found in Siebel Bookshelf. The same user property is available for business components. An example of a named method declaration follows:. User property. For example:. On Field Update Invoke 1. Work Phone Number", "Employee", "MyInvokeWFMehod".
siebeldev.blogspot.com
Siebel Developer: 11/21/10 - 11/28/10
http://siebeldev.blogspot.com/2010_11_21_archive.html
Tips and Tricks for Siebel development from an expert in the field. Tuesday, November 23, 2010. Launching a Workflow Process from a Business Component. An example of using the applet version of the Named Method. User property to invoke a workflow process can be found in Siebel Bookshelf. The same user property is available for business components. An example of a named method declaration follows:. User property. For example:. On Field Update Invoke 1. Work Phone Number", "Employee", "MyInvokeWFMehod".
siebeldev.blogspot.com
Siebel Developer: 1/17/10 - 1/24/10
http://siebeldev.blogspot.com/2010_01_17_archive.html
Tips and Tricks for Siebel development from an expert in the field. Wednesday, January 20, 2010. Simple Input Validation through HTML Attributes. A Siebel form applet is an HTML form, and the controls are input elements on those forms. The HTML Attributes property of a Control object provides an opportunity to insert a JavaScript event to the input element. OnkeyUp="if(/[ 0-9 -]/.test(this.value) ){ alert('The Social Security Number field accepts only numeric data.'); this.value=' ;}". The above validati...
siebeldev.blogspot.com
Siebel Developer: 4/4/10 - 4/11/10
http://siebeldev.blogspot.com/2010_04_04_archive.html
Tips and Tricks for Siebel development from an expert in the field. Monday, April 5, 2010. Abstracting Database Passwords in Batch Scripts. Scripts invoking the Siebel Server Manager command-line interface can be a powerful tool for automating server tasks, but connecting to the command-line interface on a Windows server requires the following syntax:. Srvrmgr /g gateway1 /e enterprise1 /s server1 /u sadmin /p sadmin. In the above command the /u and /p arguments require a valid username and password usin...