Marziya Sarwar
IndividualForum Replies Created
-
Marziya
MemberDecember 22, 2020 at 12:40 pm in reply to: What is the use of Playground Starter in Salesforce?The new Playground Starter app launches automatically when Salesforce Trailhead Playground is opened. It provides tips, best practices insights and walk-throughs to help users launch packages and applications in Trailhead, and easy access to login credentials.
-
Marziya
MemberDecember 22, 2020 at 12:39 pm in reply to: What are the advantages of using LWC over Lightning components?Main advantages of using LWC over Lightning Components, are:
- LWC is Fast.
- Improved API support for third-party APIs.
- It is light-weight.
-
Constructor() method fires when a component instance is created.
-
Marziya
MemberDecember 21, 2020 at 1:00 pm in reply to: What is the use of @track decorators in LWC?The ability to create decorators is part of ECMAScript, but these three decorators are unique to Lightning Web Components. @api: To expose a public property, decorate it with @api. Public properties define the API for a component.
-
Federation ID is a unique username for each user that can be shared across multiple apps. Sometimes the ID is the user's employee ID.
-
Immutability is the idea that data or objects should not be modified after they are created. ... Pat Helland of Salesforce gives a great talk on how “Immutability Changes Everything“.
-
Marziya
MemberDecember 17, 2020 at 1:49 pm in reply to: What is decorators in Salesforce lightning web component?The Lightning Web Components programming model has three decorators that add functionality to a property or function.
The ability to create decorators is part of ECMAScript, but these three decorators are unique to Lightning Web Components. -
Marziya
MemberDecember 17, 2020 at 1:47 pm in reply to: What is the use of decorators in Salesforce LWC?Decorators dynamically alter the functionality of a property or function. The ability to create decorators is part of ECMAScript, but these three decorators are unique to Lightning Web Components. @api: To expose a public property, decorate it with @api. Public properties define the API for a component.
-
Marziya
MemberDecember 16, 2020 at 2:32 pm in reply to: How to share record in Salesforce manually?From Setup, enter Sharing Settings in the Quick Find box, then select Sharing Settings. Click Edit in the Organization-Wide Defaults area. Select the Manual User Record Sharing checkbox to display the Sharing button on user detail pages, which enables users to share their records with others.
-
So when someone “asks” Salesforce to update a record, Salesforce first locks the record so no one else can update it until the lock is released. If someone tries to (asks for an) update the record while it's locked, Salesforce will try up to 10 times to obtain a record lock, before giving up, and throwing an error.
-
Salesforce DX adds new tools that streamline the entire development life cycle. It improves team development and collaboration, facilitates automated testing and continuous integration, and makes the release cycle more efficient and agile. But Salesforce DX is so much more than just a new set of tools!
-
- Using Record Type & Page Layouts: Create two different record types say “Open” & “Locked” and change the record type of the record using workflow field update or trigger. And then create a separate page layout for the “Locked” record type with all fields marked as ‘Read-Only’. Remove the ‘Edit’ and ‘Delete’ buttons from the page layout. However, this is not an option if you are using record types for some other purpose and do not want to change it just to meet this requirement. Also, note that using this to lock records is not a fool-proof solution as users will still be able to edit the record from the list view.
-
Marziya
MemberDecember 15, 2020 at 1:16 pm in reply to: What is the use of .slice method in Salesforce Lightning Component?Selects one or more values from a one-dimensional array given a start and, optionally, an end position, and returns a one-dimensional array. An error occurs if the start value is greater than the end value.
-
Marziya
MemberDecember 10, 2020 at 2:43 pm in reply to: What is the use of decorators in LWC in Salesforce?Decorators dynamically alter the functionality of a property or function. The ability to create decorators is part of ECMAScript, but these three decorators are unique to Lightning Web Components. @api: To expose a public property, decorate it with @api. Public properties define the API for a component.
-
Import a wire adapter using named import syntax. import { wire} from 'lwc'; Decorate a property or function with @wire and specify the wire adapter. Each wire adapter defines a data type.
-
Marziya
MemberDecember 9, 2020 at 12:50 pm in reply to: How can we use Lightning Components with the Salesforce1 Mobile App ?- Create lightning component.
- Step 2 : Create lightning component tab.
- Step 3 : Add component tab on Salesforce1 navigation menu.
-
Marziya
MemberDecember 9, 2020 at 12:46 pm in reply to: What is the use of the aura:method tag in Lightning ?Aura:Method enables you to directly call a method in a component's client-side controller instead of firing / handling a component event. With the help of <aura:method > we can call child component method from parent component. Get Message from Child Component to parent Component.
-
Marziya
MemberDecember 8, 2020 at 3:03 pm in reply to: How to add flow on the home page in Salesforce?- In the global search bar, enter Edge, and select the Edge Communications account.
- Click. and select Edit Page.
- Drag a Flow component to the top of the right column in the canvas.
- For Flow, select the flow we created earlier: Sample Flow.
- Save and activate your changes.
-
Marziya
MemberDecember 8, 2020 at 2:58 pm in reply to: How to pass current id of record in the flow in Salesforce?- Create a new Flow with Salesforce as the Service used for identity.
- Drag a Data Load element into the Flow.
- Create a new Data Action.
- For the Value to load, either select a Value of Kind: Object, Type: Contact or create a new Value of Kind: Object, Type: Contact.
- Use the Contact binding for loading the data.
-
Marziya
MemberDecember 7, 2020 at 2:21 pm in reply to: How the customer data is safe in Salesforce?Your data is secure with salesforce.com. Your data will be completely inaccessible to your competitors. ... When you access our site using a supported web browser, Secure Socket Layer (SSL) technology protects your information using both server authentication and data encryption.
-
Salesforce provides three layers of security with lots of flexibility to accommodate virtually any business need. Profiles controls object-level and field-level access. Permission sets are used to provide access to additional objects. Field-level security controls provide access to individual fields within an object.
-
Marziya
MemberDecember 7, 2020 at 2:19 pm in reply to: How does health check works in Salesforce org?With Health Check, you can identify and fix vulnerabilities in your security settings, all from a single page. A summary score shows how well your org is aligned with the Salesforce-recommended standard. Typically, if you change your settings to be less restrictive, your score decreases.
-
Marziya
MemberDecember 4, 2020 at 12:01 pm in reply to: What are the actions in the workflow in Salesforce?Workflow Action : A workflow action, such as an email alert, field update, outbound message, or task, fires when the conditions of a workflow rule are met. Email Alert : Email alerts are actions that send emails, using a specified email template, to specified recipients
-
Marziya
MemberDecember 4, 2020 at 11:58 am in reply to: What is the maximum number of actions we can have per workflow rule?Increase the 'Maximum Number of Actions Per Workflow Rule' limit. By default, the number of actions per workflow rule is set to 10 for every organization. If you need more than 10 actions when a workflow rule is triggered, you can contact Salesforce Support and request to increase it up to 25.
-
Time-dependent actions are executed at a specific time, such as 10 days before a record's close date. When that specific time passes, the workflow rule re-evaluates the record to make sure that it still meets the rule criteria. If the record does, the workflow rule executes those actions. This known as Time Trigger.