From the Opentext document titled "Application Note - A Technical and Functional Look at Deleting Livelink Users.pdf" I took the report [K] and modified it to take user input - In the LiveReport I specified the first Input as type = number from the dropdown list. I replaced the hardcoded values with %1, and set the Param %1 as "User Input 1" - Here is my SQL Statement in the report...
select p.id "User ID", p.proxyid "Proxy ID", p.proxytype , k.name "User Nmae", m.name "Proxy User" from kuafproxy p, kuaf k, kuaf m where p.id=k.id and p.proxyid = m.id and p.id in (%1)
If I enter a single value in the prompt - the report runs fine but if I enter 2 values seperated by a comma only the first one is returned. What am I doing wrong?
select p.id "User ID", p.proxyid "Proxy ID", p.proxytype , k.name "User Nmae", m.name "Proxy User" from kuafproxy p, kuaf k, kuaf m where p.id=k.id and p.proxyid = m.id and p.id in (%1)
If I enter a single value in the prompt - the report runs fine but if I enter 2 values seperated by a comma only the first one is returned. What am I doing wrong?