Loop through all the folders in document library and fetch checked out files by specific user only
1 Answer
<Where>
<Eq>
<FieldRef Name="CheckoutUser" LookupId="True" />
<Value Type="Integer">USERID</Value>
</Eq>
</Where>
Use the above where clause to find the checked out file by a specific user and replace "USERID" with that user's id.
-
Thanks a million Divya, Danny and Bunzab, It solved my problem.raju– raju2017-04-20 11:02:39 +00:00Commented Apr 20, 2017 at 11:02
-
You can use camljs.codeplex.com link for creating a CAML query. It shows how one can create CAML query using CamlJs-Console which is a Chrome extension.Divya Sharma– Divya Sharma2017-04-21 04:19:10 +00:00Commented Apr 21, 2017 at 4:19
