runNamedQueryMultiBoContinue

Retrieves the next batch of records from a query where the result size is larger than the maximumResultCount specified in the original call.

Parameters

continuationToken is a continuation token for the next set of records that are included in the query result. It returns the same quantity of records from the previous call to runNamedQueryMultiBo. For example, if the initial call to runNamedQueryMultiBo has a start number of 1 and maximumResultCount has a start number of 10, the next call that uses runNamedQueryMultiBo returns 10 records that start from record 11.

Returns

A QueryMultiBoResult object is returned.

Errors

InvalidContinuationTokenException
The token is no longer valid.
AccessException
The user does not have access to the record.
java.lang.Exception
A system error occurred when the request was being processed.

Sample request

<soapenv:Envelope 
	xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" 	xmlns:ws="http://ws.tririga.com" xmlns:dto="http://dto.ws.tririga.com">
   <soapenv:Body>
      <ws: runNamedQueryMultiBoContinue >
         <ws:continuationToken>
            <dto:tokenString>B36189CC1AB8D7989B867AC33C218A63-1163464971156-0.9400269990980882</dto:tokenString>
         </ws:continuationToken>
      </ws:runNamedQueryMultiBoContinue>
   </soapenv:Body>
</soapenv:Envelope>

Sample response

<soap:Envelope 
	xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" 	xmlns:xsd="http://www.w3.org/2001/XMLSchema" 	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
   <soap:Body>
      <runNamedQueryMultiBoResponse xmlns="http://ws.tririga.com">
         <out>
              <continuationToken xmlns="http://dto.ws.tririga.com">
                  <tokenString>B36189CC1AB8D7989B867AC33C218A63-1163464971156-0.9400269990980890</tokenString>
              </continuationToken>
              <queryMultiBoResponseHelpers>
                <QueryMultiBoResponseHelper>
                  <boId>10003240</boId>
                  <queryMultiBoResponseColumns>
                     <QueryMultiBoResponseColumn>
                        <displayValue>Facility Project Test 1</displayValue>
                        <index>0</index>
                        <module>triProject</module>
                    <bo>triFacilitiesProject</bo>
                        <label>Name</label>
                        <name>triNameTX</name>
                        <multiBoFieldIndex/>
                        <section>RecordInformation</section>
                        <uom/>
                        <value>Facility Project Test 1</value>
                     </QueryMultiBoResponseColumn>
                     <QueryMultiBoResponseColumn>
                        <displayValue>Captital Project Test 1</displayValue>
                        <index>1</index>
                        <module>triProject</module>
                        <bo>triCapitalProject</bo>
                        <label>Name</label>
                        <name>triNameTX</name>
                        <multiBoFieldIndex/>
                        <section>RecordInformation</section>
                        <uom/>
                        <value>Captital Project Test 1</value>
                      </QueryMultiBoResponseColumn>
                     <QueryMultiBoResponseColumn>
                        <displayValue>Captital Project Test 3</displayValue>
                        <index>2</index>
                        <module>triProject</module>
                        <bo>triCapitalProject</bo>
                        <label>Name</label>
                        <name>triNameTX</name>
                        <multiBoFieldIndex>1</multiBoFieldIndex>
                        <section> RecordInformation</section>
                        <uom/>
                        <value>Captital Project Test 3</value>
                     </QueryMultiBoResponseColumn>
                     <QueryMultiBoResponseColumn>
                        <displayValue>Steve User</displayValue>
                        <index>3</index>
                        <module>triPeople</module>
                        <bo>triPeople</bo>
                        <label>Name</label>
                        <name>triNameTX</name>
                        <multiBoFieldIndex/>
                        <section> Details</section>
                        <uom/>
                        <value>Steve User</value>
                     </QueryMultiBoResponseColumn>
                  </queryMultiBoResponseColumns>
                  <recordId>10598779</recordId>
               </QueryMultiBoResponseHelper>
            </queryMultiBoResponseHelpers>
            <totalResults xmlns="http://dto.ws.tririga.com">1</totalResults>
         </:return>
      </:runNamedQueryMultiBoResponse>
   </soap:Body>
</soap:Envelope>