Feed
- Recent Activity
- Created Date
- Questions with an Accepted Answer
- Questions with No Accepted Answer
- Unanswered Questions
I am trying to deploy Mule application with trial version in CloudApp 2.0. The application is saying message listener started successfully in the logs, but it is running very long time while applying changes and its deployment is not completed for long time. Can I know what is the issue?
#Trailhead Challenges
On the Create assignment rules section of this task I am asked to create a field with "case record type" but this feild is not showing up in the options. If anyone knows how to fix this it would be greatly appreciated.
#Trailhead Challenges
,
I need some help with flow please!
When a user checkmarks a box on the Product2 record, a record triggered flow gathers all related Opportunities and updates a checkbox on the Opportunity. In order to do this I must temporarily assign a permission set to the running user, then take it away if they didn't have it previously.
I found Jen's excellent blog about this topic and have used quite a few of the ideas:
https://admin.salesforce.com/blog/2022/automate-this-automatically-assign-remove-a-permission-set
The problem I am running into is, I need to add the permission set to the user, update the Opportunities, then remove the permission set assignment. Here is what that part of my flow looks like:
When I debug, I run into this error:
I thought by adding the add/remove as a subflow I could avoid the error but as you can see it made no difference. Any thoughts on how to solution for this and not run into the error?
Thanks everyone!
#Flow#Flows
#Flownatics
#Permissionset
Today, 3:19 PM Hi Laura,
You can consider using an async path in the same flow to break the transaction, but you might also need another subflow to remove the permission set.
Hi there im now at the topic "Create Assignment Rules
" and there ,
- Click the App Launcher and select Service.
- Click the Cases tab.
- Click New, then select Product Support as record type and click Next.
- Fill in the new case record details: Field ValueContact Name | Sean Forbes Account Name | Edge Communications Product | (choose any product from the drop-down) Type | Electronic Case Origin | Email Case Reason | Performance Subject | Laptop not working Description | Client laptop is not working Assign using active assignment rule | Select
- Click Save.
- Copy the case number of the case you just created.
- From Setup, enter Case Escalations in the Quick Find Box, then select Case Escalations.
- Filter the case escalations queue to show the case you just created by entering the criteria: Case To Escalate equals [case number for the case you just created].
- Click Search. Note the escalation actions in the queue and when can you expect to see an escalation alert email for this case.
completing this step is not possible as there is an error " Contact Name Sean Forbes Contact NameSelect an option from the picklist or remove the search term.", so please rectify the issue as soon as possible, i will be providing the the screenshot. Thankyou.
#Trailhead Challenges
Jun 27, 4:26 PM 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.
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