Is it possible to generate dynamic web pages using APEX.
What I mean by dynamic is this: The fields for the screen is in the DB in tables. So we have a table called PAGES which has these columns (simplified version).
PAGENO PAGE DISCRIPTION
1 Customer Information
Then a detail table to this, PAGE_ITEMS has these fields.
PAGENO FIELD_SEQUENCE FIELD_NAME FIELD_LABEL DATA_TYPE SECTION
1 1 CUS_NUM Customer Number N Customer Information
1 2 CUS_F_NAME First Name C Customer Information
1 3 CUS_L_NAME Last Name C Customer Information
1 4 CUS_SAL Salary N Salary Details
When the page loads APEX should read these tables and construct the page .
Is this possible in APEX?