I have two screens(screen1, screen2) contains same
applet(applet1).i want in the screen1->applet1 with picklist
and screen2->applet1 with diffrent picklist. How can we
configure this senario?
Answers were Sorted based on User's Feedback
Answer / golla
Create one calculated field, which will get the view name.
this cal field use under pick map.
more for info: kumarsiebeltraining@gmail.com
| Is This Answer Correct ? | 8 Yes | 4 No |
Answer / paulson jose
How come same applet can have 2 different BCs?
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / suresh
simple
clone((copy(ctrl+B)) the BC and apllet and give different
names for them
and do your requirement say, create a picklist in new BC
and add these cloned applet and BC to view and BO
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / krishna
first we create two screens
with the same applet
ex:form applet
with diffrent bc,s
ex:
for screen 1
account bc1
account bo
account form applet1
account view 1
add this view into the screen
and add this screen into application
here bc will be created with that account table
add these views into call center applicvation
for screen 2
with the same account table we create the another bc
and will followed by above
now , we get the diffrent pick lists
with these two bcs
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sravani
Applet1 will be present in 2 different views. So for the
picklist values, in description give view names accodingly.
for example 1 - 10 values with view name1 and 11-20 values
with viewname2.
now in picklist search spec use IIF function saying if
description is viewname1 then orderby<=10 &if description
viewname2 then orderby<=10&orderby>10 and orderby<=20
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / vignesh
Its mainly based on BC . for Eg: the 'screen1' has an
applet comes from 'A' BC and the 'Screen2' has an same
applet name it comes from 'B' BC. the picklist values will
get differ.
| Is This Answer Correct ? | 8 Yes | 17 No |
Explain how is siebel 7.x data model is different from siebel 6.0 data model?
I checked out one object from server to my local, after checking out my local Database and userid has been corrupted. now i want to release the lock. How can i do this, can any one help me regarding this?
Explain how to import lovs?
This is krishna, I created new Table,Bc,Link,Bo,view,screen TABLE : CX_ECB_S_TAT BC : ECB TAT BC Link : ECB TAT BC/Service Request Bo : ECB TAT BO View : ECB TAT View Screen : ECB TAT Screen and I created new "X_ECB_TAT_ID" Column for foregin key relation ship in "S_SRV_REQ" Table [in colum properties I specified Forieignkey Table-CX_ECB_S_TAT] and I created "TAT Id Ext" Field with "X_ECB_TAT_ID" Column in "Service Request" BC. I created Link"ECB TAT BC/Service Request". in this link I specified "Destination Field-TAT Id EXT".( Parent BC : ECB TAT BC, Child BC : Service Request) --------------------------------------------------- There is two Screens 1)ECB TAT Screen 2)Service Request Screen in First Screen : ECB TAT Screen Parent BC : ECB TAT BC Fields : Type,Area,Sub Area,TAT I given the field values to Type,Area,Sub Area and based on field values I given "TAT" field value. now we will go to Second Screen : Service Request Screen Child BC : Service Request Fields : INS Product,INS Area,INS Sub-Area,TAT I given same values(Parent bc Field Values) to INS Product,INS Area,INS Sub-Area then should be update "TAT" Field value (I mean Parent BC same "TAT" Field vaue should be update in "TAT" Field in Child BC) I wrote script for above requirement in "SetFieldValue" Event in "ECB TAT BC" function BusComp_PreSetFieldValue (FieldName, FieldValue) { if(FieldName == "TAT") { var Bo = TheApplication().GetBusObject("ECB TAT BO"); var Bc = Bo.GetBusComp("Service Request"); this.ActivateField("Type"); this.ActivateField("Area"); this.ActivateField("Sub Area"); this.ActivateField("TAT"); var sType = this.GetFieldValue("Type"); var sArea = this.GetFieldValue("Area"); var sSubArea = this.GetFieldValue("Sub Area"); var sTAT = FieldValue; //this.GetFieldValue("TAT"); var Bc1 = Bo.GetBusComp("Service Request") with(Bc1) { var exp = "[INS Product] = '" + sType + "' AND [INS Area] = '" + sArea + "' AND [INS Sub-Area] = '" + sSubArea + "'"; ActivateField("INS Product"); ActivateField("INS Area"); ActivateField("INS Sub-Area"); ClearToQuery(); SetViewMode(AllView); SetSearchExpr(exp); ExecuteQuery(ForwardOnly); var cnt = CountRecords(); ActivateField("TAT"); var fst = FirstRecord(); while(fst) { SetFieldValue("TAT",sTAT); fst = NextRecord(); } } } return(ContinueOperation); } but in "Service Request" BC "TAT" field value updating existing records,not updating creating new necords. I should update "TAT" field value to creating new records. where I have to write script in which event in which BC for this. please post detail script for this. from last 15 days i'm working on this. please help me on this. thank you so much in advance.
For a field Status we define predefault value ="inprogess" Postdefault value="Completed" a record is copied from an existing record having status field value "Cleared" in the copied record if the status field value is made blank and then saved the record what will be the value of status field after saving
Explain how would you send an email using siebel realtime application?
How to specify a view to be displayed as aggregate view in siebel 7.7?
I need sibel crm testing questions
Suppose 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?
When do you use property sets in siebel?
Explain if gateway server is not present can we do load balancing?
Explain the steps required to implement the load balancer on siebel servers.