In Oracle Apps if your doing a personalization on Oracle Forms and requirement is to Display a Message on WHEN-VALIDATE-RECORD. Its typical that WHEN-VALIDATE-RECORD fires multiple times and the Message will be displayed multiple times.
The way to handle this situation is simply to check the RECORD STATUS is in NEW CHANGED. Include the below condition in your personlization
:SYSTEM.RECORD_STATUS IN ('NEW','CHANGED')
The way to handle this situation is simply to check the RECORD STATUS is in NEW CHANGED. Include the below condition in your personlization
:SYSTEM.RECORD_STATUS IN ('NEW','CHANGED')
2 comments:
Thank you very much for this post
thank you, this worked
Post a Comment