Saturday, January 5, 2019

How to list APEX Dictionary views using S

I hope this isn’t old news but it seems that whenever someone talks about the APEX dictionary they talk about going into the development application and viewing them there. You can also access the dictionary using SQL. Here’s how:

select * from apex_dictionary where column_id=0
select distinct apex_view_name from apex_dictionary
    Of course you can remove the “where column_id=0” portion and get a list of the all the columns for the views etc.

No comments:

Post a Comment

To generate a PDF using JavaScript in Oracle APEX from a collection

  To generate a PDF using JavaScript in Oracle APEX from a collection, you can follow these steps: 1. Create a button or link on your APEX p...