APEX 18.1.0 was released on May 24, 2018.
Please review the Release Notes for significant issues known at time of release. Any new significant issues will be added here. This page was last updated on August 27, 2018.
Note: Review the APEX 18.1 Known Issues Addendum for important information regarding flash charts.
begin
wwv_flow.g_nls_decimal_separator := substr( to_char( 1/2, 'TM9' ), 1, 1 );
end;
select empno,
ename,
'f?p=&APP_ID.:26:' || :APP_SESSION || '::&DEBUG.:26:P26_EMPNO:' || empno as edit_link
from emp
However, due to the bug, &APP_ID. and &DEBUG. will not get replaced.
select empno,
ename,
'f?p=' || :APP_ID || ':26:' || :APP_SESSION || '::' || :DEBUG || ':26:P26_EMPNO:' || empno as edit_link
from emp
or
select empno,
ename,
apex_page.get_url (
p_page => '26',
p_clear_cache => '26',
p_items => 'P26_ID',
p_values => empno ) as edit_link
from emp
ORA-00001: unique constraint (APEX_180100.IG_RPT_NAME_UK) violated.
Changed Behavior: