benjamenus
Programmer
An app changes the value of STATUS. If the status is changed to K, I wish to override it. I've tried putting the following into the after-update trigger
if :new.STATUS='K' then
:new.STATUS='X';
end if;
Obviously you cannot do this, but how can achieve the desired result?
if :new.STATUS='K' then
:new.STATUS='X';
end if;
Obviously you cannot do this, but how can achieve the desired result?