Hi All,
I have below NVL condition(before)
(
NVL(PS.PAYMENT_METHOD_LOOKUP_CODE, 'CHECK') = :B6
)
later i added OR condition and the PLSQL concurrent program is taking long time.. still running.
(
NVL(PS.PAYMENT_METHOD_LOOKUP_CODE, 'CHECK') = :B6
OR NVL(PS.PAYMENT_METHOD_LOOKUP_CODE, 'WIRE') = :B6
)
Is this OR causing the issue?
Thank you,