New to Claude Skills? Learn how to install them →

forcedotcom on GitHub

Salesforce Custom Report Type Generator

OfficialFree

Create and validate Salesforce custom report types efficiently.

Get this skill

Free · Opens the source repo

What Salesforce Custom Report Type Generator does

The Salesforce Custom Report Type Generator skill is designed for developers and administrators who need to create or manage Custom Report Type (CRT) metadata in Salesforce. This skill provides detailed guidance on how to define the data framework for reports, enabling users to specify primary objects, related objects, and the relationships between them. By using this skill, users can ensure that their custom reports are tailored to their specific business needs and can include fields from related objects, enhancing reporting capabilities beyond standard options.

This skill is particularly useful when users need to expose fields for reporting across multiple related objects or when they are dealing with complex reporting frameworks. It covers essential elements such as the required XML structure, the significance of each element within the .reportType-meta.xml file, and the critical rules that must be adhered to for successful deployment. Users will find it invaluable for troubleshooting deployment errors related to report type metadata, ensuring that they can create effective reports without running into common pitfalls.

The skill also emphasizes the importance of understanding join semantics, allowing users to control whether to include primary records without related records through inner or outer joins. This flexibility is crucial for generating reports that accurately reflect the underlying data relationships. Additionally, the skill provides examples of valid report type metadata files, which serve as practical references for users looking to implement their custom report types efficiently.

Overall, this skill is an essential resource for anyone involved in Salesforce reporting who requires a deeper understanding of custom report types and their configuration. It streamlines the process of creating and validating report type metadata, making it easier for users to produce meaningful reports that drive business insights.

When to use it

Use this skill when you need to create or validate .reportType-meta.xml files for Salesforce custom reports.

When not to use it

This skill is not suitable for running or editing existing reports, or for creating report folders and dashboards.

What you can build with it

Creating a New Custom Report Type

When a developer needs to create a new custom report type for a specific business requirement, they can use this skill to generate the necessary metadata.

Validating Report Type Metadata

An administrator can utilize this skill to validate their .reportType-meta.xml files before deployment, ensuring compliance with Salesforce requirements.

Troubleshooting Deployment Issues

When encountering errors during the deployment of report type metadata, users can refer to the skill for guidance on resolving common issues.

How to install Salesforce Custom Report Type Generator

View source

1. Install with the skills CLI

npx skills add forcedotcom/sf-skills/platform-custom-report-type-generate --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by forcedotcom

Specification

Salesforce Custom Report Type Metadata Knowledge

Overview

Custom Report Types (CRTs) define the data framework for Salesforce reports. They specify a primary object, up to 3 related objects, the relationship (join) between them, and which fields are available in the report builder.

Purpose

  • Enable reporting across custom objects and custom relationships not covered by standard report types
  • Curate a focused set of fields for report builders (including fields reached via lookup)
  • Control inner/outer join behavior to include or exclude primary records without related records

Configuration

File extension: .reportType-meta.xml. The file basename is the report type's developer name (e.g. AccountsWithProjects.reportType-meta.xml). Each CRT is a single file, not nested under an object folder.

Key Elements

Top-level <ReportType> children:

ElementRequiredNotes
<fullName>YesAPI identifier; must match the file name. Letters, numbers, underscores; must begin with a letter; no spaces; no trailing underscore; no consecutive underscores
<label>YesHuman-friendly name shown in the report type picker
<description>RecommendedState the business "why" — who uses this and what they learn
<baseObject>YesAPI name of the primary object (e.g. Account, Project__c). Cannot be changed after initial creation. All objects, including custom and external, are supported (external objects from API 38.0+)
<category>RecommendedReport builder category — see references/category-values.md
<deployed>Yestrue to expose to users; false while building/iterating
<join>ConditionalAdds a related object and its join behavior. Nest further <join> blocks for deeper relationships
<sections>RecommendedGroups of columns available to the report type. Though not strictly required, a report without columns isn't useful

<sections> (group of columns) sub-elements:

ElementRequiredNotes
<masterLabel>YesSection heading shown in the report builder
<columns>ConditionalOne per field exposed in the section

<columns> (single field) sub-elements:

ElementRequiredNotes
<field>YesField API name (or dotted lookup-traversal path)
<table>YesThe object the field belongs to — base object name or dotted relationship path
<checkedByDefault>Yestrue if the column is selected by default in the report builder
<displayNameOverride>NoCustom column label shown in the report builder, overriding the field's default label

Critical Rules (Read First)

Rule 1: If <fullName> Is Present, It Must Match the File Name

