Reputation: 717
Upvotes: 0
Views: 5477
Reputation: 717
Credits : 1 2
STEP 1 - Define static id for interactive report region
STEP 2 - Change URL syntax to contain - Report ID | Filter | COLUMN NAME :
( Example 1 : will add interactive report filter with IN operator )
http://mywebsite.com/ords/f?p=103:2:::::IR[MOS]IN_SR_COMPANY:\Coca Coba,Gudai Exchange Holdings\
Where :
Result:
( Example 2 : will add interactive report filter with contains operator and will clear previous filters )
http://mywebsite.com/ords/f?p=103:2::::CIR:IR[MOS]C_SR_COMPANY:\GMC Sport Company\
Where :
Result:
LIST OF VALID OPERATORS (oracle apex official documentation) :
Valid operators include:
C = Contains
EQ = Equals (this is the default)
GTE = Greater than or equal to
GT = Greater Than
LIKE = SQL Like operator
LT = Less than
LTE = Less than or equal to
N = Null
NC = Not Contains
NEQ = Not Equals
NLIKE = Not Like
NN = Not Null
NIN = Not In (escape the comma separated values with a leading and trailing backslash, )
IN = In (escape the comma separated values with a leading and trailing backslash, )
ROWFILTER = Row Text Contains (this searches all columns displayed in the report with type STRING or NUMBER)
Upvotes: 6