By Default APEX Interactive Report doesn’t show new columns after the report is created. It bothered me a lot. Usually I need to delete the report and do it all over again just to add new columns!
I finally find the solution today!
e.g.
If original query:
select first_name , age from users;
is changed to:
select first_name , age , job from users;
Refresh the report page and the “job” column is not shown.
Do the following 6 steps to fix this:
- Login to APEX with Developer privileges.
- Run the report.
- Click the gear icon, choose “Select Columns” and you will find the missing column on the left. Select & move them to the right.
- Click Apply.
- Then click on the gear iconĀ again, click “Save Report”, choose “As Default Report”.
- Click Apply.
Advertisement