Skip to main content The last day to register for a Salesforce or Tableau exam is June 30th. Learn more about the new Salesforce certification experience coming July 21st.

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.
I'm not able to make Status as Inactive on Contracts. How Can I achieve this ?
2 answers
  1. Today, 12:49 AM

    https://help.salesforce.com/s/articleView?id=000380733&type=1

     

     

    Add additional status of Contract object such as 'Expired' or ''Discontinued. For this to work, set the Status Category to Activated. 

     

    Note: Once a Contract is already activated, there is no longer a way we can deactivate it. Also, End date is automatically calculated using the Start date and Contract term fields

     

    1. Navigate to the Status field:

    In Salesforce Classic:

    Setup | Customize | Contract | Fields | Status 

    In Lightning Experience:

    Setup | Object Manager | Contract | Fields & Relationships | Status 

     

    1. Scroll down to 'Contract Status Picklist Value' section, click New.
    2. Enter a label, such as Expired, or Discontinued.
    3. Populate API Name by simply clicking it.
    4. On the 'Status Category' field, select Activated.
    5. Optionally, add Chart Color.
    6. Click Save.
0/9000

 m stuck on communicate Between Unrelated Components and getting a error and trying to fix it 

 

Step not yet complete in Cunning Raccoon Playground 

We can’t find ‘Count_Updated.messageChannel-meta.xml’.  

 

#Trailhead Challenges  #Trailhead

0/9000

I am struggling with this challenge. 2 hours trying to find a solution.   

 

I am using the Devoloper environment. I was able to create the permission set "Manage Positions", but I can't find the "Enable Positions Object Permissions: 

Read, Create, and Edit".

 

So it appears the message: "We can't find that the ‘Manage Positions’ permission set grants read, create, and edit object permissions for Position."

  

Can somebody help me please? Thank you. 

 

 

#Trailhead Challenges

 

Enable Positions Object Permissions: Read, Create, and Edit

 

 

6 answers
  1. Today, 12:31 AM

    Hi. I got help from the trailhead support team and it worked for me! I had to connect the dev org to the trailhead hands on org, following below steps: 

    1. Login to Trailhead and go to the module unit and come down to the Hands-On-Challenge section. 

    2. In Hands-On-Challenge section, click on 3 dots present side to "Launch" button 

    3. Click on connect org button and login with your new dev ed salesforce credentials (If you forgot password, we can send you a reset password mail) and Click on Yes! Save it button. 

    4. Now click on the Launch button and complete the challenge. 

0/9000

Hello all, 

 

I have logged a case with Salesforce support on this issue, but hoping maybe someone on here has some input. Today I was notified that our Volunteer Calendar as well as our general volunteer signup page are throwing the following error. Any insight or help would be appreciated. Everything was working fine last week. 

URL No Longer Exists

 

You have attempted to reach a URL that no longer exists on salesforce.com. 

 

You may have reached this page after clicking on a direct link into the application. This direct link might be: 

• A bookmark to a particular page, such as a report or view 

• A link to a particular page in the Custom Links section of your Home Tab, or a Custom Link 

• A link to a particular page in your email templates 

 

If you reached this page through a bookmark, you are probably trying to access something that has moved. Please update your bookmark. 

 

If you reached this page through any of the other direct links listed above, please notify your administrator to update the link. 

 

If you reached this page through a link on our site, please

report the broken link directly to our Support Team

and we will fix it promptly. Please indicate the page you were on when you clicked the link as well as any other related information. We apologize for the inconvenience. 

 

Thank you again for your patience and assistance. And thanks for using

salesforce.com

 

#Volunteers For Salesforce App

2 answers
  1. Today, 12:17 AM

    I'm having the same issue although I cannot find "Update References to Legacy Host Names" in my needs action, due soon, overdue, or archived release updates. I've gone ahead and checked that legacy checkbox. Is my longterm task to ensure the V4F pages we are using use [domain].my.salesforce-sites instead of [domain].force.com? or is there more to the longterm fix than this?

0/9000

 am stuck on Communicate from Parent to Child and getting a error and trying to fix it 

 

Step not yet complete in Cunning Raccoon Playground 

We can’t find the ‘augmentor’ component.  

 

#Trailhead Challenges  #Trailhead

1 answer
  1. Jun 22, 5:06 PM

    Hi @jill dixson

     

    I'm a member of Trailhead Help team. I see that you have created a case with us and the case owner has already reached out to you. If there is any other queries, the case owner will assist you further. Thanks!

