Form Personalization error message with values from database tables
Business requirements of custom pop-up error message containing values from DB
When requirements demands pop-up error messages in form personalization to fetch values from database tables based on the user entered input in the form window. Form personalization can be achieved as shown below :='Duplicate Number- ' || :BLOCK.DISPLAY_COL1 || '. Alert Duplicate value entered. Check Ref COL.' || (select character24
from qa_results qr,
qa_plans qp
where qr.plan_id =qp.plan_id
and qp.name = :Q_RES_HEAD.NAME
and qr.character1= :Q_RES.DISPLAY1)
Comments
Post a Comment