Discussions
Categories
- 385.5K All Categories
- 4.9K Data
- 2.5K Big Data Appliance
- 2.4K Data Science
- 453.4K Databases
- 223.2K General Database Discussions
- 3.8K Java and JavaScript in the Database
- 47 Multilingual Engine
- 606 MySQL Community Space
- 486 NoSQL Database
- 7.9K Oracle Database Express Edition (XE)
- 3.2K ORDS, SODA & JSON in the Database
- 585 SQLcl
- 4K SQL Developer Data Modeler
- 188K SQL & PL/SQL
- 21.5K SQL Developer
- 46 Data Integration
- 46 GoldenGate
- 298.4K Development
- 4 Application Development
- 20 Developer Projects
- 166 Programming Languages
- 295K Development Tools
- 150 DevOps
- 3.1K QA/Testing
- 646.7K Java
- 37 Java Learning Subscription
- 37.1K Database Connectivity
- 201 Java Community Process
- 108 Java 25
- 22.2K Java APIs
- 138.3K Java Development Tools
- 165.4K Java EE (Java Enterprise Edition)
- 22 Java Essentials
- 176 Java 8 Questions
- 86K Java Programming
- 82 Java Puzzle Ball
- 65.1K New To Java
- 1.7K Training / Learning / Certification
- 13.8K Java HotSpot Virtual Machine
- 94.3K Java SE
- 13.8K Java Security
- 208 Java User Groups
- 25 JavaScript - Nashorn
- Programs
- 667 LiveLabs
- 41 Workshops
- 10.3K Software
- 6.7K Berkeley DB Family
- 3.6K JHeadstart
- 6K Other Languages
- 2.3K Chinese
- 207 Deutsche Oracle Community
- 1.1K Español
- 1.9K Japanese
- 474 Portuguese
Oracle APEX Interactive Report Link Builder not working as expected?

I'm trying to create column links for an IR, and have the following:
Based on my understanding, this should create column links that direct to page 12, which is also an IR, and apply a filter on the column LEMMA_ID so that the only entries shown are those with LEMMA_ID values equal to the LEMMA_ID values from the clicked row of the IR on the current page. However, the links only direct to page 12, with no filter applied. Why might this be and how can I fix it?
Thank you!
Also:
LEMMA_ID values are type VARCHAR2 and the leftmost column (with the search glass icon) is the column links.
Answers
-
Hi,
... remove the backslashes in the "Value" field.
Regards
Andre
-
Thank you for the response, but it still doesn't work...
-
and apply a filter on the column LEMMA_ID so that the only entries shown are those with LEMMA_ID values equal to the LEMMA_ID
Does your IR page have a (hidden) item called IR_LEMMA_ID?
Is your IR query something like this?
select ... from ... where lemma_id = :IR_LEMMA_ID
Or ... you are looking for URL filtering, in which case you need to use the proper filtering convention:
-
The IR has the following columns:
from the IR uses the following SQL query:
select MOCKSTEMS.WORD_ID, MOCKSTEMS.STEM_ID as COMPONENT_ID, MOCKSTEMS.LABSTEM as LABCOMPONENT, MOCKSTEMS.LABSTEMCATEGORY as LABCATEGORY, 'Stem' as STEM_OR_MORPHEME, MOCKSTEMS.LEMMA_ID, MOCKWORDS.ORIGINALWORD from MOCKSTEMS inner join MOCKWORDS on MOCKSTEMS.WORD_ID = MOCKWORDS.WORD_ID union all select MOCKSTEMS.WORD_ID as WORD_ID, MOCKMORPHS.MORPHEME_ID as COMPONENT_ID, MOCKMORPHS.LABMORPHEME as LABCOMPONENT, MOCKMORPHS.LABMORPHEMECATEGORY as LABCATEGORY, 'Morpheme' as STEM_OR_MORPHEME, MOCKMORPHS.LEMMA_ID, MOCKWORDS.ORIGINALWORD from MOCKMORPHS inner join MOCKSTEMS on MOCKMORPHS.STEM_ID = MOCKSTEMS.STEM_ID inner join MOCKWORDS on MOCKSTEMS.WORD_ID = MOCKWORDS.WORD_ID
-
Your original link should work. What is the generated URL exactly?
-
This:
mock-database/mockstems-morphs-report?ir_lemma_id=lemma%3A001&clear=RR&session=102630108249187
-
This:
mock-database/mockstems-morphs-report?ir_lemma_id=lemma%3A001&clear=RR&session=102630108249187
-
Try disabling pretty url. Maybe it's a problem with pretty url's.
Or it's a problem with the escaped value that is not unescaped on your IR.
-
What do you mean by disabling pretty url? How would I do that?
-
I think the colon is causing the issue... I created another column where the colons in the LEMMA_IDs are replaced with a dash, and the linking works.
I don't know why the colons would cause issues though, because the same set up works fine when I use LEMMA_IDs containing colons to link in the "opposite direction": from page 12 back to this page. Do you have any idea what might be happening? If not, that's totally fine - thank you so much for all your help @InoL!