Shweta
IndividualForum Replies Created
-
You can do this with workflow rules if you have Salesforce Enterprise or Unlimited Edition. Under Setup > App Setup > Create > Workflows & Approvals
Create a new workflow rule and then set an email alert to go out based on your criteria. For the first example you mentioned, you'd want to set your workflow rule to run on Accounts "only when a record is created" and the status = "your status here." You need to make an email template first before being able to trigger an email alert. You can do that under Setup > Administration Setup > Communication Templates > Email Templates. -
lightning-combobox is an input element that enables single selection from a list of options. The result of the selection is stored as the value of the input. Multiple selection is currently not supported. To support multiple selection, use lightning-dual-listbox instead.
-
This tag configures the component for different page types and defines component properties. For example, a component could have different properties on a record home page than on the Salesforce Home page or on an app page. It supports the property, propertyType, objects, and supportedFormFactors subtags.
-
Shweta
MemberJanuary 5, 2021 at 6:07 pm in reply to: How to enable the call recording of ringCentral in Salesforce?1. Login to Salesforce and if you are in Salesforce Lightning Experience view, Switch to Salesforce Classic.
2. Click Setup, and then type "layout" on Quick Find/Search.
3. Click Task Page Layouts (Path: Build > Customize > Activities > Task Page Layouts).
4. Drag the Call Recording field on your Task Layout.
5. Click save. -
RingCentral for Salesforce provides seamless integration between Salesforce.com and your RingCentral services to enable improved customer retention, greater agent productivity, and advanced business processes.
-
This tag appears in list views, like the list of Lightning Components in Setup, and in the Lightning App Builder and in Experience Builder.
-
Lightning Design System reflects the patterns and components that underpin the Salesforce product. These patterns and components provide a unified language and consistent look and feel when designing apps and products within the Salesforce ecosystem.
-
Shweta
MemberDecember 30, 2020 at 3:01 pm in reply to: What is lead-to-cash lifecycle in Salesforce?Lead-to-cash implements an integrated, technology solution which automates aspects of the sales cycle and makes internal processes more efficient. From lead-to-order software and configure price quote (CPQ) tools to invoicing/collection systems and a fully functional customer relationship management implementation, sales teams can quickly advance opportunities in their pipeline.
-
Follow these steps to add list view:
1. Click Create New View at the top of any list page or in the Views section of any tab home page
2. Enter the view name.
3. Enter a unique view name. The API and managed packages use this unique name
4. Specify your filter criteria. If you want more filter fields, click Add Filter Logic, and then Add Row.
5. Select the fields you want to display on the list view.
6. Click Save. The view appears in the View dropdown list so you can access it later. -
Shweta
MemberDecember 24, 2020 at 5:22 pm in reply to: What is the use of decorators in LWC in Salesforce?Decorator is a part of ECMA script and used to add extra functionality in your function or methods. In LWC we use 3 decorator to enhance the functionality of our property or function.
These are the three decorators of LWC: @api, @wire, and @track. -
Shweta
MemberDecember 24, 2020 at 5:19 pm in reply to: What is difference between Singleton and immutable class?Singleton object will have only one object and multiple states and Immutable object will have each new object with each time the state is changed.
-
Shweta
MemberDecember 24, 2020 at 2:39 pm in reply to: Is Lightning an MVC framework in Salesforce?No, Lightning is a component-based framework.
-
Shweta
MemberDecember 23, 2020 at 5:36 pm in reply to: What is difference between static and singleton class?Static classes are basically used when you want to store a single instance, data that should be accessed globally throughout your application. The class will be initialized at any time but mostly it is initialized lazily. Lazy initialization means it is initialized at the last possible moment of time. There is a disadvantage of using static classes. You never can change how it behaves after the class is decorated with the static keyword.Singleton class does not require you to use the static keyword everywhere. Static class objects cannot be passed as parameters to other methods whereas we can pass instances of a singleton as a parameter to another method.
-
Scratch org is a source-driven and disposable deployment of Salesforce code and metadata, made for developers and automation (CI/CD). A scratch org is fully configurable, allowing developers to emulate different Salesforce editions with different features and preferences.
-
By using Einstein Prediction Builder, you can make custom predictions about what happens next in your business without writing any code. After you determine what you want to predict, which field represents it, and what object contains that field, you're ready to build.
-
Shweta
MemberDecember 21, 2020 at 4:13 pm in reply to: What is difference between mutable and immutable?Mutable: If the value can change, the object is called mutable. It has both Getter and Setter methods
Immutable: If the value cannot change, the object is called immutable. It has only the Getter method -
Shweta
MemberDecember 21, 2020 at 4:08 pm in reply to: What is Einstein next best action in Salesforce?Einstein Next Best Action is one such functionality that displays right recommendations to the right people at the right time. Create and display offers and actions for your users that are tailored to meet any unique business criteria. It relies on flows, recommendations, action strategies, and components and has standard objects for reporting.
-
Shweta
MemberDecember 21, 2020 at 4:05 pm in reply to: What is Einstein prediction builder in Salesforce?Einstein Prediction Builder is a declarative tool that helps fast-track predictions based on Salesforce fields. This will help a Salesforce admin to custom-build predictions on any object via few clicks on a visual interface and power workflows and apps using the newly-found AI.
-
Shweta
MemberDecember 18, 2020 at 3:04 pm in reply to: What is the use of decorators in Salesforce LWC?Lightning Web Components programming model has three decorators that add functionality to a property or function. And the 3 Decorators in Lightning Web Components are
1) @api
2) @track
3) @wire -
Shweta
MemberDecember 18, 2020 at 2:48 pm in reply to: What is the use if:false and if:true in LWC?template if:true in LWC is used for Conditional Rendering to display markup or DOM elements dynamically if true value is provided. template if:false works in the same way but with the false value. But template if:true or template if:false does not support the Conditional Statements. For example, we can write template if:true={boolVariable} but we can not write template if:true={number>10}.
-
connectedCallback(): This callback method called when the element is inserted into a document. Its lifecycle flows from Parent to Child Component. we can’t access child elements in the component body because they don’t exist yet. You can access the host element with this.template.
-
Shweta
MemberDecember 17, 2020 at 3:24 pm in reply to: What is decorators in Salesforce lightning web component?Decorators are literally used to decorate the code with clean syntax. They are simple functions and they dynamically change the functionality of property or function. They are identified with the symbol ‘@’ as prefixed before a method or a variable name.Whenever we want to use any decorator, we must need to explicitly import it from ‘lwc’
-
Shweta
MemberDecember 17, 2020 at 3:21 pm in reply to: What decorators are available in LWC Lightning Web component?In Lightning Web Components, we are having three types of Decorators.
@api.
@track.
@wire. -
Shweta
MemberDecember 17, 2020 at 3:20 pm in reply to: What is Salesforce Lightning Web components?Lightning Web Components is the Salesforce implementation of that new breed of lightweight frameworks built on web standards. It leverages custom elements, templates, shadow DOM, decorators, modules, and other new language constructs available in ECMAScript 7 and beyond.
-
Salesforce DX, used primarily by developers, allows users to have true Version control. Version control allows developers to have better control over collaboration, auditing, and disaster control. It is also an important part of an agile release plan. It also helps users build and release new features quickly and with minimal risks.