Hi,
I have created a DataModel using below query :
select
HZP.PARTY_NAME,
HZP.PARTY_NUMBER
from
HZ_PARTIES HZP
where
1=1
AND HZP.PARTY_NAME IN (substr(:P_STRING1,:P_START,:P_END))
Here P_STRING1 declared as text parameter with "Text field contains comma-separated values" option enabled and P_START,P_END are Integer type parameters.
But got below error when testing this DataModel :
ORA-00939: too many arguments for function error
Please help.
Thanks
Shashidhar