How to set debug log for Community Guest User?
1. Go to Domains. 2. Select the URL of Community 3. Select the Community. 4. Click Public Access Settings button. 5. Click Assigned Users. Get the username. 6. Go to Debug Logs. ....
1. Go to Domains. 2. Select the URL of Community 3. Select the Community. 4. Click Public Access Settings button. 5. Click Assigned Users. Get the username. 6. Go to Debug Logs. ....
Batch - System.isBatch()@future - System.isFuture()Queueable - System.isQueueable()Schedulable - System.isScheduled()Trigger - Trigger.isExecuting Visualforce - ApexPages.currentPage() != nullApex REST - RestContext.request != null Sample code to execute in Developer Console system.debug('Batch is ....
View group member engagement in a convenient report linked from each group. See the number of members, posts, comments, likes, questions, and answered questions in a single view for each ....
Choose a global constant to set a value to null or an empty string. For example, choose $GlobalConstant.Null. Two global constants are 1. $GlobalConstant.Null 2. $GlobalConstant.EmptyString Scenarios for Process Builders: 1. ....
Sample Code: List < Contact > conList = new List < Contact > { new Contact( FirstName = 'Test0', LastName = 'Test0', Department = 'Finance' ), new Contact( FirstName = ....
Sample Code: @RestResource(urlMapping='/Account/*') global with sharing class sampleRest { @HttpGet global static Account doGet() { RestRequest req = RestContext.request; String memberId = req.requestURI.substring(req.requestURI.lastIndexOf('/') + 1); Account result = [SELECT Id, ....
Remote Site Settings: Visualforce Page: <apex:page controller="RESTAPIXMLResponseController"> <apex:form> <apex:pageBlock> <apex:pageBlockSection> <apex:pageBlockSectionItem>Customer No: <apex:inputText value="{!strCustomerNo}"/></apex:pageBlockSectionItem> </apex:pageBlockSection> <apex:pageBlockButtons location="bottom"> <apex:commandButton value="Fetch" action="{!fetchAPI}"/> </apex:pageBlockButtons> </apex:pageBlock> <apex:pageBlock> <apex:repeat value="{!mapCustomer}" var="c"> {!c} - {!mapCustomer[c]}<br/> </apex:repeat> ....
Remote Site Settings: Visualforce Page: <apex:page controller="RESTAPIJSONResponseController"> <apex:form> <apex:pageBlock> <apex:pageBlockButtons location="bottom"> <apex:commandButton value="Fetch" action="{!fetchAPI}"/> </apex:pageBlockButtons> </apex:pageBlock> <apex:pageblock> <apex:pageBlockSection> <apex:pageBlockTable value="{!listWrapper}" var="obj"> <apex:column value="{!obj.id}" headerValue="Id"/> <apex:column value="{!obj.login}" headerValue="Login"/> <apex:column value="{!obj.url}" headerValue="URL"/> ....
1. Go to https://www.eclipse.org/downloads/eclipse-packages/. 2. Select 32 bit or 64 bit based on your computer. To know whether your system is 32 bit or 64 bit, use the below link https://www.infallibletechie.com/2013/06/how-to-know-whether-my-system-is-32-bit.html ....
Chatter streams are custom feeds that you create by combining multiple related feeds. Look for streams on your Chatter home page. Create up to 100 streams that each combine posts ....