Of course if there are any interesting properties which you would like to query, pleas let me know.
A first simple example is, to identfiy all the pages which can be reached without authentication:
select p.application_idThe query returns all pages, of all applications in your workspace. If you run the query on a database schema all applications, conected to this schema will be referenced.
,p.page_id
,p.page_name
,p.last_updated_by
,p.last_updated_on
,p.created_by
,p.created_on
from apex_application_pages p
where p.page_requires_authentication = 'No'
Needles to say, that there are always many columns in the APEX Views, but getting the name and some information like, who and when was the page was created and updated might be most useful.
No comments:
Post a Comment