8 Desupported in Previous Releases

The following section lists features that were desupported in a previous release.

If a desupported feature has to do with application metadata or APIs, then existing applications may not work as they did previously. Oracle recommends modifying the application to replace the feature.

8.1 Removed JSON Application Export

As of APEX 24.1, the JSON application export option is removed. The Export Readable Format option is now a switch. If off, the application exports in SQL form. If on, the export file contains a human-readable YAML version of the application metadata.

8.2 CKEditor Desupported

As of APEX 23.2.9, CKEditor 4 and CKEditor5 are desupported. Any custom code using CKEditor5 APIs must be re-worked. Any code referencing CKEditor4 and the CKEDITOR global object no longer works. Any existing CKEditor regions default to using Oracle Rich Text Library.

8.3 Desupported Utilities

As of APEX 23.2, the APEXExport utility is desupported and is no longer included with Oracle APEX. Oracle recommends using SQLcl to perform export operations.

8.4 Querying Template Component Metadata

As of APEX 23.2, for template components only, the ATTRIBUTE_01...ATTRIBUTE_25 columns of APEX_APPLICATION_PAGE_REGIONS and APEX_APPLICATION_PAGE_IR_COL public views now return null.

Instead, use the new ATTRIBUTES column that stores a JSON object of all attribute values. Use the attribute's Static ID as the object key. Note that a table alias is always needed when using the JSON dot notation. For example:
select r.attributes.COLOR
  from apex_application_page_regions r
 where r.application_id = 100
   and r.page_id        = 1
   and r.static_id      = 'user_badge';