Agent Skillsforcedotcom/sf-skills › platform-custom-report-type-generate

platform-custom-report-type-generate

GitHub

用于创建、生成或验证Salesforce自定义报告类型(CRT)元数据。适用于定义主对象、关联对象及字段暴露,处理.reportType-meta.xml文件构建与部署错误。不用于编辑现有报告或仪表盘。

skills/platform-custom-report-type-generate/SKILL.md forcedotcom/sf-skills

触发场景

用户需要创建或生成Salesforce自定义报告类型 涉及CRT元数据(.reportType-meta.xml)的验证或部署错误 询问如何跨对象暴露字段或配置内外连接

安装

npx skills add forcedotcom/sf-skills --skill platform-custom-report-type-generate -g -y
更多选项

不安装直接使用

npx skills use forcedotcom/sf-skills@platform-custom-report-type-generate

指定 Agent (Claude Code)

npx skills add forcedotcom/sf-skills --skill platform-custom-report-type-generate -a claude-code -g -y

安装 repo 全部 skill

npx skills add forcedotcom/sf-skills --all -g -y

预览 repo 内 skill

npx skills add forcedotcom/sf-skills --list

SKILL.md

Frontmatter
{
    "name": "platform-custom-report-type-generate",
    "metadata": {
        "version": "1.0",
        "minApiVersion": "51.0"
    },
    "description": "Use this skill when users need to create, generate, or validate Salesforce Custom Report Type metadata. Trigger when users mention custom report types, report types, CRTs, reporting frameworks, cross-object reports, report builder data sources, or ask to expose fields for reporting across related objects. Also use when users mention primary and related objects for reports, inner vs outer joins in reports, report type categories, or encounter deployment errors for .reportType-meta.xml files. Do NOT trigger for: running, editing, or filtering existing reports; creating report folders, dashboards, or list views; or general reporting questions that don't involve authoring a .reportType-meta.xml file."
}

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:

Element Required Notes
<fullName> Yes API identifier; must match the file name. Letters, numbers, underscores; must begin with a letter; no spaces; no trailing underscore; no consecutive underscores
<label> Yes Human-friendly name shown in the report type picker
<description> Recommended State the business "why" — who uses this and what they learn
<baseObject> Yes API 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> Recommended Report builder category — see references/category-values.md
<deployed> Yes true to expose to users; false while building/iterating
<join> Conditional Adds a related object and its join behavior. Nest further <join> blocks for deeper relationships
<sections> Recommended Groups of columns available to the report type. Though not strictly required, a report without columns isn't useful

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

Element Required Notes
<masterLabel> Yes Section heading shown in the report builder
<columns> Conditional One per field exposed in the section

<columns> (single field) sub-elements:

Element Required Notes
<field> Yes Field API name (or dotted lookup-traversal path)
<table> Yes The object the field belongs to — base object name or dotted relationship path
<checkedByDefault> Yes true if the column is selected by default in the report builder
<displayNameOverride> No Custom 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> value Behavior Report Builder Label
false Inner join — only primary records that HAVE at least one related record "Each 'A' record must have at least one related 'B' record"
true Outer 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

File When to read
examples/AccountsWithIndustry.reportType-meta.xml Step 2 / Step 4 — primary-object-only template
examples/AccountsWithProjects.reportType-meta.xml Step 2 / Step 4 — outer-join template (primary included even without children)
examples/AccountProjectsWithTasks.reportType-meta.xml Step 2 / Step 4 — nested inner-join template (every level requires children)
references/category-values.md Step 3 — to choose a valid <category> value from the ReportTypeCategory enum
references/errors-and-troubleshooting.md When 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

版本历史

  • 1.31.0 当前 2026-07-19 23:15

同 Skill 集合

