Latest Siebel Interview Questions and Answers collected from Real Time Interview

7/18/2012 No Comment
Latest Siebel Interview Questions and Answers collected from Real Time Interview in top companies like CTS, IBM , HP Delloite

1. If we have Dynamic Picklist as Bounded, Can we add record?

Yes ..But incase of static picklist it is not possible..

2. In an Applet create a custom button and enable it.

a. Create a control “Test” on the Applet with Method Invoked property as “TESTMETHOD”.
b. Add the following script in the WebApplet_PreCanInvokeMethod event(Right click on apple & edit serverscript)

function WebApplet_PreCanInvokeMethod (MethodName, &CanInvoke)
{
if((MethodName == "TESTMETHOD")
{
CanInvoke = "TRUE";
return(CancelOperation);
}
return (ContinueOperation);
}

3. How to invoke a Business Service on click of a buton?

a. Create a control “Test” on the Applet with Method Invoked property as “TESTMETHOD”.
b. Add the following script in the WebApplet_PreCanInvokeMethod event

function WebApplet_PreCanInvokeMethod (MethodName, &CanInvoke)
{
if((MethodName == "TESTMETHOD”)
{
CanInvoke = "TRUE";
return(CancelOperation);
}
return (ContinueOperation);
}

c. Add the following user property in the Applet
Name - Named Method: TESTMETHOD
Value - 'INVOKESVC', 'Service Name', 'MethodName'

4. Is it possible to access more than one Database at a single siebel application?
Yes

5. If Gateway Server is not present cant we do Load Balancing?
No

6. What is a calculated field?
Calculated field derives it’s value from other fields..It can not be stored in the database therefore column property is blank..
Restriction on calculated field:---
* It can not be stored in the database
* It is Read-only..
* Sorting is not supported but querying is supported..


7. I have a view with form applet on the top and list applet at the bottom. There is "score" field in the list applet. How to display the totals of score in form applet?
Create an mvf in the parent BC based on score field. Then create a calculated field with calculated value Sum (mvf)

8. I want to display no of activities associated with an Account? How do you configure this?
a. Create an mvl in Account bc based on Account/Action link
b. Create a calculated field with calculated value Count(“mvl”).
c. Display the calculated field on the Account applet.

9. Now I want to count no of Activities of an Account with Priority = 1-ASAP

Type Field and Type Value property of the mvl can be used to put search spec on the child bc. Here Type Field = Priority and Type Value = 1-ASAP. Then do the Count(“mvl”).

10. In the list applet field we have 10 records but i have to display only 2 records in list applet, what is the process should i follow?
Set HTML No of Rows Applet property to 2.

Related Posts


No comments :

 

Aired | The content is copyrighted and may not be reproduced on other websites. | Copyright © 2009-2016 | All Rights Reserved 2016

Contact Us | About Us | Privacy Policy and Disclaimer