Siebel Advisor API Reference > Callout Point Functions for Siebel Advisor >

COP_ValidItemAdded


Usage

The COP_ValidItemAdded function is called every time a user attempts to add a valid configuration to the order. COP_ValidItemAdded returns a Boolean value indicating whether the item should be added to the order (true) or not (false).

Syntax

COP_ValidItemAdded()

Example

function COP_ValidItemAdded()

{

  var userResponse = confirm("Would you like to add this
item to the order?");

  return userResponse;

}

Siebel Advisor API Reference