mfg-warranty

Guides configuration of Salesforce Manufacturing Cloud Warranty Lifecycle Management including terms, coverage, and recalls.

Updated Aug 6, 2026
One-click install
npx skills add https://github.com/salesforce-misc/ManuAssist --skill mfg-warranty-salesforce-misc
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: mfg-warranty
Source: https://github.com/salesforce-misc/ManuAssist/tree/main/skills/mfg-warranty
Command: npx skills add https://github.com/salesforce-misc/ManuAssist --skill mfg-warranty-salesforce-misc

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Implementing Warranty Lifecycle Management in Salesforce Manufacturing Cloud involves many interdependent objects and setup steps, and misconfiguration leads to missing warranty coverage on assets or failed auto-assignment. This Skill provides the object model, configuration sequence, validation checks, and troubleshooting guidance needed to set up warranties correctly. ## Core Features & Use Cases - Configuration Guidance: Step-by-step setup for enabling Warranty Lifecycle Management, creating WarrantyTerm records with coverage details, and linking terms to products and assets. - Object Model Reference: Explains WarrantyTerm, WarrantyTermCoverage, ProductWarrantyTerm, AssetWarranty, ProductServiceCampaign, and Supplier objects and their relationships. - Troubleshooting & SOQL: Diagnoses common issues like missing permission sets or non-auto-assigned warranties, and provides ready-to-run SOQL queries for active terms, coverage, and expiring warranties. - Use Case: A consultant needs to configure product recalls for a manufacturer; the Skill explains how to create ProductServiceCampaign records, link them to affected assets, and notify owners via Flow. ## Quick Start Ask how to set up warranty terms and assign them to products and assets in a Manufacturing Cloud org.

Frequently Asked Questions about mfg-warranty

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up Warranty Lifecycle Management in Salesforce Manufacturing Cloud?

Enable Warranty Lifecycle Management in Setup under Manufacturing Settings, then create WarrantyTerm records defining type, duration, and coverage. Link terms to Product2 records via ProductWarrantyTerm or directly to Assets via AssetWarranty records.

How do I assign a warranty term to a product in Salesforce?

Create a ProductWarrantyTerm record linking the Product2 record to the WarrantyTerm. This automatically creates an AssetWarranty record when an asset is installed for that product.

Why is my warranty not auto-assigned to an asset in Manufacturing Cloud?

Auto-assignment fails when no ProductWarrantyTerm record links the product to a WarrantyTerm. Create the ProductWarrantyTerm junction record, or manually create an AssetWarranty record linking the asset to the term.

Why can't users create warranty terms in Salesforce?

Users cannot create WarrantyTerm records without the WarrantyManagementUser permission set. Assign this permission set to warranty administrators to grant the required object and field access.

Does Manufacturing Cloud support warranty claims and supplier recovery?

WarrantyClaim, WarrantyClaimProduct, and SupplierRecoveryContract are not available in every org. Claims processing may require custom objects or additional feature enablement depending on the org's licensing.

How do I query assets with expiring warranties using SOQL?

Query AssetWarranty filtering ExpirationDate with NEXT_N_DAYS:90 to find warranties expiring in the next 90 days. Select Asset.Name, Account.Name, ExpirationDate, and WarrantyTerm.Name, ordered by ExpirationDate ascending.