Skip to content

uc-apx pages

List every page in the exported APEX application with its ID, name, alias, title, source file, and component count. Use —page-group or —ungrouped to restrict the listing to a single page group or to pages with no group.

uc-apx pages [flags]
FlagTypeDefaultDescription
--page-groupstringOnly list pages assigned to this page group (id or display name)
--ungroupedOnly list pages that belong to no page group
FlagTypeDefaultDescription
--app-dirstring.Path to the APEX application directory
--json-prettyOutput in pretty-printed JSON (human-readable) instead of minified JSON
--toonOutput in TOON format (human-readable, token-efficient) instead of JSON
Terminal window
# List all pages
uc-apx pages
# Only pages in the "reports" group (by id or display name)
uc-apx pages --page-group reports
# Only pages that belong to no group
uc-apx pages --ungrouped
# List pages as human-readable TOON output
uc-apx --toon pages

Running against examples/brookstrut:

Terminal window
uc-apx --app-dir examples/brookstrut pages
[49]{id,name,alias,title,file,components}:
"1",Home,HOME,&APP_NAME.,pages/p00001-home.apx,4
"2",Sales History Content Row,SALES-HISTORY-CONTENT-ROW,Sales History Content Row,pages/p00002-sales-history-content-row.apx,30
"3",Store,"",Store,pages/p00003.apx,34
"4",Administration,SETTINGS,Administration,pages/p00004-settings.apx,3
"5",Sales,"",Sales,pages/p00005.apx,21
"6",Stores Report - Content Row,STORES-REPORT-CONTENT-ROW,Stores - Content Row,pages/p00006-stores-report-content-row.apx,38
"7",Store,"",Store,pages/p00007.apx,41
"8",Store Regions,STORE-REGIONS,Store Regions,pages/p00008-store-regions.apx,26
"9",Region,"",Region,pages/p00009.apx,14
"10",Store Locations Map,STORE-LOCATIONS-MAP,Store Locations Map,pages/p00010-store-locations-map.apx,4
"11",Products,"",Products,pages/p00011.apx,24
"12",Product,"",Product,pages/p00012.apx,18
"13",Sales History Classic,SALES-HISTORY-CLASSIC,Sales History - Classic,pages/p00013-sales-history-classic.apx,29
"14",About,ABOUT,About,pages/p00014-about.apx,14
"15",Region Stores,REGION-STORES,Region Stores,pages/p00015-region-stores.apx,38
"16",Top Users,"",Top Users,pages/p00016.apx,25
"17",Activity Calendar,"",Activity Calendar,pages/p00017.apx,4
"18",Sales by Product,SALES-BY-PRODUCT,Sales by Product,pages/p00018-sales-by-product.apx,24
"19",Reports,"",Reports,pages/p00019.apx,4
"20",Sales by Store by Day,"",Sales by Store by Day,pages/p00020.apx,3
"21",Event Log,"",Event Log,pages/p00021.apx,27
"22",Sales by Store by Week,"",Sales by Store by Week,pages/p00022.apx,23
"23",Sales History Interactive Grid,SALES-HISTORY-INTERACTIVE-GRID,Sales History Interactive Grid,pages/p00023-sales-history-interactive-grid.apx,35
"24",Sales History Generation Log,"",Sales History Generation Log,pages/p00024.apx,17
"25",Sales by Product and Store by Week,"",Sales by Product and Store by Week,pages/p00025.apx,35
"26",Remove Transaction History,REMOVE-TRANSACTION-HISTORY,Remove Transaction History,pages/p00026-remove-transaction-history.apx,6
"27",Product Availability,"",Product Availability,pages/p00027.apx,16
"28",Generate Transactions,GENERATE-TRANSACTIONS,Generate Transactions,pages/p00028-generate-transactions.apx,5
"29",Generate Transaction,"",Generate Transaction,pages/p00029.apx,21
"30",Transaction,"",Transaction,pages/p00030.apx,10
"31",100 Transactions Generated,"",100 Transactions Generated,pages/p00031.apx,9
"32",Table Counts,"",Table Counts,pages/p00032.apx,9
"33",Transaction Log,"",Transaction Log,pages/p00033.apx,26
"34",Transaction Summary by Minute,"",Transaction Summary by Minute,pages/p00034.apx,23
"35",Transaction Summary by Hour,"",Transaction Summary by Hour,pages/p00035.apx,21
"36",Transaction Detail,TRANSACTION-DETAIL,Transaction Detail,pages/p00036-transaction-detail.apx,19
"38",Sales History Content Row with Menu,SALES-HISTORY-CONTENT-ROW-WITH-MENU,Sales History Content Row with Menu,pages/p00038-sales-history-content-row-with-menu.apx,34
"39",Page Views,PAGE-VIEWS,Page Views,pages/p00039-page-views.apx,25
"40",Reset Sample Data,RESET-SAMPLE-DATA,Reset Sample Data,pages/p00040-reset-sample-data.apx,5
"41",Load Data,"",Load Data,pages/p00041.apx,23
"42",Sales History Calendar,SALES-HISTORY-CALENDAR,Sales History Calendar,pages/p00042-sales-history-calendar.apx,15
"43",Recent Sales,"",Recent Sales,pages/p00043.apx,14
"45",Sales History Smart Search w Menu Actions,SALES-HISTORY-SMART-SEARCH-W-MENU-ACTIONS,Sales History Smart Search w Menu Actions,pages/p00045-sales-history-smart-search-w-menu-actions.apx,34
"46",Sales History Cards,SALES-HISTORY-CARDS,Sales History Cards,pages/p00046-sales-history-cards.apx,32
"50",Sales History Classic,SALES-HISTORY-CLASSIC1,Sales History Classic,pages/p00050-sales-history-classic1.apx,24
"51",Sales History Interactive Report,SALES-HISTORY-CLASSIC-IR,Sales History IR,pages/p00051-sales-history-classic-ir.apx,33
"101",Login,LOGIN,Sign In | &APP_NAME.,pages/p00101-login.apx,11
"10010",Theme Style Selection,THEME-STYLE-SELECTION,Theme Style Selection,pages/p10010-theme-style-selection.apx,11
"10020",Configuration Options,CONFIGURATION-OPTIONS,Configuration Options,pages/p10020-configuration-options.apx,20
JSON output
[
{
"id": "1",
"name": "Home",
"alias": "HOME",
"title": "&APP_NAME.",
"file": "pages/p00001-home.apx",
"components": 4
},
{
"id": "2",
"name": "Sales History Content Row",
"alias": "SALES-HISTORY-CONTENT-ROW",
"title": "Sales History Content Row",
"file": "pages/p00002-sales-history-content-row.apx",
"components": 30
},
{
"id": "3",
"name": "Store",
"title": "Store",
"file": "pages/p00003.apx",
"components": 34
},
{
"id": "4",
"name": "Administration",
"alias": "SETTINGS",
"title": "Administration",
"file": "pages/p00004-settings.apx",
"components": 3
},
{
"id": "5",
"name": "Sales",
"title": "Sales",
"file": "pages/p00005.apx",
"components": 21
},
{
"id": "6",
"name": "Stores Report - Content Row",
"alias": "STORES-REPORT-CONTENT-ROW",
"title": "Stores - Content Row",
"file": "pages/p00006-stores-report-content-row.apx",
"components": 38
},
{
"id": "7",
"name": "Store",
"title": "Store",
"file": "pages/p00007.apx",
"components": 41
},
{
"id": "8",
"name": "Store Regions",
"alias": "STORE-REGIONS",
"title": "Store Regions",
"file": "pages/p00008-store-regions.apx",
"components": 26
},
{
"id": "9",
"name": "Region",
"title": "Region",
"file": "pages/p00009.apx",
"components": 14
},
{
"id": "10",
"name": "Store Locations Map",
"alias": "STORE-LOCATIONS-MAP",
"title": "Store Locations Map",
"file": "pages/p00010-store-locations-map.apx",
"components": 4
},
{
"id": "11",
"name": "Products",
"title": "Products",
"file": "pages/p00011.apx",
"components": 24
},
{
"id": "12",
"name": "Product",
"title": "Product",
"file": "pages/p00012.apx",
"components": 18
},
{
"id": "13",
"name": "Sales History Classic",
"alias": "SALES-HISTORY-CLASSIC",
"title": "Sales History - Classic",
"file": "pages/p00013-sales-history-classic.apx",
"components": 29
},
{
"id": "14",
"name": "About",
"alias": "ABOUT",
"title": "About",
"file": "pages/p00014-about.apx",
"components": 14
},
{
"id": "15",
"name": "Region Stores",
"alias": "REGION-STORES",
"title": "Region Stores",
"file": "pages/p00015-region-stores.apx",
"components": 38
},
{
"id": "16",
"name": "Top Users",
"title": "Top Users",
"file": "pages/p00016.apx",
"components": 25
},
{
"id": "17",
"name": "Activity Calendar",
"title": "Activity Calendar",
"file": "pages/p00017.apx",
"components": 4
},
{
"id": "18",
"name": "Sales by Product",
"alias": "SALES-BY-PRODUCT",
"title": "Sales by Product",
"file": "pages/p00018-sales-by-product.apx",
"components": 24
},
{
"id": "19",
"name": "Reports",
"title": "Reports",
"file": "pages/p00019.apx",
"components": 4
},
{
"id": "20",
"name": "Sales by Store by Day",
"title": "Sales by Store by Day",
"file": "pages/p00020.apx",
"components": 3
},
{
"id": "21",
"name": "Event Log",
"title": "Event Log",
"file": "pages/p00021.apx",
"components": 27
},
{
"id": "22",
"name": "Sales by Store by Week",
"title": "Sales by Store by Week",
"file": "pages/p00022.apx",
"components": 23
},
{
"id": "23",
"name": "Sales History Interactive Grid",
"alias": "SALES-HISTORY-INTERACTIVE-GRID",
"title": "Sales History Interactive Grid",
"file": "pages/p00023-sales-history-interactive-grid.apx",
"components": 35
},
{
"id": "24",
"name": "Sales History Generation Log",
"title": "Sales History Generation Log",
"file": "pages/p00024.apx",
"components": 17
},
{
"id": "25",
"name": "Sales by Product and Store by Week",
"title": "Sales by Product and Store by Week",
"file": "pages/p00025.apx",
"components": 35
},
{
"id": "26",
"name": "Remove Transaction History",
"alias": "REMOVE-TRANSACTION-HISTORY",
"title": "Remove Transaction History",
"file": "pages/p00026-remove-transaction-history.apx",
"components": 6
},
{
"id": "27",
"name": "Product Availability",
"title": "Product Availability",
"file": "pages/p00027.apx",
"components": 16
},
{
"id": "28",
"name": "Generate Transactions",
"alias": "GENERATE-TRANSACTIONS",
"title": "Generate Transactions",
"file": "pages/p00028-generate-transactions.apx",
"components": 5
},
{
"id": "29",
"name": "Generate Transaction",
"title": "Generate Transaction",
"file": "pages/p00029.apx",
"components": 21
},
{
"id": "30",
"name": "Transaction",
"title": "Transaction",
"file": "pages/p00030.apx",
"components": 10
},
{
"id": "31",
"name": "100 Transactions Generated",
"title": "100 Transactions Generated",
"file": "pages/p00031.apx",
"components": 9
},
{
"id": "32",
"name": "Table Counts",
"title": "Table Counts",
"file": "pages/p00032.apx",
"components": 9
},
{
"id": "33",
"name": "Transaction Log",
"title": "Transaction Log",
"file": "pages/p00033.apx",
"components": 26
},
{
"id": "34",
"name": "Transaction Summary by Minute",
"title": "Transaction Summary by Minute",
"file": "pages/p00034.apx",
"components": 23
},
{
"id": "35",
"name": "Transaction Summary by Hour",
"title": "Transaction Summary by Hour",
"file": "pages/p00035.apx",
"components": 21
},
{
"id": "36",
"name": "Transaction Detail",
"alias": "TRANSACTION-DETAIL",
"title": "Transaction Detail",
"file": "pages/p00036-transaction-detail.apx",
"components": 19
},
{
"id": "38",
"name": "Sales History Content Row with Menu",
"alias": "SALES-HISTORY-CONTENT-ROW-WITH-MENU",
"title": "Sales History Content Row with Menu",
"file": "pages/p00038-sales-history-content-row-with-menu.apx",
"components": 34
},
{
"id": "39",
"name": "Page Views",
"alias": "PAGE-VIEWS",
"title": "Page Views",
"file": "pages/p00039-page-views.apx",
"components": 25
},
{
"id": "40",
"name": "Reset Sample Data",
"alias": "RESET-SAMPLE-DATA",
"title": "Reset Sample Data",
"file": "pages/p00040-reset-sample-data.apx",
"components": 5
},
{
"id": "41",
"name": "Load Data",
"title": "Load Data",
"file": "pages/p00041.apx",
"components": 23
},
{
"id": "42",
"name": "Sales History Calendar",
"alias": "SALES-HISTORY-CALENDAR",
"title": "Sales History Calendar",
"file": "pages/p00042-sales-history-calendar.apx",
"components": 15
},
{
"id": "43",
"name": "Recent Sales",
"title": "Recent Sales",
"file": "pages/p00043.apx",
"components": 14
},
{
"id": "45",
"name": "Sales History Smart Search w Menu Actions",
"alias": "SALES-HISTORY-SMART-SEARCH-W-MENU-ACTIONS",
"title": "Sales History Smart Search w Menu Actions",
"file": "pages/p00045-sales-history-smart-search-w-menu-actions.apx",
"components": 34
},
{
"id": "46",
"name": "Sales History Cards",
"alias": "SALES-HISTORY-CARDS",
"title": "Sales History Cards",
"file": "pages/p00046-sales-history-cards.apx",
"components": 32
},
{
"id": "50",
"name": "Sales History Classic",
"alias": "SALES-HISTORY-CLASSIC1",
"title": "Sales History Classic",
"file": "pages/p00050-sales-history-classic1.apx",
"components": 24
},
{
"id": "51",
"name": "Sales History Interactive Report",
"alias": "SALES-HISTORY-CLASSIC-IR",
"title": "Sales History IR",
"file": "pages/p00051-sales-history-classic-ir.apx",
"components": 33
},
{
"id": "101",
"name": "Login",
"alias": "LOGIN",
"title": "Sign In | &APP_NAME.",
"file": "pages/p00101-login.apx",
"components": 11
},
{
"id": "10010",
"name": "Theme Style Selection",
"alias": "THEME-STYLE-SELECTION",
"title": "Theme Style Selection",
"file": "pages/p10010-theme-style-selection.apx",
"components": 11
},
{
"id": "10020",
"name": "Configuration Options",
"alias": "CONFIGURATION-OPTIONS",
"title": "Configuration Options",
"file": "pages/p10020-configuration-options.apx",
"components": 20
}
]