Tagged Questions
The spsitedataquery tag has no wiki summary.
2
votes
1answer
518 views
How to programmatically get pages which is pending for approval?
I having a Site with multiple SubSite inherited,
each of the SubSite got a default Sharepoint approval workflow attached on Pages Library,
therefore, whenever the pages is submit for approval,
...
1
vote
1answer
1k views
SPSiteDataQuery: Filtering Content Types in SharePoint 2010
In SharePoint 2007 executing a SPSiteDataQuery with filter for content types worked as expected.
<Where>
<Eq>
<FieldRef Name='ContentType'/>
<Value ...
1
vote
1answer
1k views
need to convert SPQuery on a single document library to SPSiteDataQuery on all document libraries in the site
I need help converting the following code snippet to use SPSiteDataQuery instead of SPQuery b/c I need to query accross all Document Libraries in the site.
Here's the original code:
using (SPWeb ...
0
votes
2answers
501 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
1answer
253 views
Can a SharePoint Calculated field check for existence of other columns?
I want to use OrderBy in SPSiteDataQuery to sort items by data, however, the field containing the date differs between the content types.
Can this be solved by sorting with a calculated field? I am ...
0
votes
2answers
612 views
Getting URL for item using GetSiteData in Sharepoint
I'm using web.Site.MakeFullUrl((new SPFieldLookupValue(row["FileRef"] as string).LookupValue)) to get the URL to results in a GetSiteData query.
For some items this works fine, but for others I get ...
0
votes
1answer
360 views
SPSiteDataQuery problem with Eq on Number fields
Ok, so what I wan´t to do is to perform a SPSiteDataQuery that gives my all the SPListItems which are of a certain content type and with the field Year of 2008.
<Where>
<And>
...