Friday, June 20, 2008

Siebel Browser Script

This snippet of code produces a text box whenever the user selects a closed record ::[:::]::
_____________________________ ::[:::]::
function Applet_ChangeRecord ()
{
var BCServReq = this.BusComp();
var StatusString = BCServReq.GetFieldValue("Status");
if (StatusString == "Closed")
{
TheApplication().SWEAlert("This case is closed.")
}
}

No comments: