I am writing procedure where i am passing input values. I need to validate against the metadata, if not valid raise exception.using oracle exception i have validated condition then raised the exception. I have copied the code i have used for validation.
IF V_BUSN_APPLC_NM_COUNT = 0 THEN
RAISE INVALID_SYSTEM_IDENTIFER;
END IF;
IF V_PROCES_TYPE_COUNT = 0 THEN
RAISE INVALID_PROCES_TYPE;
END IF;
as per my logic it should display both the values but displaying me only one message. how to display both the messages.
Does both IF's will execute? if so why it is not printing the both values.
in java we have take error as an array, then add to array and display list of array elements. do we have any thing like this in oracle.