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!

Classic Report Column with apex.action, need help

seanzh2 days ago — edited 2 days ago

Hi, all,

Our Apex is 24.2.13, I want 2 classic reports to act like master-detail, kind of. Pls see screen shot.

If I use LINK on column “PO#”, it kind of works but it involves a page submit, more importantly, the master report pagination is lost after LINK click. I am thinking of using action like <a href="#action$log-detail?id=#INV## >#PO## </a> for PO# column , I tried select data like this then use RICH-TEXT with HTML format, or LINK with URL syntax like above…neither works. Any suggestions? Thank you

*action is created like here

apex.jQuery(window).on('theme42ready', () => {
  apex.actions.add([
    {
      name: 'log-detail',
      Label: 'API Log Detail',
      action: (event, element, args) => {
        apex.items("P10_INV").setValue (args.id); 
        // P10_INV is hidden page item, then I use Change DA to post a session state and run apex.region.refresh()
        // detail is like "select from log_detail where INV#=:P10_INV"
        return true;
      },
    },
  ]);
});

master-detail.png

This post has been answered by Karel Ekema on Mar 13 2026
Jump to Answer
Comments
Post Details
Added 2 days ago
4 comments
51 views