Before you can do this project, you must complete the
Build a Data Model for a Recruiting App and Customize the User Interface for a Recruiting App projects. The work you do here builds on the work you complete in those projects.
Feed
- Recent Activity
- Created Date
- Questions with an Accepted Answer
- Questions with No Accepted Answer
- Unanswered Questions
- Appexchage Apps
- Audience Studio
- Automation Studio
- B2B Commerce
- B2C Commerce
- Business Rules Engine
- Communications Cloud
- Consumer Goods Cloud
- Datorama
- Digital Engagement
- Education Cloud
- Education Data Architecture
- Einstein Analytics
- Einstein Bots
- Email Marketing
- Experience Cloud
- Financial Services Cloud
- High Velocity Sales
- Higher Education
- Integration
- Interaction Studio
- Journey Builder
- K-12 Architecture Kit
- Manufacturing Cloud
- Marketing Cloud
- Mobile Publisher
- MuleSoft
- MuleSoft API Manager
- MuleSoft Anypoint Code Builder
- MuleSoft Anypoint Platform
- MuleSoft Anypoint Studio
- MuleSoft CloudHub / RTF / On-Prem / PCE / Gateway
- MuleSoft Composer
- MuleSoft Connectors / SDK / DevKit
- MuleSoft DataWeave
- MuleSoft Design Center / API Designer
- MuleSoft Exchange
- MuleSoft For Agentforce
- MuleSoft For Flow: Integration
- MuleSoft Integrations
- MuleSoft Training & Certification
- Nonprofit
- Nonprofit Cloud
- Nonprofit Success Pack
- Outbound Funds Module
- Pardot B2b Marketing Automation
- Program Management Module
- Quip
- Revenue Cloud
- Sales Cloud
- Sales Cloud Einstein
- Salesforce CPQ & Billing
- Salesforce Developer
- Salesforce Field Service
- Salesforce Health Cloud
- Salesforce Maps
- Salesforce Platform
- Salesforce Surveys
- Service Cloud
- Service Cloud Einstein
- Service Cloud Voice
- Slack Basics
- Slack Certified
- Slack Community
- Slack Developers
- Slack Workflow Builder
- Tableau
- Automation
- AwesomeAdmins
- Data Management
- EducationHelp
- Formulas
- IdeaExchange
- New Releases
- NonprofitHelp
- Salesforce Developer
- SalesforceLive
- TrailblazerCommunityHelp
- TrailblazerDX
- Trailhead Challenges
- Trailhead Superbadges
- TrailheadGO
Filter
How to study for the salesforce admin exam? Also, how do you register for the exam?
#Forum Post
I used to be able to enter project costs solely with my keyboard. Now, I can't tab out of the pop-up calendar. Is there a way to remove the calendar as a preference?
Today, 2:42 PM I had the same issue with a legacy VF page that had a table with date picker. Here's my solution with some javascript:
- add this to your input field: onkeydown="handleDateTab(event, this)"
- add the script block after the input field as below
I hope that helps you.
<apex:page>
<apex:form>
<table>
<tr>
<td>
<apex:inputField value="{!myObject.Date__c}" id="dateField"
onkeydown="handleDateTab(event, this)" />
</td>
<td>
<apex:inputText value="{!myObject.Name}" id="nameField"/>
</td>
</tr>
</table>
</apex:form>
<script>
function handleDateTab(e, el) {
//console.log('handleDateTab called');
//console.log(`Key pressed: ${e.key}`);
if (e.key === 'Tab') {
let picker = document.getElementById('datePicker');
if (picker && picker.style.display === 'block') {
picker.style.display = 'none';
// Prevent default tab so we can manually control focus
e.preventDefault();
// Find the parent <td> and then next <td>
const currentCell = el.closest('td');
const nextCell = currentCell?.nextElementSibling;
if (nextCell) {
const nextInput = nextCell.querySelector('input, select, textarea');
if (nextInput) {
nextInput.focus();
}
}
}
}
}
</script>
</apex:page>
As in Configure an Email Letterhead and Template challenge step named "Send an email Test" we need to change the email address of the user named "Andy Young" but i don't find any the contact named Andy Young,
in the contact list, so please rectify me this error. I will be attaching the screenshot for the reference.
#Trailhead Challenges
Step not yet complete in Agentforce
We can’t find the Get Sessions action. Make sure it has been created and has an API Name of 'Get_Sessions'.
#Trailhead Challenges
Today, 2:18 PM @Ankit Gupta Verify the Action with the correct API Name exists
➜ If it’s a Flow Action or Apex Action:
- Go to Setup > Flows.
- Open the relevant Flow (or see if you have one called “Get Sessions”).
- Make sure the API Name (when you edit the Flow or Action) is exactly Get_Sessions, matching case and underscores.
➜ If it’s an OmniStudio Integration Procedure:
- Go to OmniStudio > Integration Procedures (or via the Vlocity Console).
- Look for an Integration Procedure named Get Sessions.
- In its configuration (the IP header), ensure the Name (API Name) is Get_Sessions. 2. Correct the API Name if different, 3. Publish or Activate
- If it’s a Flow, click Activate.
- If it’s an Integration Procedure, click Save and Activate.
- If it’s an Apex Action, ensure it’s global and exposed.
Hi everyone, and thanks in advance! My org has MC Growth Edition and one of the asks from leadership is the ability to either reduce a Lead's Engagement Score to 0 or by a set number based on their Lead Record stage. Is this possible? I don't see how this would happen automatically using a Campaign Flow. Any help or feedback would be helpful. And thanks again! —Mike
Today, 1:52 PM People scoring is a concept which is a blend of sales cloud and account engagement feature. You can create custom scoring rules.
What I would suggest is to have a discussion with Sales team and understand the process how they converting the stage(i.e, is it based on web-visit, form submission, or interaction with sales rep) based on this you can easily configure scoring rules.
You can also create a standard/custom field to store the conversion details and incorportae same in your calculated insights or segmentation.
There are many articles on setting up basic configuration, but based on your business requirement you can tweak the setup.
https://help.salesforce.com/s/articleView?id=mktg.mktg_data_scoring_setup.htm&type=5Aishwarya T.P
NTT Data Inc.
Hi Folks,
We are looking to create a report that can do the following:
1. Contacts that gave between July -September
AND
2. Contacts that gave a second Year End gift - so between November-December
They then want to import those contacts into a campaign.
A joined report can show me both of those opportunity lists, but it seems like a manual cross check, which is daunting. I also looked at doing a filter for contacts that gave between July-Sept, gave 2 gifts that year, and are not recurring donors. But there are still a bunch of outliers that just randomly gave an additional gift that year, not necessarily year end.
Any insights would be greatly appreciated!
Today, 1:51 PM Since you're talking about Contacts, I'm assuming this is NPSP and not Nonprofit Cloud.
If it's NPSP, it's hacky, but have you thought about custom fields on the Contact - one for "July-September This Year" and one for "November-December This Year." Then you can use NPSP Customizable Rollups to create a Filter Group for each period and a Rollup of the Amount. Then you can easily have a Contact report that filters based on whether there are values in these fields. You could even do this for "Last Year" values if you want to have comparisons.
Hello - I am attempting to do a formula field on a Survey object to pull data from the Financial Account object. I already did a lookup field so the Survey object is a child of the Financial Account object. This is the formula I used on the survey object:
The field on the survey object is just blank and doesn't populate the data from the financial account object. I already double checked the FLS and permissions. Not sure what I am missing. Any help would be appreciated.
#Trailhead Challenges #Salesforce Field Service #Formulas #Lookup Relationship