Skip to main content
Nintex Community Menu Bar

getting an error with query list in another site using caml query: Failed to query list data. Object reference not set to an instance of an object.

  • March 4, 2015
  • 6 replies
  • 29 views

Forum|alt.badge.img+2

i am getting an error in the workflow when trying to query a list in another site inside the same site collection using caml query and other site, when i log the xml it all looks good. 

here is the error:  Failed to query list data. Object reference not set to an instance of an object.

here is the xml for the caml query

<Query>

<Lists>

<List ID="{8DEC397E-694D-43FD-8496-EAA048F38ED5}"/>

</Lists>

<Where>

<Eq>

<FieldRef Name="EmployeeId"/>

<Value Type="Text">10535</Value>

</Eq>

</Where>

</Query>

6 replies

Forum|alt.badge.img+11
  • March 4, 2015

Crazy question...what happens if you try doing the exact same thing but without the CAML query. See what happens if you use UI instead.


Forum|alt.badge.img+2
  • Author
  • March 4, 2015

you cant query a list in another site unless you do a caml query


Forum|alt.badge.img+11
  • March 4, 2015

What about with the 'Call Web Service'?


Forum|alt.badge.img+2
  • Author
  • March 4, 2015

ok i did the webservice, had to capitalize q in QueryOptions in the soap editor mode


Forum|alt.badge.img+9
  • Nintex Partner
  • March 5, 2015

In your CAML query the viewfields are missing, for example :

<Query>

<Lists>

     <List ID="{8DEC397E-694D-43FD-8496-EAA048F38ED5}"/>

</Lists>

<ViewFields>

     <FieldRef Name="Title"/>

</ViewFields>

<Where>

     <Eq>

          <FieldRef Name="EmployeeId"/>

          <Value Type="Text">10535</Value>

     </Eq>

</Where>

</Query>

Hope this helps


Forum|alt.badge.img+2
  • Author
  • March 5, 2015

thanks that worked, didnt think i needed it since it had a return field and store in under that in the UI, thanks!