I am trying to download from SOAP API. The supplier has set a limit to download 1000 records per select. I would like to set up "for loop" container to iterate all records in one file.
The Url expect two variables for data i.e Select and Skip. For this I have added two variables @select and @skip and create a web service task and set up the variable with @Select and @Skip.
this webservice task runs ok, but i am stuck on working out a logic to loop through and download all rows in one file.
for the first run the @skip should be 0 for the consecutive run @skip should be previous value of @skip+1000.
Can someone please help to achieve this? Thanks