Siebel Business Process & Functionality (MOSC)

MOSC Banner

Siebel Script Raise Error Text

edited May 16, 2017 5:01AM in Siebel Business Process & Functionality (MOSC) 3 commentsAnswered

Hi

We are using the below script under Cfg_InstPostSynchronize to give an error to the user to update the required text attribute if it's blank

function Cfg_InstPostSynchronize (RootProduct)

{

var item;

var item1="Attribute Cannot be Null";

  

        item=GetAttribute("$.[POCQUOTETYPE]#1", "Media")

        if (item.length<1)

        {

            TheApplication().RaiseErrorText(item1);

        }

item = null;

item1=null;

}

Now when we are customizing the bundle and then clicking on Done button without updating the Required Attribute text field then though the error text is not shown even though the user doesnot exit e-config.

Please suggest how can we show the error text.

Tagged:

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center