cancel
Showing results for 
Search instead for 
Did you mean: 

Is it possible to display a warning/info message in a Validation Script?

Former Member
0 Kudos

Hello experts-

I know to display an error message, you can throw a ChainedException like this:

if(DupRowCheck.contains(NewRow)){

paramExp = new

ChainedException(session,"custom","exception.insurance.pending.duplicaterow");

paramExp.setAssociatedAttribute(EFF_INS_TYPE);

paramExp.setAssociatedAttribute(EFF_OCC_NUM);

paramExp.setSourceBo(ins.getObjectReference());

insException.chainAtEnd(paramExp);

}

But is there any way to simply show an informational or warning message to the user, without blocking the Save action?  The mental picture, I have is similar to the way SRM displays these messages to make the user aware of things, but allows them to finish their operation.

Thanks in advance.

Mike

Sourcing Wave 9 SP 13

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member89217
Contributor
0 Kudos

There is not a seperate mechanism to display "Warnings".  If you were really desperate for a communication channel you could always have an extension field that could be written to and cleared as needed and instruct users to monitor this filed for informational messages.

Regards,

Gary