APEX
Alex, November 18, 2021 - 1:35 am UTC
What should the syntax be for a passing a multiple values from an APEX LOV into a Page report SQL statement
November 18, 2021 - 3:13 am UTC
A multi-select will return the selected values as a colon delimited string, eg
CONNOR:CHRIS:TOM
You can use the technique as per the video to convert that into rows
Faisal, May 11, 2022 - 1:29 pm UTC
Select is working but how we can use same logic to update the multiple records for the given list
May 16, 2022 - 2:35 am UTC
Not sure what you mean. Can you give us a full test case with some notes on what you want to achieve?
Oracle BI Publisher
sushanth, July 18, 2024 - 3:25 pm UTC
I am getting an error message "invalid SQL" when trying to pass multiple values through bind variable, but I am successful by passing one value using the below code. Please help me
REGEXP_LIKE(uxhmpcContaminant1MultiSele, '(^|,)(' || REPLACE(:uuu_p_contaminant, ',', '|') || ')(,|$)')
July 22, 2024 - 12:59 pm UTC
What do you mean pass multiple values through bind variable? You can only bind one value to each variable.