I am using below CAML query but when I run,it returns all data from document library instead of only corresponding to the < Values> specified in the query

<Query>
<Where>
<In>
 <FieldRef Name='Entity_x0020_Served' />
<Values>
 <Value Type='Text'>Payment Solutions</Value>
 <Value Type='Text'>Third Party Processor</Value>
</Values>
</In>
</Where>
</Query>

Am I missing anything in this? Thanks, Rushikesh

link|improve this question

52% accept rate
feedback

1 Answer

up vote 2 down vote accepted

*strong text*Such syntax would not work in SharePoint 2007, you would have to make it or(equals "Payment Solutions", equals "Third Party Processor"). Maybe something has changed in SPS2010, but I'd rather suggest you rewrite it in this form.

AND you don't add the Query element to your queries!

<Where> 
 <Or> 
  <Eq>
     <FieldRef Name='Entity_x0020_Served' /> 
     <Value Type='Text'>Payment Solutions</Value> 
  </Eq>
  <Eq>
     <FieldRef Name='Entity_x0020_Served' /> 
     <Value Type='Text'>Third Party Processor</Value> 
  </Eq>
</Or> 
</Where> 

Update Found out this is valid syntax in SPS2010 (http://msdn.microsoft.com/en-us/library/ie/ff625761.aspx). Anyway, you should strip out the Query element.

link|improve this answer
Thanks for your reply..I will check..I have refered the below link for <In> element MSDN – Rushikesh Jan 24 at 12:24
I checked the query which you have suggested to me It works fine :) but how can we use the <In> tag ?? Thanks a lot – Rushikesh Jan 24 at 12:35
Just use the query you started with, but remove the <Query> and </Query> fragments. – naivists Jan 24 at 15:21
When I use the query by removing <Query> and </Query> getting following exception... System.ArgumentException: Value does not fall within the expected range. at Microsoft.SharePoint.Library.SPRequestInternalClass.GetListItemData WithCallback – Rushikesh Jan 25 at 7:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.