oracle-databaseoracleforms

how to promt a message if a field is empty in oracle forms


How to prompt a message if field is empty in oracle forms i'm not sure if it works and the trigger i'm using is when-validate-item

begin
  if date = NULL then
    message('please enter issue date')
  else
    null;
  end if;
end;

Solution

  • From my point of view: