mfg-sales-agreements

Guides configuration, activation, and troubleshooting of Salesforce Manufacturing Cloud Sales Agreements.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Salesforce Manufacturing Cloud administrators and consultants often struggle to correctly configure Sales Agreements, sync actuals from ERP systems, and diagnose why planned vs. actual quantities diverge. This Skill provides structured, expert-level guidance for the entire Sales Agreements lifecycle. ## Core Features & Use Cases - Configuration Guidance: Step-by-step instructions for enabling Sales Agreements, creating record types, configuring page layouts, and activating agreements. - Troubleshooting Reference: A diagnostic table mapping common issues (missing permissions, stalled actuals sync, stuck Draft status) to root causes and fixes. - SOQL Query Library: Ready-to-run queries for compliance summaries, expiring agreements, planned vs. actual analysis, and detecting ERP sync gaps. - Use Case: An account manager notices actual quantities are not updating on active agreements. Use this Skill to identify that the ERP integration is not writing to SalesAgreementProductSchedule and check the MuleSoft flows or API integration. ## Quick Start Ask how to configure and activate Sales Agreements in Manufacturing Cloud, or request a SOQL query comparing planned versus actual quantities for active agreements.

Frequently Asked Questions about mfg-sales-agreements

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

FAQPage Schema
How do I configure Sales Agreements in Salesforce Manufacturing Cloud?

Enable Sales Agreements in Setup under Manufacturing Settings, then create record types such as Standard or Long-Term Contract, configure page layouts with account and date fields, and add related lists for products and schedules. Finally create the agreement, add products and schedules, and set Status to Active.

How to sync actual quantities from ERP to Sales Agreements?

Actuals are written to SalesAgreementProductSchedule.ActualQuantity and ActualRevenue. They typically come from orders synced via MuleSoft Accelerator for Manufacturing, direct API updates from an Order Management System, or manual updates in non-integrated environments.

Why are actuals not updating on my Sales Agreement?

The most common cause is the ERP integration not syncing to SalesAgreementProductSchedule. Check your MuleSoft flows or API integration, and run a SOQL query for schedules where ActualQuantity is zero but PlannedQuantity is greater than zero to confirm the gap.

Why can't users create Sales Agreements in Salesforce?

Users are likely missing the ManufacturingSalesUser or SalesAgreementsUser permission set. Assign the appropriate permission set to grant create access to Sales Agreement records.

What SOQL query finds Sales Agreements expiring soon?

Query SalesAgreement where Status equals Active and EndDate equals NEXT_N_DAYS:30, selecting Id, Name, Account.Name, and EndDate. This returns all active agreements expiring within the next 30 days for renewal follow-up.