Error ERR-1079 Error in item post calculation computation
210005Jul 5 2004 — edited Jul 6 2004Hi Guys,
I need an advice how I can accomplish this.
1. I've got a form on which a user will enter data or modify data.
2. there's a button which should allow the user to save the data.
Basically I've created on the page processing part a process which is tied with my save button.
This process a pl/sql block which is an update statement as follow:
begin
update my_table set
col1 = :col1,
col2 = :col2 where pk_col = :pk_col;
end;
Ideal here is that when an item is modified and the save button is pressed then the above update should fire...
How can I achieve this.
Thanks,
Regis