Skip to main content

#Power Of Us HUB1 discussing

A few weeks ago at True to the Core (TTTC) during TDX, I asked the Salesforce Team to clarify the pricing for Prompt Builder. 

 

Salesforce Foundations is a free offering that includes Agent Conversations, Data Cloud, and features from Marketing and Commerce. However, despite what Trailhead and Salesforce Pricing pages suggest, it does not include Prompt Builder. 

 

Since raising this at TTTC, I’ve spoken with multiple Salesforce teams, and even they can’t agree—some say Prompt Builder is included, others say it isn’t. In practice, it’s not available in a Salesforce Foundations org, as the required Permission Sets (Prompt Template Manager, Prompt Template User) and Permission Set Licenses (Einstein Prompt Templates) are not provisioned. 

 

Currently, it appears Salesforce intends to require an Einstein for Service, Einstein for Sales, or Einstein for Platform license — effectively making Prompt Builder subject to both user-based and consumption-based licensing. 

 

I appreciate that Salesforce teams have been working on this behind the scenes, and I’ve noticed a shift in messaging. Since TDX, Agentforce’s response on Salesforce Help has changed from ❌ “Prompt Builder is not explicitly mentioned as part of Foundations” to ⚠️ “Prompt Builder is available with Salesforce Foundations, but on a limited basis.”

 

This lack of clarity is a problem for the nonprofit clients I work with, as they rely on the Power of Us Program for courtesy licenses in the first place. 

 

I’d like the Salesforce team to: 

 

1️⃣ Clarify whether Prompt Builder is included in Salesforce Foundations, as the official materials currently contradict each other. 

 

 2️⃣ If Prompt Builder requires per-user licensing (even temporarily), consider extending the Power of Us Program to provide courtesy Prompt Builder licenses alongside the standard courtesy Salesforce licenses. 

 

 3️⃣ Correct all marketing and documentation to clearly reflect whether Prompt Builder is included with Foundations (or not). 

 

At TTTC, it was suggested that Prompt Builder was coming to foundations, but I didn’t get a clear time commitment to the above, so I’m posting here. 

 

Before I raised this at TTTC I verified this was not currently available in two separate orgs both with Salesforce Foundations enabled. 

 

If you need a recap you can watch the recording of this question from 11:27 on Salesforce+

 

#TTTC #True To The Core #Prompt Builder #Power Of Us HUB #AI #Prompts #TDX25

 

@Prompt Builder @* Salesforce Platform * @Trailblazer Community Cove @* Customer Success * @Nonprofit Hub 

17 answers
  1. Mar 17, 2:30 PM

    Thanks @Abby Trout we dont currently have Agentforce or Data Cloud license. I was assuming the prompt Builder being GA would mean it appears in the org without any other products being enabled. But the more I am reading about the licensing it may be that Prompt Builder may come with Salesforce Foundations but we will have to check with our AE on this. Thanks for your help.

0/9000

Power Of Us sign up website down 

Since Friday Apr 11 2025 I have been trying to get ahold of someone from the Power Of Us program. I tried their email "

powerofusdesk@salesforce.com

.  Sales sends me to Tech Support or Customer service as they have no information regarding the Power of Us program. Tech support has no information and I cant get in touch with someone from customer support. (Objectively not an optimal system as when prompted to push a number it errors out saying invalid choice, but if I say the choice it would move me along in the system. Then to have it hang up on me after a brief "email billing")  I have spent over two months learning Salesforce, getting my associate cert, then convincing a local Montessori school to adopt Salesforce. Only for them to be unable to sign up. I am embarrassed and confused by the seemingly dispirit faces of Salesforce.  

 

#Power Of Us HUB

7 comments
  1. Jan 28, 12:49 PM

    I had the same frustration. But the business email method works!!!! Thanks for posting. Approved straight away. 

0/9000

The powerofus sign-up site just returns a blank page. I'm just trying to register a new NGO. 

 

I go to

https://www.salesforce.com/company/power-of-us/

and then click "log in to apply". I then log in, and then the web page is blank (white).  

 

Anyone else seeing this or have a workaround? 

 

#Power Of Us HUB

1 comment
  1. Jul 30, 2025, 9:32 AM

    In case anyone is having the same issue, I was logging in with a third-party authentication provider which seems to have caused the bug. If you log in with any Salesforce credential then the page loads and you can create a new account from there to begin the registration process.

0/9000

Teams within my organization have encountered a limitation regarding the filter options for dynamic dashboards, as it is currently capped at 50, which falls short of the required filter metrics. Unfortunately, there is currently no alternative solution to bypass this limit.

 

Therefore, we would greatly appreciate it if this limitation could be increased, enabling teams to consolidate their dashboards and streamline their operations.

#Reports & Dashboards #Dashboards #Filter Option #Reporting

1 comment
0/9000

Hey team,

 

I'm working on NPSP, and I realized that I'm unable to add values to the Source Field, Level Field, and the Previous Level Field fields on the Level Object in my NPSP. It looks like it's supposed to be picklist values but when I go to the back-end, it says it's a text field. I find this quite confusing and I've checked this in two different orgs and it's the same. Can someone guide me please, I'm not certain if the values of these fields are mapped from another object, or if I need to change the field value to picklist and add picklist values by myself, or if these fields are for rollup calculations of other fields mapped to them. I have attached screenshots below:

