I don't know why the second line's P_S_LIST_MCHN_ID
has error of
ORA-00904: "P_S_LIST_MCHN_ID": invalid identifier
for the following query
LENGTH(P_S_LIST_MCHN_ID) IS NULL OR (
LENGTH(P_S_LIST_MCHN_ID) > 0 AND M.MCHN_DTL_CD IN
(
SELECT LIST_MCHN
FROM (
SELECT REGEXP_SUBSTR (P_S_LIST_MCHN_ID, '[^,]+', 1, RN) AS LIST_MCHN
FROM DUAL
CROSS JOIN (
SELECT ROWNUM AS RN
FROM (SELECT LENGTH (REGEXP_REPLACE(P_S_LIST_MCHN_ID,'[^,]+'))+1 AS MX
FROM DUAL)
CONNECT BY LEVEL<=MX
)
)
)
)
Please help me with this!
Error you got usually means that there's no such a column in a table. It is difficult to say much about it, unless you post table description.
By the way, code you wrote can be simplified to at least
P_S_LIST_MCHN_ID
into rows (as it contains comma-separated values)