2 answers
Hello Swetha,I found the problem was not with SF but with the way my code was calling sequential chunks of output - it was -appending- location values onto the submitted URL upon each loop iteration so of course only worked correctly on the first loop. Changing the appending to a simple reforming with
did the trick.Thx,Chrisurl_full = "{0}/jobs/query/{1}/results?locator={2}".format( url_to_use, operation_id, header_dict['Sforce-Locator'])