In order to run the Report Builder using RecordPoint Reporting Services you will have to connect a data source, this data source is created via the Report Builder. When you have a data source running in a project you will have to create a data set by adding the bellow XML for use by the RecordPoint Report Web Service.

Creating a RecordPoint Report Datasource

To connect to the RecortPoint Datasource:

Note: The RecordPoint Report Service does not support anonymous connections, and requires to be run as a user with access to RecordPoint.
Note: You can view availible fields, operators, structures and some examples by navigating to the report service in a browser from a SharePoint Web Server

Creating a Dataset using the RecordPoint Report Web Service

To add a Dataset using the RecordPoint Web Service, in a project with an existing RecordPoint Data source:

<Query>

  <SoapAction>http://recordpoint.com.au/GetItems</SoapAction>

  <Method Namespace="http://recordpoint.com" Name="GetItems">

    <Parameters>

      <Parameter Name="recordType" Type="String">

        <DefaultValue>Record</DefaultValue>

      </Parameter>

    </Parameters>

  </Method>

  <ElementPath IgnoreNamespaces="true">*</ElementPath>

</Query>

The Dataset can now be used to generate a Report. Without any configuration, this will display all Records without any filtering.