I have applications created in apex in ,each application there are number of pages.
I want to create a stored procedure to export each of these applications and pages.
I came across
SELECT * FROM APEX_APPLICATIONS;
select table_name from all_tables where owner='APEX_030200';
select username from all_users where username like 'APEX_0%' or username like 'FLOWS_0%';
But this doesn't help me.
CREATE OR REPLACE PACKAGE BODY APEX_UTILITY AS
END APEX_UTILITY; /