Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
4answers
168 views

Better to use “and” or “in” when chaining “let” statements?

I realize this is probably a silly question, but... If I'm chaining a bunch of let statements which do not need to know each other's values, is it better to use and or in? For example, which of ...
8
votes
2answers
5k views

SharePoint: How to get Top 5 records by using CAML query from a list

I have already created a webpart to show the data from list, but I really want is to only show top 5 records from that list (by using CAML query). Does anyone know how to do this? Many thanks. ...
6
votes
2answers
1k views

Tail-recursive merge sort in OCaml

I’m trying to implement a tail-recursive list-sorting function in OCaml, and I’ve come up with the following code: let tailrec_merge_sort l = let split l = let rec _split source left right = ...
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 ...
5
votes
2answers
186 views

Call an external program from within OCaml

I'm pretty new to OCaml and was trying to figure out how to call an external program from within OCaml. I've been following the documentation here, and making the following call: Unix.execv "cat ...
5
votes
8answers
741 views

hedge funds / financial services: caml. why?

speaking to a number of quants / hedgies, i came to the conclusion that a large number of them seem to be using their a homebrew or caml (for the most part). what many of them couldnt answer was why. ...
5
votes
4answers
3k views

“does not contain” in CAML?

Hallo, in CAML i can query SharePoint Listitems using the "Contains"-element - but there is no "does not contain"-element i could use. So what is the best way to get the items that do not contain a ...
5
votes
5answers
7k views

CAML queries: how to filter folders from result set?

I'm using caml query to select all documents which were modified or added by user. Query runs recursively on all subsites of specified site collection. Now problem is I can't get rid of folders which ...
4
votes
2answers
4k views

CAML query to a SharePoint list, order by a lookup field

I'm attempting to pull a list from SharePoint via CAML and I want the list returned ordered by a specific field. The field is a lookup field. The query comes back unordered when I set the OrderBy to ...
4
votes
4answers
2k views

How to create a wiki page (=item) in Sharepoint programmatically?

how do I create a wiki page and add a title, as well as some content in sharepoint (via webservices)? This is my SOAP message so far: <soapenv:Body> <soap:UpdateListItems> ...
4
votes
3answers
790 views

Good beginning CAML tutorials?

right now I'm trying to get CAML down pat in SharePoint, where is the best place to start for this? The MSDN content doesn't impress me much as being somewhat cryptic, though the Wikipedia entry was ...
4
votes
4answers
11k 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
261 views

How to get all folder AND items from a sharepoint list?

I have a list containing folders and items. The folders are a specific content type based on folder, but with properties. A folder can contain subfolders and subitems. A subfolder can contain ...
3
votes
2answers
132 views

Sqlite bindings for OCaml

I have been looking for SQLite bindings for OCaml. I stumbled upon http://hg.ocaml.info/release/ocaml-sqlite3/file/b28bff3ff215 which look good and current, but there is no documentation whatsoever ...
3
votes
1answer
535 views

SharePoint | Filter a Calendar with a query string

I am looking for a way to filter a SharePoint Calendar WebPart by using a query string. It looks like the default "Query string (URL) Filter" web part doesn't work for this. Thanks for the help, ...
3
votes
2answers
258 views

Adding a ListItem to a list in Sharepoint 2007

I am trying to add an item to a list in Sharepoint. At the moment I am trying to add the item via CAML I can read the list, and query the list but I have not been able to add to the list. All the ...
3
votes
1answer
1k 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' /> ...
3
votes
3answers
1k views

IS CAML the only way to Query MOSS?

CAML is hard to learn, and dificult to use, is there a better way to get results from MOSS, besides using CAML queries? And not referring to the Web Services, which are slower, or the object model, ...
2
votes
1answer
22 views

using <In> tag in CAML Query sharepoint

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> ...
2
votes
2answers
100 views

How to modify unary operators in OCaml?

In OCaml, it is very easy to access to a binary operator, such as "+": # (+);; ( + ) : int -> int -> int And modify them as I wish: # let (+) = (+.);; ( + ) : float -> float -> float ...
2
votes
1answer
246 views

Searching Attachments in SharePoint 2010 Lists using CAML

I need help on searching attachments i.e Word Document, PDF etc which are attached to the list during inserting Item in SharePoint 2010 using CAML queries. I tried with this query <Query> ...
2
votes
1answer
196 views

Need Help w/ SharePoint CAML Query

Here's what I'm doing (this is a quick search on Google and just one of the first results): http://msdn.microsoft.com/en-us/library/cc300163(v=office.12).aspx My databound DropDownList items looks ...
2
votes
1answer
389 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 ...
2
votes
2answers
2k views

CAML query with nested AND's and OR's for multiple fields

I am working on proof-of-concept code to dynamically generate CAML based on keywords provided to a highly-specific search web service that I am writing. I am not using the SharePoint-provided search ...
2
votes
3answers
3k views

SharePoint get current user attribute