skills/automation-flow-generate/SKILL.md
skills/commerce-b2b-open-code-components-integrate/SKILL.md
skills/commerce-b2b-store-create/SKILL.md
skills/data360-activate/SKILL.md
skills/data360-code-extension-generate/SKILL.md
skills/data360-prepare/SKILL.md
skills/data360-schema-get/SKILL.md
skills/design-systems-slds-apply/SKILL.md
skills/dx-org-permission-set-assign/SKILL.md
skills/dx-org-switch/SKILL.md
skills/experience-lwc-generate/SKILL.md
skills/experience-ui-bundle-features-generate/SKILL.md
skills/experience-ui-bundle-file-upload-generate/SKILL.md
skills/experience-ui-bundle-site-generate/SKILL.md
skills/external-diagram-mermaid-generate/SKILL.md
skills/external-diagram-visual-generate/SKILL.md
skills/platform-apex-logs-debug/SKILL.md
skills/platform-custom-application-generate/SKILL.md
skills/platform-custom-tab-generate/SKILL.md
skills/platform-lightning-app-coordinate/SKILL.md
skills/platform-list-view-generate/SKILL.md
skills/platform-metadata-deploy/SKILL.md
skills/platform-permission-set-generate/SKILL.md
skills/platform-validation-rule-generate/SKILL.md
skills/agentforce-architecture-analyze/SKILL.md
skills/agentforce-d360-analyze/SKILL.md
skills/agentforce-generate/SKILL.md
skills/agentforce-observe/SKILL.md
skills/agentforce-test/SKILL.md
skills/commerce-b2b-open-code-components-replace/SKILL.md
skills/data360-connect/SKILL.md
skills/data360-harmonize/SKILL.md
skills/data360-orchestrate/SKILL.md
skills/data360-query/SKILL.md
skills/data360-segment/SKILL.md
skills/design-systems-slds-validate/SKILL.md
skills/design-systems-slds2-migrate/SKILL.md
skills/dx-app-analytics-query/SKILL.md
skills/dx-code-analyzer-configure/SKILL.md
skills/dx-code-analyzer-custom-rule-create/SKILL.md
skills/dx-code-analyzer-run/SKILL.md
skills/dx-devops-test-failures-analyze/SKILL.md
skills/dx-devops-test-pipeline-configure/SKILL.md
skills/dx-devops-test-suite-assignments-configure/SKILL.md
skills/dx-devops-test-suite-run/SKILL.md
skills/dx-org-manage/SKILL.md
skills/dx-pkg-post-install-configure/SKILL.md
skills/experience-cms-brand-apply/SKILL.md
skills/experience-content-media-search/SKILL.md
skills/experience-ui-bundle-agentforce-client-generate/SKILL.md
skills/experience-ui-bundle-app-coordinate/SKILL.md
skills/experience-ui-bundle-custom-app-generate/SKILL.md
skills/experience-ui-bundle-deploy/SKILL.md
skills/experience-ui-bundle-frontend-generate/SKILL.md
skills/experience-ui-bundle-metadata-generate/SKILL.md
skills/experience-ui-bundle-salesforce-data-access/SKILL.md
skills/integration-connectivity-connected-app-configure/SKILL.md
skills/integration-connectivity-generate/SKILL.md
skills/integration-eventing-cdc-configure/SKILL.md
skills/integration-eventing-subscription-configure/SKILL.md
skills/mobile-apps-create/SKILL.md
skills/mobile-platform-native-capabilities-integrate/SKILL.md
skills/mobile-platform-offline-validate/SKILL.md
skills/omnistudio-callable-apex-generate/SKILL.md
skills/omnistudio-datamapper-generate/SKILL.md
skills/omnistudio-datapacks-deploy/SKILL.md
skills/omnistudio-dependencies-analyze/SKILL.md
skills/omnistudio-epc-catalog-generate/SKILL.md
skills/omnistudio-flexcard-generate/SKILL.md
skills/omnistudio-integration-procedure-generate/SKILL.md
skills/omnistudio-omniscript-generate/SKILL.md
skills/platform-agentexchange-partner-offers-configure/SKILL.md
skills/platform-agentsetup-categories-fetch/SKILL.md
skills/platform-apex-generate/SKILL.md
skills/platform-apex-test-generate/SKILL.md
skills/platform-apex-test-run/SKILL.md
skills/platform-custom-field-generate/SKILL.md
skills/platform-custom-lightning-type-generate/SKILL.md
skills/platform-custom-object-generate/SKILL.md
skills/platform-data-manage/SKILL.md
skills/platform-dataspace-access-configure/SKILL.md
skills/platform-docs-get/SKILL.md
skills/platform-encryption-configure/SKILL.md
skills/platform-flexipage-generate/SKILL.md
skills/platform-metadata-api-context-get/SKILL.md
skills/platform-metadata-retrieve/SKILL.md
skills/platform-models-api-configure/SKILL.md
skills/platform-policy-rule-generate/SKILL.md
skills/platform-sharing-rules-generate/SKILL.md
skills/platform-soql-query/SKILL.md
skills/platform-tracing-agentforce-configure/SKILL.md
skills/platform-tracing-configure/SKILL.md
skills/platform-trust-archive-manage/SKILL.md
skills/platform-value-set-generate/SKILL.md

元信息

文件数
0
版本
1.31.0
Hash
31fa5fde
收录时间
2026-07-19 23:15

首页 - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-07-22 00:32
浙ICP备14020137号-1 $访客地图$