0/9000

Using disableCloudHubLogs property in project's pom.xml

 

 

when trying to deploy the application, mule maven plugin fails to build and throws the error below:

[INFO] BUILD FAILURE

[INFO] ------------------------------------------------------------------------

[INFO] Total time: 2.840 s

[INFO] Finished at: 2023-06-19T17:19:23Z

[INFO] ------------------------------------------------------------------------

[ERROR] Failed to execute goal org.mule.tools.maven:mule-maven-plugin:3.5.4:clean (default-clean) on project disableCloudHubLogs: Unable to parse configuration of mojo org.mule.tools.maven:mule-maven-plugin:3.5.4:clean for parameter disableCloudHubLogs: Cannot find 'disableCloudHubLogs' in class org.mule.tools.model.anypoint.CloudHubDeployment -> [Help 1]

[ERROR]

[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.

[ERROR] Re-run Maven using the -X switch to enable full debug logging.

[ERROR]

[ERROR] For more information about the errors and possible solutions, please read the following articles:

[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginConfigurationException

Sample snippet of the pom.xml

<plugin>

<groupId>org.mule.tools.maven</groupId>

<artifactId>mule-maven-plugin</artifactId>

<configuration>

<cloudHubDeployment>

<muleVersion>${mule.version}</muleVersion>

<username>${anypoint.username}</username>

<password>${anypoint.password}</password>

<applicationName>${artifactId}-${maven.build.timestamp}</applicationName>

<environment>${cloudhub.env}</environment>

<businessGroup>${anypoint.businessGroup}</businessGroup>

<region>${cloudhub.region}</region>

<uri>${anypoint.uri}</uri>

<workerType>${cloudhub.workerType}</workerType>

<workers>${cloudhub.workers}</workers>

<disableCloudHubLogs>true</disableCloudHubLogs>

<properties>

<mule.env>${cloudhub.env}</mule.env>

<anypoint.platform.client_id>${anypoint.clientid}</anypoint.platform.client_id>

<anypoint.platform.client_secret>${anypoint.secret}</anypoint.platform.client_secret>

<mule.key>${mule_key}</mule.key>

</properties>

</cloudHubDeployment>

<classifier>mule-application</classifier>

</configuration>

</plugin>

Mule Maven plugin versions can be found here

2 answers
0/9000

We use Education Cloud, and are using the application through experience cloud. When a student applies, they have to select the term and program at the beginning of the application. If they chose the wrong one, neither the student nor our team has been unable to fix it on the application. The only solution we've found is to have the student fill out another application. Has anybody else encountered this? Have you come up with any workarounds?  

1 answer
  1. Today, 12:03 AM

    Hi there, added a button to the experience that says, "Update Application Type" and a screenflow sends the student down the path of answering key questions again. Based on their answers, we adjust their application type and IATs.

0/9000

I have a report that I have created to look at the Cases in different statuses on Salesforce. 

 

Some of the Statuses are where cases have been addressed whereas some are were they have not been replied to yet. I am looking to add a formula that tells me the percentage of how many are responded to vs the total for the day. 

 

I have created a bucket column to group cases status in to 2 groups but I'm not able to add this so I must be doing something incorrectly. Is there a different way to do this?

2 answers
  1. Today, 12:00 AM

     

    Hi Raluca, I've grouped them by Status (see above) and ideally want to Calculate Applied / Total = Application Rate.

     

    Hi Raluca, 

     

    I've grouped them by Status (see above) and ideally want to Calculate Applied / Total = Application Rate. (61 / 76 = 80%) 

     

     

0/9000

We have a Wealth Group in our bank that manages about 1300 accounts, and we're transitioning from a legacy system to Salesforce FSC. To capture the notes from the legacy system, they have created .pdf files that we can attach to the Account in SF. However, we need to limit visibility of the file only to the Wealth Group, while keeping visibility of the Account to all users. For example, a customer service rep in a branch should see the Account record, but not the attached file, while a Wealth Group user would see the Account record and the attached file. Is this possible? 

 

#Upload Files

1 answer
0/9000

 I want to transmit few fields data from salesforce to the other system. In short when a ticket is created in salesforce i need to send those ticket/case data to the other system via ADO. . Can you please provide me with any reference links or thoughts how this can be done. 

 

Thanks in advance! 

 

 

#Integration

1 answer
0/9000