How do I get the field values of Source Field and Level Fields on the Levels object in NPSP?

 

Screenshot 2024-03-23 214521.png

 

#Power Of Us HUB

3 answers
0/9000

I didn't see anything about automating the naming of Deliverables, so I thought I'd share what I came up with, in case it helps anyone. Open to other thoughts and suggestions. 

 

I created a "New Deliverable" Action on Opportunities and a "Before Save" Flow to update the Deliverable name upon create or edit.

 

"New Deliverable" action: 

- Setup->Object Manager->Opportunities->Buttons, Links, and Actions

- New Action

- Leave Action Type as "Create a Record"; Target Object=Deliverable; Label=New Deliverable; Save

- Edit Layout - remove Deliverable Name and add the fields you want users to populate when creating a new Deliverable. Consider adding Type, Due Date, Requirements, "Assigned to" (if you have created that field). Consider making fields required here - perhaps Type and Due Date. Save

- Predefined Field Values section at the bottom: Field Name: Deliverable Name, formula value = "x" (include the quotation marks (this is a placeholder until the Flow populates the name)

 

Flow:

- Setup->Flows->Record-Triggered Flow

- Start element: Object=Deliverable, Trigger: Record is created or updated, No Entry Conditions, "Fast Field Updates"

- Add an "Update Records" element: Leave it set to "Use the deliverable record that triggered the flow," No Filter Conditions, Set Field Values: Field=Name, 

- Value - create new Resource (I called it vConcatenatedName) - Data Type=Text, Formula = {!$Record.npsp__Opportunity__r.Name} & " - " & TEXT({!$Record.npsp__Type__c}) & " - Due: " & TEXT({!$Record.npsp__Grant_Deadline_Due_Date__c}). This will produce Deliverable Names that look like this: <Opportunity Name> - <Deliverable Type> - Due: <Deliverable Due Date>. Modify the formula to meet your own naming convention/needs.

- Save (I called mine "Deliverables - Before Save - Update Name", Debug, Activate, and Test the Action and Flow. Create New Deliverables and modify existing Deliverables.

 

Please let me know if this helps or what other thoughts you may have.

 

#Flow  #Flows 

 

#Power Of Us HUB #Power Of Us Hub Community #NPSP  #Grant Deliverables

0/9000

Hi, I have a nonprofit client onboarding with Salesforce via the Power of us route. They have passed eligibility and now have to set up their Org Type. 3 options are presented: 10 free CRM licenses, 10 free nonprofit cloud licenses, 10 free nonprofit success pack licenses. See screenshot.

They don't want to use Salesforce for their fundraising, so are unlikely to use NPSP, rather they have a bunch of custom requirements. I'm wondering if selecting "10 free CRM licenses" will therefore simply spin up an empty SF instance with all the standard objects but no customisations? Then they can build on this without all the NPSP clutter in the back end?

#NonprofitHelp

New org options - NPSP or not?

#Power Of Us HUB #Nonprofit Success Pack

4 answers
  1. Jan 4, 2024, 1:57 PM

    Hi! I am helping a small nonprofit with their transformation project right now.

    I'm a certified Admin but this is my first soup-to-nuts experience with configuring a Salesforce org from scratch. Luckily the client kept great records and is very engaged in the project.

     

    About the Power of Us grant, I would say to definitely take advantage of it.

    We went with Nonprofit Cloud, but I believe you can opt for Sales Cloud. However I heard that you can't change your mind without cancelling your license and reapplying.

     

    Nonprofit Cloud is pretty much Sales Cloud with a lot of custom objects added to handle the Household model (NPSP). The org I'm helping doesn't need to track households, but we went down the Household model rabbit hole (in the sandbox) for a long time before finally creating a new sandbox with the Individual model.  The Individual model is a much better fit for an org that doesn't need to know who lives under the same roof. I'm ashamed to admit I fell for the trap of confusing tax status with business model! Also, everything I read online says NOT to use the Individual model. I'm not sure why, because things started zipping along once we switched.

     

    The other thing I would share, unrelated to this but was a huge game changer for building the model, was to download Elements Cloud, learn UPN, and also Total Story Visualization. Shout out to Xavery. Not sure if we're allowed to promote people here, but I highly recommend his blog.

     

    Hope that helps a bit.

0/9000

Hey Team, I have a client interested in leveraging PMM for Program Delivery Management. I noticed there are differences between the demo video and the actual package. One in particular are the Care Plans and Incidents objects. Does anyone know if there is a package version that includes those objects or do we need to install a Health Cloud package to include those options? https://www.salesforce.org/resources/offer/nonprofit-program-management-demo/?leadcreated=true&redirect=true&sfuuid=79441ce5-754f-414a-8089-2ca56f870c26&d=70130000000sUVq&nc=7013y000002ZJEcAAO

0/9000

I want to play around a bit with the Program Management Module and the Case Management module in a developer instance so I can learn a bit more, test features out, etc.  Can that be done?  Just wondering.  #Nonprofit Cloud Case Management #Program Management Module

10 answers
0/9000
3 answers
0/9000