Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

APEX process not working...

ElcoJan 24 2014 — edited Jan 29 2014

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

This post has been answered by Nicolette on Jan 28 2014
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 26 2014
Added on Jan 24 2014
13 comments
1,769 views