Published: 2/19/2026 Linking to Interactive Reports How to link to Interactive Reports ExampleAPEX_UTIL.PREPARE_URL ( 'f?p=' || v ('APP_ID') || ':NN:' || v ('SESSION') || ':::RIR,CIR:IR[MY_REPORT]IN_MY_COLUMN_NAME:' || TARGET_VALUE_TO_SEARCH || '') Where: NN: Target PageRIR,CIR : Clear Report filtersIR : Prefix Mandatory[MY_REPORT] : Static Id of Interactive Report.IN : Report filter IN operator ( see operator list below)MY_COLUMN_NAME: Interactive report column name.TARGET_VALUE_TO_SEARCH: Value of filter C = ContainsEQ = Equals (this is the default)GTE = Greater than or equal toGT = Greater ThanLIKE = SQL Like operatorLT = Less thanLTE = Less than or equal toN = NullNC = Not ContainsNEQ = Not EqualsNLIKE = Not LikeNN = Not NullNIN = 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)