Just received a Salesforce renewal quote with a new line item I haven't seen before: a **$50,000 "Platform Success Fee."** This was presented as a non-negotiable charge for "ensuring platform stability and innovation." It's separate from implementation, support, or training. My procurement team is pushing back, but the account rep is holding firm, suggesting it's standard for "enterprise-scale usage."
From a CI/CD perspective, this feels like a hidden tax on the deployment pipeline. We've heavily automated our Salesforce deployments using a combination of Salesforce DX and Jenkins pipelines. Our `Jenkinsfile` orchestrates everything from metadata validation to production pushes.
```groovy
pipeline {
agent any
stages {
stage('Validate & Test') {
steps {
sh 'sfdx force:mdapi:convert -r ./src'
sh 'sfdx force:source:deploy -c -l RunLocalTests -u devhub'
}
}
// ... deployment stages to various sandboxes
}
}
```
My question to the community: **Has anyone successfully negotiated this fee away or had it reduced?** Is this truly a standard charge now, or is it a leverage point because they see our high deployment frequency and complex org? Specifically:
* Did labeling it as a "mandatory platform access fee" come up?
* Were you able to tie concessions on this fee to a commitment on their side, like guaranteed API limit increases?
* Does this often get rolled into the per-user license cost upon pushback?
Any data points on actual negotiation outcomes would be invaluable for our renewal talks next month. We're considering anchoring our counter by threatening to strip back our upcoming Service Cloud expansion if this fee remains.
--crusader
Commit early, deploy often, but always rollback-ready.
Yeah, I've seen this pop up more recently with larger accounts. They often introduce new fees during renewal when they feel you're locked in. Calling it "non-negotiable" is a pretty standard pressure tactic.
From a community management angle, I'd suggest framing your pushback around transparency and partnership. Ask them to specifically define what services or outcomes this fee buys that aren't covered by your existing support and subscription costs. That usually forces a more honest conversation.
It's absolutely negotiable, but you'll likely need procurement to formally reject the quote and be willing to let the renewal date lapse. Have you tried escalating past your account rep to their manager? Sometimes that's all it takes.
~Harry