Application Express 5.0.0 was released on 15th April, 2015.
This page was last updated on 29-June-2015.
APEX_JSON can parse very large JSON objects, but the maximum length of any string member value is limited to 32767 bytes
(i.e. the maximum size of a varchar2). Attempts to parse JSON with longer string member values will result in ORA-06502 Character string buffer too small
.
Workaround: There is no workaround currently available.
If your database version is 11.1.x, 11.2.0.1, 11.2.0.2 or 11gXE, downloading Interactive Reports, Classic Reports or uploaded report layout files can produce corrupt data in the downloaded file.
Solution: There is a patchset exception for this available on My Oracle Support - search by bug number.
If using ORDS (Apex Listener), restart it after installing the patch.
If your database version is 11.1.x, 11.2.0.1, 11.2.0.2 or 11gXE, apex_json.parse may report errors when parsing a clob.
Solution: There is a patchset exception for this available on My Oracle Support - search by bug number 20931298. If using ORDS (Apex Listener), restart it after installing the patch.
Workaround: If you have not installed the patch, then you can use the overloaded parse procedures which take varchar2 or table of varchar2 instead.
If you changed the authentication scheme of the development environment to "Database Accounts" or "LDAP Directory", the Create Workspace wizard reports a verification failure for the workspace administrator's password.
Solution: There is a patchset exception for this available on My Oracle Support - search by bug number.
Workaround: If you have not installed the patch, then you can either temporarily switch back to "Application Express Accounts" authentication to create the workspace or use the documented API APEX_INSTANCE_ADMIN.ADD_WORKSPACE in sqlplus.
If Oracle Workspace Manager is in use in the Oracle Database where you attempt to install Application Express, the installation of indexes may fail.
Solution: Apply Database Patch 11061801 prior to attempting the upgrade. Search for 11061801 on the Patches tab at support.oracle.com to download the patch.
Workaround: If you have not installed the patch, then you can workaorund the bug by adding spaces after the table name and each comma.
For example, change
create index wwv_flow_preferences$_fkidx on wwv_flow_preferences$(security_group_id,user_id,preference_name)
to the following statement
create index wwv_flow_preferences$_fkidx on wwv_flow_preferences$ (security_group_id, user_id, preference_name).
When switching the Application Builder to a language that uses a comma as the decimal separator the Page Designer splitters give an error, which leaves the Page Designer unusable. This only happens if the page designer was previously used in a language that uses period as the decimal separator AND the browser reported the splitter position with a decimal part.
Workaround: Remove splitter preferences with the following code entered in SQL Workshop > SQL Commands then change languages:
begin
apex_util.remove_preference( 'F4000_1157687726908338238_SPLITTER_STATE' );
apex_util.remove_preference( 'F4000_203904827661009901_SPLITTER_STATE' );
apex_util.remove_preference( 'F4000_203906404237009921_SPLITTER_STATE' );
apex_util.remove_preference( 'F4500_1157684150404338202_SPLITTER_STATE' );
apex_util.remove_preference( 'F4500_1157684743709338208_SPLITTER_STATE' );
apex_util.remove_preference( 'F4500_1157684935965338210_SPLITTER_STATE' );
apex_util.remove_preference( 'F4500_1157686386582338224_SPLITTER_STATE' );
commit;
end;
Within the Application Express 5.0 API Guide a number of the APEX_JSON function syntax and example code snippets are incorrectly documented.
Workaround: Review the package specification for APEX_050000.WWV_FLOW_JSON.
On the Workspace Administration -> Monitor Activity -> Active Sessions page, this report will return ORA-00979: NOT A GROUP BY EXPRESSION
in Oracle Database 12.1.0.1 and 12.1.0.2.
Solution: There is a patchset exception for this available on My Oracle Support - search by bug number.
With Application Express 5.0, Interactive Reports now provide the capability to define fixed column headings, such that the header remains in a fixed in position when the user is scrolling down the report. When a ‘Control Break’ or a ‘Pivot’ is applied, the headings will no longer be fixed.
Workaround: There is no workaround currently available.
The data cuts off when trying to load more than 32KB to an existing table using copy and paste option in spreadsheet load wizard of data workshop (SQL Workshop > Utilities > Data Workshop > Load Spreadsheet Data).
Solution: There is a patchset exception for this available on My Oracle Support - search by bug number. As a workaround, you can upload the file instead of using the copy and paste option.
When attempting to upgrade a multitenant container database (CDB) to Oracle Application Express 5.0, catcon.pl will report an error and the following errors can be seen in the catcon.pl installation logs:
ORA-00001: unique constraint (APEX_050000.WWV_FLOW_BANNER_U_IDX) violated
Solution: Apply Database Patch 20618595 prior to attempting the upgrade. Search for 20618595 on the Patches tab at support.oracle.com to download the patch.
If an Interactive Report has a column value that is a link (where the link markup is constructed in the report query) , attempting to define a filter on this value from the column header menu fails. The link may have been defined in the report query as opposed to using the declarative column link support , for example in the case where you want to conditionally render a link, based on some query logic. Note: In previous versions of Application Express, this would work in setting the filter , however this would also have the negative consequence that you would be taken to the link target when selecting the filter value in the column header menu.
Workaround: To workaround this issue, we recommend the following change to your report:
Note: For this example, we assume the original column name including the link is 'my_link'.
Properties that are displayed due to a dependency to some other property (eg Link Text displays when the Link is defined) , that also have quick picks, will have their quick picks not selecting the value directly after the property has been displayed. In addition, after new properties have been displayed due to a dependency , this also makes some other properties with quick picks no longer open their quick pick menu (eg Column Filter > Type, after a Link has been defined).
Workaround: After refreshing the Property Editor, (for example by saving and reloading the page, or by selecting a different component, then going back to the component) , quick picks will once again work.
Legacy calendar has two type of displaying event title (column or custom) . When the custom type is used, there is no automatic migration of the customized display text.
Workaround: Change the SQL statement so that the custom column becomes a column that can be mapped to the Display Column attribute. Alternatively, use the Additional Information attribute to add a custom tooltip.