Hi,
Apologies if this has already been answered - I couldn't seem to get the right mix of search terms to find what I was looking for.
I'd like to know if there is a way to use the output or APEX_UTIL.string_to_table directly in SQL without any extra coding (I know I could create VARCHAR2 table type and CAST that to a table - essentially I'm wondering if this has already been done for you or not with APEX).
So the end query would be something like:
UPDATE my_table
SET column_a = 12345
WHERE my_id_column IN (SELECT column_value FROM TABLE(APEX_UTIL.string_to_table(:P1_MY_MULTISELECTLIST)));
Regards,
Gareth.