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