I have a page that needs to retrieve the department for the logged-in user. Ideally I'd like to be able to do it through a JavaScript SOAP CAML query. I have the user's id (which I'm assuming ...
2
votes
2answers
1k views

CAML > get an item by it's URL

Should this CAML be working. (I tried it with u2u and it does not display the URL column.) I get this error. {System.ApplicationException} = {"One or more field types are not installed properly. Go to ...
2
votes
1answer
271 views

SPQuery : Difference between Query and ViewXml properties?

Hello SharePoint developpers ! I can't deeply understand the difference between Query and ViewXml properties in the SPQuery object. In the msdn documentation, it's written : Query : Gets or sets ...
2
votes
1answer
941 views

Datetime comparaison in CAML Query for Sharepoint

i'm trying to have some item from a sharepoint list, depends on date in a custom column. I've created my query with 2U2 Caml Builder, and that's worked but when I put it in my own code in my webpart, ...
2
votes
3answers
4k views

Getting list item field values from a SP List using Client Object Model

What is the optimal way to get a list items and their properties from a SP list using Client object model? Here is the code I'm using. string server = "http://localhost"; ...
2
votes
1answer
1k views

Using SharePoint's lists.asmx and UpdateListItems to delete an item by Guid or UniqueId

I am trying to call the lists.asmx UpdateListItems() to delete a list item by unique id or guid. The following batch xml fails with "Invalid URL Parameter. The URL provided contains an invalid ...
2
votes
1answer
128 views

Querying SharePoint farm for all lists of certain type

I've created a list definition feature and in the elements.xml I've set its Type="111333". I've installed this list feature on several webs in my farm and created many lists from it. Is there an ...
2
votes
7answers
459 views

Stack overflow using recursive functions in OCaml

I have a little problem: I want to solve this problem with OCaml, so I tried this -> -> let rec somme x = if ( nor (bool_of_int (x mod 3)) (bool_of_int (x mod 5))) then x + (somme x-1) else (somme ...
2
votes
1answer
279 views

Create list in existing site collection from a feature

I have created a feature, a publishing site, in Visual Studio to MOSS - this feature contains a masterpage, some page-templates, some site columns (grouped to match each page-template) and som custom ...
2
votes
3answers
3k views

SharePoint field not showing in Display/Edit/New pages

I've written a schema for a list that only needs to add one column to the default custom list which is a number field called months. The field is shown on the default view and is indeed created on the ...
2
votes
2answers
580 views

Retrieve all Master Pages for a SharePoint Site?

How can I determine programmatically what master pages (custom and OOTB) that are available for to use for a web site in SharePoint? Thanks, MagicAndi
2
votes
1answer
1k views

Update SharePoint file field that is of type choice muliple selection

I am using UpdateListItems method (Lists.asmx web service) to update fields of an uploaded document in one SharePoint document library. In my case, I have a document library called Schedules. In it, ...
2
votes
1answer
606 views

How does SharePoint store the CAML for a view's filter?

I'm trying to create a CAML query for a list in SP. I thought of using the Modify view pages to create a basic view including a filter, then use some code to examine the Query Prop of the SPView: ...
2
votes
1answer
1k views

Difference between StaticName and InternalName (in the SPField class)

I want to make a CAML query semi-smart - in that I can give it a Title (which is what the end user sees) and it looks up the appropriate "Title" to pass as part of the CAML query: var caml = ...
2
votes
2answers
694 views

sharepoint validate custom field

I cave created a custom list in sharepoint (created and provisioned to the 12 hive) how can i perform validation on certain fields of the list when a new list item is added? i think i can do it ...
2
votes
1answer
1k views

SharePoint Lists.asmx: query returns “deleted” Calendar items?

While running caml query's against the sharepoint list.asmx service, I have this strange behaviour that the GetListItems method also returns deleted items; found item: test found item: already done ...
2
votes
1answer
930 views

Get Max Date Using CAML Query From alist

Dear all, how can i get max Date and Min Date from a list Date Column
2
votes
0answers
151 views

CAML to show only Sites in Sharepoint 2007

I need to view only the available sites defining a CAML-structure view in the Content and Structure Reports webpart. I've tried using both Stramit Caml Viewer and U2U Caml Query Builder 2007 but they ...
2
votes
1answer
487 views

Disabling default XML Schemas in Visual Studio?

I have recently started using CAML.NET IntelliSense for SharePoint with Visual Studio 2008; which works great; however whenever I create a new project using STSDev 2008 (and thus generate feature.xml ...
2
votes
2answers
3k views

CAML Query not ordering properly

Can anyone help me with this CAML query? When I flip the Ascending attribute from TRUE to FALSE (have also tried True and False), it doesn't re-order the result set. The rest of the CAML is ...
2
votes
1answer
2k views

SharePoint A-Z groupby in CAML

I'm using the content query web part and have exported it to a webpart file to allow me to change the queryoverride and groupby elements. I want to group the results alphabetically, so I thought that ...
2
votes
2answers
726 views

CAML to HTML

I'm invoking one of SharePoint's web service APIs that returns a CAML fragment. I've searched the interweb far and wide but I've been unable to figure out how to make this CAML fragment to render as ...
1
vote
1answer
52 views

How to check ContentType.Hidden using the CAML Query?

I want to filter from the CAML query to ListItem.ContentType.Hidden. with SharePoint To Linq like this Code. var query = from item in list.GetItems(CamlQuery.CreateAllItemsQuery()) ...
1
vote
1answer
40 views

Deploy custom list to SharePoint without console access

I would like to extend a sharepoint site hosted by Network solutions by creating a new list type. I'd like to develop a custom List using Visual Studio (VS 2008, SP 2007). I can get the ...
1
vote
0answers
149 views

How to get Attachment file sizes in SharePoint 2007 in a SOAP request

I have a custom list on a sharepoint server. Each list item contains multiple file attachments . I am connecting to server with a SOAP-envelope request with this: <?xml version="1.0" ...
1
vote
1answer
39 views

Is there a way to use something like IN for a CAML query?

I'd like to query a list using multiple ids at the same time. In straight SQL, I could just use IN(ID1, ID2, ID3). Is there any way to do this within a CAML query?

1 2 3 4 5