★ EPPM Solutions ★ Technology ★ Business Analysis ★ ITIL ★ ITSM ★ PMBOK ★


(
uB )

Custom Implementation, Services, Training & Support through Experienced, Wise Use of Available Knowledge, Facilitating Access to Relevant Information, Research and Opportunities besides hands on EPMO and EPMS Projects. Ask !

CAML allows developers to both construct and display data. Microsoft refers to elements used to display data as "Rendering" elements.

Data Definition Elements

Data definition elements are used to define lists and sites in the same style as basic XML (but with a limited set of keywords). A simple definition of the fields in a list might look something like this:

  <Fields>

    <Field Type="Counter" Name="ID"/>

    . . . other field definitions. . .

  </Fields>

 

A specific set of tags exists to compare and branch on data within CAML as well:

  <IfEqual>

     <Expr1>

        <Field Name="CheckedOutUserId" />

     </Expr1>

     <Expr2 />

     <Then />

     <Else>

       Some more CAML

     </Else>

  </IfEqual>

 

There are also specialized tags provided for database queries.

Data Rendering Elements

CAML allows for the generation of HTML based on specific sets of tags. For example, the following example loops through some data and generates an HTML drop down menu of choices:

  <ForEach Select="CHOICES/CHOICE">

    <HTML>fld.AddChoice(</HTML>

    <ScriptQuote>

       <Property Select="."/>

    </ScriptQuote>

    <HTML>, </HTML>

    <ScriptQuote>

       <Property Select="Value"/>

    </ScriptQuote>

    <HTML>);</HTML>

  </ForEach>

 

Where CAML is Used in Sharepoint Products

In general, almost all xml files in a sharepoint installation utilize CAML. Specifically CAML is very important in site and list definitions, via the Onet.xml files as well as other corresponding xml files. Here the CAML is used to define what elements exist on an instance of a site, and the display of these sub-elements, while the aspx files are used to define how to arrange and display those elements to form the site.

CAML can be used by Software Developers to query against Sharepoint lists and views, when programming against the SharePoint API (CAML is supported by Sharepoint Web Services and by the Sharepoint Object Model).

CAML query syntax can be created graphically from an existing Sharepoint list by using the U2U CAML Generator tool.

External links

 

0 comments:

Post a Comment

Thank you.