Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

24.2 apex_page.get_url generates an invalid dialog chain (bug?)

InoLMar 20 2025 — edited Mar 20 2025

This has me baffled. This code generates an invalid URL for a modal page:

   v_url := APEX_PAGE.GET_URL (p_application => '250',
                               p_page => '4'
   apex_debug.message('URL: '||v_url);         

It generates

URL: #action$a-dialog-chain?url=fFpD250A4A16067681742932AAYES6p_dialog_csD7FNKQG53K3ymJ3CZCt_mFsoy67OE-JIcHSK6yPF1YB-mL7GYwsizsx0g2eWuruRZo7lxig8ZYXuQD7rXLZagZg&modal=true&appId=250&pageId=4&title=

which returns error:

Action not supported 'a-dialog-chain'

when using this generated URL (stored in pData) in:

apex.navigation.dialog(pData,{} );

Note: if the modal page is not chained, the generated URL uses a-dialog-open, which does work.

This looks like a bug to me.

Comments

Post Details

Added on Mar 20 2025
19 comments
245 views