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 Collection issues

user5108636Jun 22 2018 — edited Jun 26 2018

Hi All,

   I am using APEX 5.1.3 with universal theme. I am using APEX collection for navigation purpose.

But really finding apex collections are too clunky and cumbersome to use. I am trying to creating a collection using  apex_collection.CREATE_COLLECTION method, I constantly keep getting the error collection already exists.

I then use the below code to look inside the collection, all I find is an empty collection.

declare

  v_workspace_id apex_workspaces.workspace_id%type;

begin

  select workspace_id into v_workspace_id from apex_workspaces where workspace = '&WORKSPACE_NAME';

   -- Set Workspace ID

   apex_util.set_security_group_id(v_workspace_id);

 

   -- Set Application ID

   apex_application.g_flow_id  := &APP_ID;   

 

   -- Set Session ID

   apex_application.g_instance := &APP_SESSION;

end;

Please advise.

Thanks

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 24 2018
Added on Jun 22 2018
13 comments
1,370 views