SOQL to fetch Marketing User field from User object Salesforce
Use the below SOQL to fetch Marketing User field from User object Salesforce. SOQL: SELECT Id, UserPermissionsMarketingUser FROM User
Use the below SOQL to fetch Marketing User field from User object Salesforce. SOQL: SELECT Id, UserPermissionsMarketingUser FROM User
In Case object, Date/Time Opened is the Standard Created Date field. Label is Date/Time Opened and API Name is CreatedDate. Data Type of the Date/Time Opened(CreatedDate) field is Date/Time. Check ....
Before updating the local project, do the below Cheers!!!
Check the following formula for Validation Rule to support 10 digit number or Email Address. Validation Rule: NOT ( OR ( REGEX( InfallibleTech__Employee_Name__c , '[0-9]{10}'), REGEX ( InfallibleTech__Employee_Name__c , '[a-zA-Z0-9._-]+@[a-zA-Z]+.[a-zA-Z]{2,4}') ....
Below sample code helps to avoid double clicking of apex:commandButton. Sample Code: <apex:pageBlockButtons location="bottom"> <apex:actionStatus id="saveStatus"> <apex:facet name="stop"> <apex:commandButton value="Next Step" action="{!newCase}" status="saveStatus" reRender="thefrm"/> </apex:facet> <apex:facet name="start"> <apex:commandButton value="Saving" disabled="true"/> </apex:facet> ....
Below sample code helps to disable apex:commandButton and enable after the action. Sample Code: <apex:commandButton value="Next Step" action="{!newCase}" onclick="this.disabled=true;this.value='Saving';this.form.submit();" oncomplete="this.disabled=false;this.value='Next Step';" /> Cheers!!!
Before updating the local project, do the below Cheers!!!
1. Download the Neon Eclipse package using the below link http://www.eclipse.org/downloads/packages/release/Neon/RC3 2. Go to Help --> Instal New Software. 3. Click "Add". 4. Enter the information as below. http://media.developerforce.com/force-ide/eclipse42 5. ....
Create Multiple Calendars from Anything in Lightning Experience Help us to create multiple calendars as we have in iPhone and other Calendar Apps. Field Service Lightning Super Support Team Metrics—Active ....
Below sample trigger can be used to update parent records when task is created or updated. Note:I have implemented the trigger to update Opportunity alone. It do a dummy update as ....