Skip to main content A new Salesforce certification experience is coming July 21st. Discover how exams will be delivered in Pearson VUE, what it means for you, and ways to prepare. Learn more.

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.
2 answers
  1. Today, 3:19 AM

    @Srinivasa Reddy Somu Upon using the above suggestion, my user received this error: 

    • You do not have the level of access necessary to perform the operation you requested. Please contact the owner of the record or your administrator if access is necessary.

    I use the Riskonnect platform so I'm assuming ownership of files can't be shared. 

     

    I do appreciate the suggestion.

0/9000
3 answers
  1. Aug 30, 2024, 4:25 PM

    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

0/9000

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

1 answer
  1. 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,))))))

0/9000
Hello,

 

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!
2 answers
  1. 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"
0/9000

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.

1 answer
0/9000
4 answers
  1. 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
0/9000

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.

1 answer
0/9000
1 answer
0/9000

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!    

@* Marketing Cloud コミュニティ 日本 * 

4 answers
  1. Nobuyuki Watanabe (NAC / FPT Japan Holdings Group) Forum Ambassador
    Today, 1:00 AM

    Hi, @Erik Laramee

     

    Thank for your feedback!

0/9000

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: 

Flow Roll up Summary based in different dates.

 

However when I test my flow, it is saying that it can't find the value 

Screenshot 2025-05-17 at 21.37.17.png

 

Can you guys give me some light of what I'm doing wrong? 

 

 

 

#Salesforce Flow  #Flow  #Sales Cloud  #Salesforce Developer

0/9000