SharePoint Custom Tasks

These Custom Tasks perform a variety of SharePoint operations to manipulate files or data from SharePoint lists.

Filtering SharePoint Data #

On the Filter tabs for:

  • Fill Fields from Sharepoint
  • Fill Dropdown from Sharepoint
  • Fill Dropdown Object from Sharepoint

The Filter property optionally expects the WHERE node of a CAML query to provide an additional filter. For example:

<View>
   <Query>
      <Where>
         <Contains>
            <FieldRef Name="Field1"/>
            <Value Type="Text">{$FORM:FieldName}</Value>
         </Contains>
      </Where>
   </Query>
</View>

In this example, the value of a Form field named FieldName is being passed to the WHERE node, which specifies that the Field1 field of the data returned from SharePoint must contain the value of the FieldName Form field.

Note BP Logix does not offer assistance with CAML queries via free Technical Support, as they count as custom development. We'd be happy to assist you via a Direct Assistance engagement.