Tagged Questions
0
votes
1answer
20 views
All events from Sharepoint calendar using webservice
I'm trying to get all list item in a calendar scheduled within 30 day of a given date.
ndQueryOptions.InnerXml = "<ExpandRecurrence>TRUE</ExpandRecurrence>";
...
0
votes
1answer
13 views
How to add a default value to a list when coding a sharepoint hosted app
How to add a default value to a list field when coding in sharepoint?
Here are all the possible fields:
http://msdn.microsoft.com/en-us/library/ms437580.aspx
DefaultValue is not in this list.
This ...
1
vote
2answers
74 views
SharePoint CAML query works in builder but not in code
I have a query that is working when using any CAML query builder, when in using it in c# for a SharePoint web part, it always returns no results.
using (SPWeb ThisWeb = ThisSite.OpenWeb())
{
...
1
vote
2answers
42 views
CAML IN operator and AND operator with multiple condition
The Following CAML Query Not Working for me.. I am not aware much about sharepoint platform. i am using SP 2007 and trying to use IN operator for a lookup field.
"<Where>"
...
0
votes
0answers
21 views
Compare sharepoint membership with value
I must customize a list view. I must create a query to filter items of the list. A part of the query is about to check if current user is an administrator.
I would like something like this:
...
1
vote
3answers
81 views
CAML- WebService Sharepoint
Hello stackoverflow community
I got a load of help from this forum. Though this time i couldn't find.
I Made an ASP.NET application and I try to use a SharePoint WebService to get some Items of a ...
0
votes
0answers
83 views
CAML Query using “IN” clause not working for external lists
The error message I get is: "Error parsing CAML query - unknown operation."
I have tried out the example suggestion from the following post and it did not work with an external list.
The CAML query ...
3
votes
2answers
1k views
U2U Caml Query Builder no longer available?
I'm trying to download the fantastic U2U Caml Query Builder but all the links I'm finding are dead and I can't find any references to it on the u2u site. Has it been end-of-lifed? Does anyone know of ...
0
votes
1answer
182 views
Using CAML to Update “Person or Group” field in SharePoint
My CAML query not work if it contain any "Person or Group" fields.
Here is my CAML:
<Batch OnError="Continue" ListVersion="17" PreCalc="TRUE">
<Method ID="1" Cmd="New">
<Field ...
0
votes
1answer
117 views
how to make sharepoint CAML query works more efficienctly
I am now working on sharepoint CAML query. to fetch out item by a given name from a huge resources library which full of images, documents, videos and so on.
I didn't know whether sharepoint index ...
0
votes
1answer
20 views
ServerException was Unhandled
Getting this error:
ServerException was Unhandled and when I fix my query I don't get the exact results when I filter it on SharePoint.
<View>
<Query>
<Where>
<And>
...
0
votes
0answers
42 views
The category fetch all images in the list
I have tow web part one which have the categories and fetch them from sharepoint list
like that
<asp:DataList ID="Dtfolder" runat="server" bordercolor="Black" cellpadding="0" ...
0
votes
2answers
264 views
Can we query and fetch data from LIST between different subsites using CAML Query.?
Have LIST created under one site, can the same LIST be used to fetch data from other site using CAML Query.?
eg:
Consider a LIST "xxx" created under SitePages/AAA/Lists/
Can i access the LIST "xxx" ...
0
votes
1answer
146 views
CAML Query for Week and Month not working
I following CAML Query does not work:
<Where><DateRangesOverlap><FieldRef Name=\"EventDate\" /><FieldRef Name=\"RecurrenceID\" /><Value Type=\"DateTime\"><Week ...
1
vote
1answer
221 views
SharePoint CAML query Orderby does not support descending attribute.?
Trying to fetch data from SharePoint List using CAML query.
Am using the attribute Descending, but does not work as expected.
Please find the code below.
<OrderBy>
<FieldRef Name='ID' ...