In source format, fullName is inherited from Metadata and derived from the file name, so the <fullName> element is technically optional. The repo convention is to include it. If you include <fullName>, its value must equal the file name (everything before .reportType-meta.xml) exactly — same characters, same casing, same underscores.

Wrong — file name and <fullName> differ:

  • File: account_projects.reportType-meta.xml
  • <fullName>AccountProjects</fullName> (Mismatch: file uses account_projects, fullName uses AccountProjects)

Right — file name and <fullName> are identical:

  • File: AccountProjects.reportType-meta.xml
  • <fullName>AccountProjects</fullName>

Rule 2: Join Semantics — outerJoin Controls Inclusion

Each <join> block has an <outerJoin> element that determines which primary records appear in the report:

<outerJoin> valueBehaviorReport Builder Label
falseInner join — only primary records that HAVE at least one related record"Each 'A' record must have at least one related 'B' record"
trueOuter join — all primary records, with or without related records"'A' records may or may not have related 'B' records"

Default when unspecified: Use true (outer join) when the user wants to see all primary records regardless of children. Use false when the report only makes sense if children exist.

Rule 3: Each Object Needs Its Own <sections> Block

Every object in the CRT (primary + each joined object) must have a corresponding <sections> block that lists the fields exposed for reporting. Without a section for an object, none of its fields appear in the report builder.

  • <masterLabel> on each section is the section heading in the report builder
  • <columns> entries list the fields — each with a <field> (API name) and <table> (object API name)
  • For fields reached via lookup, use the relationship path in <field> (e.g. Owner.Name with <table> set to the owning object)

Rule 4: Field API Names, Not Labels

Use exact API names for fields: standard fields use their defined names (Name, CreatedDate, OwnerId), custom fields use Field__c. Custom objects must include __c.

Wrong:

  • <field>Account Name</field>

Right:

  • <field>Name</field> with <table>Account</table>

Rule 5: Relationship Path for Joined Objects

When adding a <join>, the <relationship> element must use the child relationship name as defined on the lookup/master-detail field pointing from the child object to the parent. For custom relationships, this typically ends in __r.

Wrong:

  • <relationship>Project</relationship> (for a custom child relationship)

Right:

  • <relationship>Projects__r</relationship> (child relationship name)
  • <relationship>Contacts</relationship> (standard, non-custom child relationship)

Rule 6: Maximum 4 Objects Total in a Join Chain

A single CRT can join a maximum of four objects total (the base object + up to 3 additional objects via nested <join> blocks).

Rule 7: No Inner Join After an Outer Join

Once the join chain contains an outer join (<outerJoin>true</outerJoin>), every subsequent nested join must also be an outer join. An inner join that follows an outer join earlier in the sequence is not allowed.

Wrong:

<join>
    <outerJoin>true</outerJoin>        <!-- outer join first -->
    <relationship>Contacts</relationship>
    <join>
        <outerJoin>false</outerJoin>   <!-- WRONG: inner join after outer -->
        <relationship>Assets</relationship>
    </join>
</join>

Right:

<join>
    <outerJoin>true</outerJoin>
    <relationship>Contacts</relationship>
    <join>
        <outerJoin>true</outerJoin>    <!-- outer stays outer -->
        <relationship>Assets</relationship>
    </join>
</join>

Rule 8: <table> for Joined Objects Uses Dotted Path

In <sections>, the <table> element identifies which object in the join chain each column belongs to. For the base object, use the object name directly (e.g. Account). For joined objects, use the dotted relationship path from the base object.

Object in chain<table> value
Base (Account)Account
First join (Account → Contacts)Account.Contacts
Nested join (Account → Contacts → Assets)Account.Contacts.Assets

Rule 9: Field Paths Can Traverse Lookups

