Tagged Questions
6
votes
6answers
10k views
CAML query that includes folders in result set
I'm trying to write a CAML query that executes against a specific SPList, scoped to a specific folder, recursive from that point, and returns all ListItems (which meet a criteria) and Folders.
Here's ...
4
votes
4answers
12k views
What is the best way to retrieve distinct / unique values using SPQuery?
I have a list that looks like:
Movie Year
----- ----
Fight Club 1999
The Matrix 1999
Pulp Fiction 1994
Using CAML and the SPQuery object I need to get a distinct list of ...
3
votes
1answer
514 views
How to get all folders in a SPList, then checking permission “Contribute” for current user
I have a sharepoint list like that:
List
---------Folder 1
-----------------Item 1
-----------------Item 2
---------Folder 2
-----------------Item 1
-----------------Item 2
---------Folder 3
...
3
votes
1answer
2k views
Get items from sharepoint list by Title field with ignore care using Caml or SPQuery
I want to get data from SharePoint List using CAML and filtered by Title with ignore case like
<Query>
<Where>
<Eq>
<FieldRef Name='Title' />
...
2
votes
1answer
511 views
SPQuery and RowLimit
I have around 10000+ rows(Listitems) in a list I want to query.
I want to iterate each of the item in a timerJob - but I cant take all of them at a time
since : Object Model Override - NO, ...
2
votes
1answer
947 views
Enumerate all folders in a SharePoint list recursively
Is it possible to get a list of all folders in a SharePoint document library, using SPQuery?
Something you could get in file system, if you opened Windows command prompt and ran
dir /b /A:D /S
...
1
vote
1answer
272 views
How to filter a Sharepoint:ListView
In VS2010 I have a SharePoint 2010 project with an Application Page. In this simple page I have header information about an order and a SharePoint:ListView for the product detail. So, I just want to ...
1
vote
4answers
617 views
CAML JOINS using SharePoint
Assume that there are Emp and Dept tables.
Emp Table has
EmpID
FirstName
LastName
DeptName
Email
Dept table has
DeptID
DeptName
i have to display all the employee details based on DeptName ...
1
vote
1answer
3k views
SharePoint's List.GetItems(view) returns ALL items instead of filtered view items
I'm trying to get a count of items in a list, based on a view. Every method I've tried so far only returns the grand total of the list. I've tried just about every method I've run across while ...
0
votes
2answers
30 views
filter items by Site name and List Name using SPSiteDataQuery
I am listing files from multiple folders using the below code:
SPSiteDataQuery q = new SPSiteDataQuery();
q.Lists = "<Lists BaseType='1'/>";
q.Query = "<Where> <Where>
...
0
votes
1answer
22 views
Data returned if GetItems if query did not match
This is really a simple question. What does GetItems method return if SPQueryobject did not find any match? if i call the update method, if it did find anything. Will it add it?
I'm at the point of ...
0
votes
1answer
303 views
Sharepoint SPQuery on SPView problem
I have created a CAML query to get some particular items on a list, that contains OR:
<Or>
<Eq><FieldRef Name='Title'/><Value Type='Text'>tileA</Value></Eq>
...
0
votes
0answers
227 views
SPQuery : OrderBy not working
SPSite site = new SPSite("http://localhost:81");
SPWeb thisWeb = site.OpenWeb();
SPList personnesList = thisWeb.GetList(thisWeb.Url + "/Lists/Personnes");
SPQuery ...
0
votes
1answer
150 views
Sharepoint SPQuery problem
I'm trying to use GetItems() method on a SPList and I pass SPQuery to it. The problem is, it return all the items from my SPList instead of just the filtered ones. My query looks like this:
...
0
votes
0answers
547 views
SharePoint 2010 SPQuery - Order by Content Type?
Just wondering if this is even possible before I continue researching. Is it possible to order by content type? I seem to always get the same result no matter what I do with the Order by. Using the ID ...
0
votes
2answers
546 views
SharePoint: SPQuery Calculated fields filter does not work
I have a calculated field in my list and I am trying to use filter on this field. For some reason, the following query always returns all items instead of a filtered item collection.
Could you please ...
0
votes
2answers
1k views
SPQuery : Joining lists and where in the foreign list
Hello Sharepoint developers !
Have you ever tried to do a join between lists and in both of those lists needed to place a where clause?
I can do it in the first list, but can't find out how to place ...
0
votes
1answer
369 views
SharePoint: Validating SPQuery
I am writing an internal API for my company which allows users to pass in SharePoint CAML query.
In side my function I take to user's query, and add some additional elements to it and then use the ...
0
votes
1answer
451 views
How can I write a SPQuery to filter items based on a LinkFieldValue?
I need to select a single value from a SharePoint list based on a field value. The type of the field is LinkFieldValue. How should I write the CAML query?
When I select the items with an empty query, ...
0
votes
1answer
350 views
Can I retrieve additional fields for a SPListItem from SPQuery which had ViewFields set?
I am retrieving SPListItems from SPList with a SPQuery that has ViewFields set. I am using ViewFields to improve performance. However, for some items, I need additional data. I know I can just ...
0
votes
2answers
2k views
How do I get recurring SharePoint Calendar List Items
Im running this query on the same server as the web application, so SPQuery.ExpandRecurrence should work. However, with the following I only get 3 items in the returned list collection vs. the 3 ...
-1
votes
2answers
121 views
SPQuery search doesn't work with “BeginsWith”
So, my problem is that my knowledge of CAML and Sharepoint is very poor.
Question: I need SPQuery for building query search, search text I have from textbox. I expect that my query returns me ...