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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

Set Value DA -> Submit DA -> Processing

srgarg-OracleFeb 17 2022

I have a button. I create two dynamic actions that trigger on button click.
first DA is Set Value. It sets the value of a page item P4_FILE_ID. (Affected element is set as P4_FILE_ID)
second DA is submit
I have a process (point=processing) which inserts the value of P4_FILE_ID in a table.
I expect that when i click on that button, the item will be set with a new value and then that value will be inserted in table and then the page will refresh.
However, I get an error that cannot insert null. I can see that the page item is set with new value by doing apex.item('P4_FILE_ID').getValue() in console, but somehow it is not reflected in my sql process.
insert into my_table
(file_id, path)
(select :P4_FILE_ID, col001 from another_table )
Any help is appreciated. Thanks in advance.

Comments

AishwaryaRao -Oracle

Hello,

Please find Application Server 10g certification information in the below article

How to Find Certification Details for Oracle Fusion Middleware 10g/11g/12c (Doc ID 431578.1)

section "Oracle Application Server 10g Release 2 (10.1.2)"

You can also check

Certification of Oracle Developer Suite 10g (10.1.2) on Windows 7 (32-bit) (Doc ID 1292919.1)

Windows Vista Operating System Version Check : "must be 5.0, 5.1 or 5.2. Actual 6.0 Failed" - How to Install Oracle Application Server 10g (10.1.2) On Windows Vista (Doc ID 559619.1)

Also, application Server 10g is desupported long back and you can consider upgrading it to supported version.

Thanks,

Aishwarya

1 - 1

Post Details

Added on Feb 17 2022
1 comment
399 views