<field> values may reference fields reached via lookup relationships using dot notation — for example Owner.Email (owner User's email) or ReportsTo.CreatedBy.Contact.Owner.MobilePhone. The <table> must still be the object that owns the starting field.

Rule 10: Historical Trending Fields Use _hst Suffix

For a field with trackTrending=true, the API name in <field> and <table> uses the _hst suffix:

<columns>
    <checkedByDefault>false</checkedByDefault>
    <field>Field2__c_hst</field>
    <table>CustomTrendedObject__c.CustomTrendedObject__c_hst</table>
</columns>

Rule 11: Primary Object Cannot Be Changed After Deployment

Once deployed, the <baseObject> of a CRT is locked. To change the primary object, create a new CRT and retire the old one.

Rule 12: autogenerated Is Reserved for Historical Trending

The <autogenerated> element (API 29.0+) marks CRTs that Salesforce created automatically when historical trending was enabled on an object. Do not set this manually on hand-authored CRTs.

Generation Workflow

Step 1: Gather Requirements

  • Primary object API name (e.g. Account, Project__c)
  • Related objects and the relationship between each (which has the lookup/master-detail to which)
  • For each relationship: inner join (children required) or outer join (children optional)?
  • Which fields to expose per object — aim for task-relevant, not the full field list
  • Audience and category — where should this appear in the report builder picker?
  • Whether this ships as deployed=true now or stays deployed=false during iteration

Step 2: Examine Existing Examples

  • Look in the project for in-project CRT patterns
  • If existing report types have been retrieved from an org, compare against those structures

Step 3: Write the Specification

Document before authoring:

  • fullName and label
  • baseObject
  • Category and deployed state
  • Join chain: for each related object — relationship name, outer vs inner join
  • Section layout: one section per object, ordered list of fields
  • Acceptance criteria: which records should appear when the report runs, which fields are available in the builder

Step 4: Author the Metadata File

Start from the closest example in examples/ and adapt it to the user's scenario:

  • Primary object only (no joins) → examples/AccountsWithIndustry.reportType-meta.xml
  • Outer join (primary records included even without children) → examples/AccountsWithProjects.reportType-meta.xml
  • Nested inner join (every level requires children) → examples/AccountProjectsWithTasks.reportType-meta.xml

Name the file <DeveloperName>.reportType-meta.xml.

Step 5: Validate

  • Well-formed XML with correct namespace (xmlns="http://soap.sforce.com/2006/04/metadata")
  • File name (without .reportType-meta.xml) matches <fullName> when <fullName> is included
  • <baseObject> is a valid API name and the object is deployed
  • Every <relationship> uses the correct child relationship name (__r suffix for custom)
  • Each object referenced in <sections> is part of the CRT (primary or joined)
  • All <field> references exist on the parent <table> and use API names (not labels)
  • <category> is a valid Salesforce category value
  • <deployed> is true if users need to access the CRT immediately

Reference File Index

FileWhen to read
examples/AccountsWithIndustry.reportType-meta.xmlStep 2 / Step 4 — primary-object-only template
examples/AccountsWithProjects.reportType-meta.xmlStep 2 / Step 4 — outer-join template (primary included even without children)
examples/AccountProjectsWithTasks.reportType-meta.xmlStep 2 / Step 4 — nested inner-join template (every level requires children)
references/category-values.mdStep 3 — to choose a valid <category> value from the ReportTypeCategory enum
references/errors-and-troubleshooting.mdWhen fields don't appear in the report builder or join requirements conflict

Verification Checklist

Universal Checks

  • File extension is .reportType-meta.xml
  • File basename satisfies the developer-name rules (begins with a letter, only letters/numbers/underscores, no spaces, no trailing underscore, no consecutive underscores)
  • If <fullName> is included, it matches the file basename exactly (same characters, casing, and underscores)
  • <label> is human-readable and under 40 characters
  • <description> explains the business purpose
  • <baseObject> uses a valid API name and that object is deployed
  • <category> is a valid ReportTypeCategory enum value
  • <deployed> is set appropriately (true for user access, false for in-progress iteration)
  • <autogenerated> is NOT set manually (reserved for historical-trending CRTs)

Join Checks

  • Each <join> uses the correct child relationship name (not the lookup field API name)
  • Custom relationships use __r suffix
  • <outerJoin> is set intentionally: true = optional children, false = required children
  • No inner join (<outerJoin>false</outerJoin>) appears after an outer join earlier in the sequence
  • Total object count (base + joins, including nested) is 4 or fewer

Section Checks

  • Every object in the CRT has a corresponding <sections> block
  • <masterLabel> on each section is descriptive
  • Every <columns> has both <field> (API name) and <table> (object API name or dotted path)
  • <checkedByDefault> is set for each column
  • <table> for base object is the object API name (e.g. Account)
  • <table> for joined objects uses the dotted relationship path (e.g. Account.Projects__r, Account.Projects__r.Tasks__r)
  • Field references use API names (not labels); custom fields use __c
  • Lookup traversal fields use dot notation (e.g. Owner.Email) with <table> set to the object owning the starting field
  • Historical trending fields use _hst suffix in both <field> and <table> when applicable
  • No duplicate fields within a section

Frequently asked questions about Salesforce Custom Report Type Generator

Similar skills