ReportAccessLevel

Description

ReportAccessLevel is used to describe the access level assigned to a report. The available report access levels are listed below.

Parameters

Name Type Description
PRIVATE string This access level enables individual users to manage reports they create. Only the user who creates a private report can access, modify, or delete private reports and only if this user is granted "Manage Private Reports" privileges.
GUEST string This access level denotes a guest-level report. Users with guest-level report privileges can perform report actions for guest-level reports.
USER string This access level denotes a user-level report. Users with user-level report privileges can perform report actions for user-level reports.
MANAGER string This access level denotes a manager-level report. Users with manager-level report privileges can perform report actions for manager-level reports.

Usage

ReportAccessLevel is used to limit the reports returned in the reportsFilter argument of the GetReports call. If ReportAccessLevel is not specified, the GetReports response will not be limited by any type of access level. See ReportsFilter for further usage.

XML

The following XML snippet shows ReportAccessLevel as seen in a typical call.

<urn:reportsFilter>
    <urn:solution></urn:solution>
    <urn:project>
        <urn:displayName></urn:displayName>
        <urn:id>4</urn:id>
        <urn:uuid></urn:uuid>
        <urn:fullyQualifiedName></urn:fullyQualifiedName>
    </urn:project>
    <urn:table>
        <urn:displayName></urn:displayName>
        <urn:id>1000</urn:id>
        <urn:uuid></urn:uuid>
        <urn:dbName></urn:dbName>
    </urn:table>
    <urn:author></urn:author>
    <urn:reportType>LISTING</urn:reportType>
    <urn:reportCategory>ALL</urn:reportCategory>
    <urn:reportAccessLevel>USER</urn:reportAccessLevel>
    <urn:report>
        <urn:displayName></urn:displayName>
        <urn:id></urn:id>
        <urn:uuid></urn:uuid>
    </urn:report>
    <urn:searchByName>ALL</urn:searchByName>
    <urn:includeSubProjects>true</urn:includeSubProjects>
    <urn:createdDateFrom>2007-06-20T15:35:38-07:00</urn:createdDateFrom>
    <urn:createdDateTo>2007-07-20T15:35:38-07:00</urn:createdDateTo>
</urn:reportsFilter>