Hello,
I need some help with an apex issue. The problem is that the process is not working.
Process before header
declare
P12_STANDARD_USER VARCHAR2(15);
Begin
If P12_STANDARD_USER is not null then
insert into user_default
(employee_number, default_user )
values
(:P7_EMPLOYEE_NUMBER, 'Yes' );
Else
insert into user_default
(employee_number, default_user )
values
(:P7_EMPLOYEE_NUMBER, 'No' );
end if;
end;
p12_standard_user is a page item yes/no on the same page (12) as the process. Does anybody know what I do wrong?
I use apex 4.2
Thanks in advance
regards
elco