If you go in Object Manager > select the Object it appears on > Fields and Relationships and click on the fields in question, there is a "Where is this used?" button. This will show you all flows it is associated with, what pages its on, ect
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
I have the following scenario:
If contract <$1000 then insurance $25
if contract >$1000 and <$5000 then insurance $35
if contract >$5001 and <$12500 then insurance $45
if contract >$125001 and <$20000 then insurance $55
if contract >$20001 and <$40000 then insurance $95
if contract >$50001 and <$75000 then insurance $170
I cannot get the nestled formulas right to save my life. Any and all help is appreciated.
#Trailhead #Formulas
Today, 2:40 AM Hi ,
Try this
IF( contract < 1000 , 25,
IF( AND( contract > 1000, contract < 5000),35,
IF( AND( contract > 5000, contract < 12500),45,
IF( AND( contract > 12500,contract < 20000),55,
IF( AND( contract > 20000,contract < 40000),95,
IF( AND( contract > 40000,contract < 75000),170,
0,))))))
I'm working on a login page customization, however I'm having trouble with the image size to be inserted in the right corner. I want to know is what size image i should use to cover all that spot?
Thanks!
Apr 13, 2018, 1:43 AM Lucas,
- To customize your logo, upload an image. Images can be .jpg, .gif, or .png files up to 100 KB. Maximum image size is 250px by 125px.
- The right side of the login page is actually an iframe and you leverage the sample at the url specified below, to build your custom branding.
- https://github.com/salesforceidentity/MyDomain-Sample
- As per the readme on the My Domain Sample in github "The new design of https://login.salesforce.com requires that your My Domain page is responsive. It will automatically scale up and down depending on the size of a user's browser. This sample should aid with that. The page itself will scale up on both veritical and horizontal dimensions indefinetely. The minimum width is 511px"
Hello,
I'm currently working on generating a report utilizing the Asset object for our Community users. However, upon their attempt to access the report, they encounter an error message indicating a lack of permission to view it. Interestingly, these users do possess the necessary access permissions to the Asset object itself.
I initially configured the Asset object's sharing settings as "Public Read Only" in the Organization-Wide Defaults (OWD). However, as a troubleshooting step, I temporarily adjusted it to "Private." Subsequently, the users were able to view the report without encountering any permission issues.
While this resolved the immediate problem, it's imperative to maintain the Asset object with "Public Read Only" settings for broader access. Hence, I'm seeking guidance on enabling users to view the report while retaining the object's public access configuration. Any insights or alternative approaches to achieve this alignment would be greatly appreciated.
Thank you.
Mar 18, 2024, 5:50 PM Hi, sorry for the inconvenience. If you don't receive a response here, we recommend reaching out to our support team for further assistance. You can do so by visiting https://help.salesforce.com/s/articleView?id=000393090&language=en_US&type=1
These are my salesforce connected orgs, even then I'm not able to connect to my appexhange
Ajaypreet Singh Saini (Grantbook) Forum Ambassador
Today, 12:43 AM Hey, if you followed these steps already, make you try once in incognito window of your browser as it might be a caching issue
I have the following script:
%dw 2.0
input records application/csv
output application/apex
---
records map(record) -> {
IVP_First_Name__c: record.'First Name*',
IVP_Last_Name__c: record.'Last Name*',
IVP_Middle_Name__c: record.'Middle Name',
IVP_Date_of_Birth__c: record.'DOB*' as Date{format : "M/d/yyyy"},
...
This works fine except when there is no date entered on the CSV. It just throws an obscure error message and I cannot get into the results to make any changes. The response just shows commas for missing data like JOE,,,,TRUE
Is there a way I can define a default value or 'null' for the date in my script above?
Thanks.
Today, 1:34 AM DataWeave has some options for setting default, not sure they all work in Apex, but worth a try https://docs.mulesoft.com/dataweave/latest/dataweave-cookbook-defaults
Today, 1:10 AM Hi ,
Please check this article.
Hi everyone – has anyone had success reporting on campaign performance (e.g. open rate, click rate, bounce rate) using Marketing Foundations? I'm having some difficulty on which objects/reports to work with and wondering if others have found effective workarounds or supplementary tools. Thus far I've been working with the Bulk Email Message with Email Engagement report type. I can get a decent report visually but can't find out a way to create a summary formula for open rates etc.
Would love to hear what’s worked (or hasn’t) for you. Thanks in advance!
Nobuyuki Watanabe (NAC / FPT Japan Holdings Group) Forum Ambassador
Today, 1:00 AM Hi, @Erik Laramee
Thank for your feedback!
I'm currently working on a Flow that counts the number of records created today, in the last 3 days, and in the last 7 days
.
To start, I created a Flow that retrieves all the Call records logged through the "Log a Call" button and stores the number of calls made today in the "Calls Today"
field.
I also created two formula resources: one to get the start of today, and another to get the start of tomorrow. In the Flow, I use these to filter records where the CreatedDate is greater than or equal to the today variable and less than the tomorrow
variable.
My today formula:
DATETIMEVALUE(TEXT(TODAY()))
My tomorrow formula:
DATETIMEVALUE(TEXT(TODAY() + 1) )
So i put this conditions:
However when I test my flow, it is saying that it can't find the value
Can you guys give me some light of what I'm doing wrong?
#Salesforce Flow #Flow #Sales Cloud #Salesforce Developer
Hi,
I’m currently working on the "Organization-Wide Defaults" challenge in the Salesforce Admin Beginner Trailhead module.
I’ve set the organization-wide default sharing settings as follows:
- Account and Contract: Public Read Only (Grant Access Using Hierarchies checked).
- Opportunity: Private (Grant Access Using Hierarchies checked).
However, I’m getting the error:
“Challenge not yet complete in Second Salesforce Playground. We can't find the correct organization-wide default sharing setting for Opportunity.”
I’ve reviewed my settings multiple times, but I’m still unable to pass the challenge. Could you help me troubleshoot what might be wrong?
Thank you for your time!
#Trailhead Challenges
Ajaypreet Singh Saini (Grantbook) Forum Ambassador
Today, 12:30 AM Hey @Anusha Katrapally, make sure:
1. Both Default Internal and External Access are set to Private.
2. You have saved your changes and you are checking the challenge in the correct org