0% found this document useful (0 votes)
42 views2 pages

Where Do We Write EScript in Siebel

We can write eScript in Siebel in several areas including applets, business components, and business services. Client business services allow writing script for the business service directly in the client without needing to compile. The CanInvoke method is used before invoking a method to validate conditions and determine if the method should be invoked. While business services can be called by workflows, custom application methods cannot, so business services are generally preferred over custom application level methods. Browser script is recommended for user interaction and data validation limited to the current record, while server script is recommended for data access beyond the current record.

Uploaded by

sanjeev kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
42 views2 pages

Where Do We Write EScript in Siebel

We can write eScript in Siebel in several areas including applets, business components, and business services. Client business services allow writing script for the business service directly in the client without needing to compile. The CanInvoke method is used before invoking a method to validate conditions and determine if the method should be invoked. While business services can be called by workflows, custom application methods cannot, so business services are generally preferred over custom application level methods. Browser script is recommended for user interaction and data validation limited to the current record, while server script is recommended for data access beyond the current record.

Uploaded by

sanjeev kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

Where do we write eScript in Siebel?

We can write Browser or Server Script in following areas based on the requirement.
• Applet
• Business Component
• Business Service

· What is Client Business Service?


We can see the Business Services Client also. These are called Client Business Services we can
see them in Business Service Administration Screens. We can write the script for the BS in the
client itself. After writing the BS there is no need to compile those BS's.

· When do you use "CanInvoke(False/True)" method in scripting?


We use it before invoking a method in PreCanInvoke Event and verify a condition. Based on the
result, we can make the method Invoke =True/False. It is just like validating a condition before
invoking the method.

· What is the Alternative for Business Service?


An alternative to writing a business service is to write the method at the application level. Siebel
Systems encourages developers to use business services, as they can be called by workflow
processes; as we cannot call custom application level methods.

· When to User Browser and Server Script?


Browser script is recommended for:
• Communication with the user
• Interaction with desktop applications
• Data validation and manipulation limited to the current record
Server script is recommended for:
• Query, insert, update, and delete operations
• Access to data beyond the current record

Explain about the Scripting Best Practices in Siebel?

What are the advantages of eScript over VBScript?

How do you do Garbage Collection in Siebel?

What are the cursor modes in Siebel Scripting?

What is the use of GENB Script?

What does ActivateField do?

What is the difference between ForwardOnly and ForwardBackword cursor?

Explain the exception handling process in VBScript and eScript?

What is Structured Exception Handling?

How do you declare an array in eScript?

What is the difference between setseatch spec

What is the difference between SetSharedGlobal and GetSharedGlobal


How do you simulate a Business Service in the application?

Which objects in Siebel can we write script?

What is SetProfile Attribute?

You might also like