Hi dear frends
i've written the sql update command on a button press trigger as
begin
update TNA
set shipdate = :shipdate , description = :description
where TNAID = :TNAID;
commit ;
end;
but when i do this it shows PK Uniqueness error. i.e. the form tries to resave it as a new record instead of updating the record.
plz help.