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