Hi All,
As per existing application they have created a stored procedure under Apex process as mentioned below
Name # Run Stored Procedure
Type#PL/SQL anonymous block
Process Point# On Submit after computation & validations
Source#
#OWNER#.EMP_UI.MAIN(
PI_EMPID => :P2_EMP_HIDD,
PI_EMPNAME => :P2_EMP_Name,
PO_ID => :P2_OID);
Process Success Message -> <font size="7" color="green">A EMP has been created successfully.</font>
After entering required fields from front end UI and click on Submit button we see above process success message.
Now requirement is that need to display message only after having some value in hidden variable, it means that if P2_OID returns some value then after clicking submit button it should display message.
How do i need to handle message to display.
Regards,
Sruthitamiri