Siebel Object Interfaces Reference > Interfaces Reference > Applet Events >

Applet_ChangeRecord Event


The ChangeRecord event is called when the user moves to a different row or view.

Syntax

Applet_ChangeRecord()

Argument
Description

Not applicable

 

Returns

Not applicable

Used With

Browser Script

Example

The following example is in Browser Script:

function Applet_ChangeRecord ()
{
   try
   {
      var thisBC = this.BusComp();
      var sFlag = thisBC.GetFieldValue("Primary Revenue Committed Flag");
      if (sFlag == "Y")
      {
         alert("This record cannot be update as its been Committed");
      }
   }
   catch(e)
   {
      alert("Error in ChangeFieldValue and error is " + e.toString() + " " + e.errText());
   }
}

See Also

Applet_ChangeFieldValue Event

Siebel Object Interfaces Reference