I'm developing an application in Oracle Application Express (APEX).
First page contains list of projects as a tabular report.
Clicking any of the rows forwards to the next page, where records can be edited. I've implemented it with following settings:
- Link column:
link to custom target
- Target:
Page in this application
Until this is fine.
My problem is how to pass actual report to the next page?
My table, which is the basis of the report has primary key (ID
), and also owner & title combination is unique. Currently ID
column is not included in the report.
Also the second page doesn't currently contain field showing ID
, as this information isn't important to the users.
I know I could set ID
column in report, and create a read only (even hidden) text box in the next page, however I'm looking for a more elegant solution. What is the standard way to solve this?