Hi everybody
I have created a region and created 4 page items
P4_empno
p4_ename
p4_deptno
p4_sal
and two region buttons
submit
Cancel
To insert into the my emp table i created a dynamic action on submit button
event :click
selection type :button
button :submit
condition :no condition
true action
Execute plsql code:
begin
insert into emp select P4_empno,p4_ename,p4_deptno,p4_sal from dual;
end;
Well now now i can insert values to the table by clicking the submit button
but after submit the page is not refreshing and the values what i entered are still showing.
So please can anyone tell me what to do?
Thanks,
Regards,
Sabyasachi