Displaying Warning Message which should be followed by Error Message in Global Absence Entry validat
Summary
Displaying Warning Message which should be followed by Error Message in Global Absence Entry validation Fast FormulaContent
Hi Experts,
We have a scenario where we want to show a warning message which should be followed by a Error Message in "Global Absence Entry validation" Fast formula.
Currently it seems only warning message is displayed and if user selects 'Yes' request gets submitted.
Pseudo Code is as below:
**********************START*****************************************
VALID = 'N'
ERROR_CODE = 'W'
ERROR_MESSAGE = 'Please check Absence balance is greater than 0'
RETURN VALID,ERROR_CODE,ERROR_MESSAGE
IF IV_TOTALDURATION > 5
THEN
(
VALID = 'N'
ERROR_MESSAGE = 'Absence cannot be greater than 5 days'