Posts

Showing posts with the label sfdc

Introduction to Lightning Web Component(LWC)

Image
What is the Lightning Web Component(LWC)? LWC is a new programming model to create lightning components. It was introduced in Feb 2019. Lightning Web Components are being used by developers for creating UI. Lightning Web Components are custom HTML elements built using modern HTML and JavaScript. These components can coexist and interoperate with Aura components on a single page, seamlessly appearing as Lightning components to administrators and end users. Lightning Web Components are available in Enterprise, Performance, Unlimited, and Developer editions of Salesforce. Built upon core Web Components standards, Lightning Web Components focus on delivering optimal performance in browsers supported by Salesforce. By leveraging native browser capabilities, these components are lightweight and provide exceptional performance. The majority of the code you write for Lightning Web Components consists of standard JavaScript and HTML. Benefits of Using LWC Easy to Learn The Lightning Web Compone...

Setup Vlocity or setup Omnistudio

Image
How to setup Vlocity or setup Omnistudio? To setup Vlocity or setup Omnistudio, we must Sign Up for a Omnistudio - Enabled Developer Edition Org.  https://trailhead.salesforce.com/en/promo/orgs/omnistudiotrails Now we need to configure 2 Remote Site Setting to activate Flexcard. 1. Just navigate to Omnistudio Application - Omnistudio Flexcards 2. you can see a warning button. Just click on that button   3. You can see 2 remote site setting values, which we need to configue and it should be different for different different orgs. You can name anything of remote site setting. 4. After configure, the Warning button automatically be removed. Hope you guys like this content 💥 Make sure to follow on Instagram : SFDCMASTER

Einstein Analytics Administration Basics

Learn About Einstein Analytics Setup Einsein Analytics is... An application built on top of Salesforce What kind of org should you use for checking challenges when you do Trailhead modules about Einstein Analytics? A Developer Edition org, because it's a free, safe environment where you can try things out Assign Permissions What do you have to assign to users before they can access Einstein Analytics? A and B ("Einstein Analytics permission set license (PSL)" And "Permission set with at least one Einstein Analytics user permission") Which permission gives you view-only access to Einstein Analytics? Use Analytics Select and Enable Einstein Analytics Features When you set up Einstein Analytics, which of the following features can you enable? B and C ("Sharing of apps with Communities " And "Access to the API") Which of the following are requirements for enabling Analytics for Communities? B and D ("Have a Customer Community Plus or Partner...

Einstein Analytics Data Integration Basics

Kick Off the Data Journey What type of data can a dataset contain? Any of the above or a combination What is a benefit of using a dataset? It lets you explore large amounts of data quickly What are the two main steps for creating a dataset? Extract and prepare Extract External Data into Analytics Why is it important to prepare the data in a CSV file before you bring it into Analytics?  To make sure Analytics can set the field type correctly What can you do on the Edit Field Attributes page when uploading a CSV file to Analytics All of the above Where can you view the status of a CSV upload in Analytics? The data manager Extract Salesforce Data into Analytics What can you do with the dataflow? Extract Salesforce object data into Analytics Why is it important to select the right root object when you use the dataset builder? The root object determines what related objects you can add to the dataset.   What dataflow information can you see in the Monitor tab of the data manag...

DIFFERENCE BETWEEN SET, LIST AND MAP

Three different types of collections in Apex. List Set Map List : List simply called collection of duplicate values and which contains Integer indexed data. Create new  LIST . List<String> myList = new List<String>(); Add into  LIST . myList.add(‘Navin’); myList = new List<String>{ ‘Navin’, ‘Aryan’ }; Duplicate means? myList.add(‘Navin’); myList.add(‘Aryan’); myList.add(‘Navin’); Here the size of LIST is 3 . We can get this by myList .size() At index 0, myList[0] = we get Navin At index 1, myList[1] = we get Aryan At index 2, myList[2] = we get Navin Set : Set simply called collection of Unique values and cannot be sort. Create new SET. Set<String> mySet = new Set<String>(); Add into Set. mySet .add(‘Navin’); mySet = new mySet <String>{ ‘Navin’, ‘Aryan’ }; Unique means? mySet.add(‘Navin’); mySet.add(‘Aryan’); mySet.add(‘Navin’); Here the size of SET is 2 . We can get this...