APEX Cards, How to get a list of all pages in an application

107 views Asked by At

I'm trying to add a navigation list of cards on page 1 (HOME), which would match the navigation menu, which I would then exclude the Admin and Home.

Navigation Menu

And when I try to run this query it returns nothing?

select item_name, v(item_name) item_value
from apex_application_page_items
where application_id = :APP_ID
and page_id = :APP_PAGE_ID;

Cards Region

I would like this to be dynamic vs a static list which I can easily create.

0

There are 0 answers