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!

After upgrade to ORACLE APEX from 20 to 24,2 version i cannot set collection member value in data loading application

user30996564 hours ago

HI

We are after upgrade oracle apex from 20 to 24.2

I have issue when i build new data loading application:

before upgrade in my processes i used the next expression to set value of member attribute:

FOR UPLOAD_ROW IN (SELECT *
FROM APEX_COLLECTIONS
WHERE COLLECTION_NAME = 'SPREADSHEET_CONTENT') LOOP

APEX_COLLECTION.UPDATE_MEMBER_ATTRIBUTE (
p_collection_name => 'SPREADSHEET_CONTENT',
p_seq => UPLOAD_ROW.SEQ_ID,
p_attr_number => '12',
p_attr_value => :UID);

end loop;

After upgrade it is not working, apex does not recognize this collection

in view session state page i don't see any collection

What is the reason for this?

Regards

Alexander

Comments
Post Details
Added 4 hours ago
0 comments
44 views