Hi,
in order to map document list to adapter service input ,as You wrote, you have to use dynamic SQL adapter service (not a custom SQL). And then use as SQL something like this:
select empname, empno from emp where empno IN (${listOfIds})
the adapter service during runtime, will replace ${listOfIds} with a string that you will provide, and than it will execute the query.
So in your case, you will have to map document list to string, where each element from the list will be separated with comma, so you have to transform a list:
1111 2222 3333
to 1111, 2222, 3333 (it’s quite easy to do), and than pass the string “1111, 2222, 3333”, as an entry to adapter service.
Hope this help,
Kasper
#Adapters-and-E-Standards#Integration-Server-and-ESB#webMethods