Forum Replies Created

Page 1 of 21
  • Marziya

    Member
    December 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

    Member
    December 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.
  • Marziya

    Member
    December 22, 2020 at 12:37 pm in reply to: What is the use of constructors in LWC?

    Constructor() method fires when a component instance is created.

  • Marziya

    Member
    December 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.

  • Marziya

    Member
    December 21, 2020 at 12:59 pm in reply to: What is Federation Id in Salesforce?

    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.

  • Marziya

    Member
    December 21, 2020 at 12:57 pm in reply to: What is Mutability in Salesforce?

    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

    Member
    December 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

    Member
    December 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

    Member
    December 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.

  • Marziya

    Member
    December 16, 2020 at 2:31 pm in reply to: What is Record locking in Salesforce?

    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.

  • Marziya

    Member
    December 16, 2020 at 2:26 pm in reply to: What is the use Salesforce DX tools?

    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!

  • Marziya

    Member
    December 15, 2020 at 1:19 pm in reply to: How can we Lock Records in Salesforce?
    1. 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

    Member
    December 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

    Member
    December 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.

  • Marziya

    Member
    December 10, 2020 at 2:42 pm in reply to: How to wire in LWC in Salesforce?

    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

    Member
    December 9, 2020 at 12:50 pm in reply to: How can we use Lightning Components with the Salesforce1 Mobile App ?
    1. Create lightning component.
    2. Step 2 : Create lightning component tab.
    3. Step 3 : Add component tab on Salesforce1 navigation menu.
  • Marziya

    Member
    December 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

    Member
    December 8, 2020 at 3:03 pm in reply to: How to add flow on the home page in Salesforce?
    1. In the global search bar, enter Edge, and select the Edge Communications account.
    2. Click. and select Edit Page.
    3. Drag a Flow component to the top of the right column in the canvas.
    4. For Flow, select the flow we created earlier: Sample Flow.
    5. Save and activate your changes.
  • Marziya

    Member
    December 8, 2020 at 2:58 pm in reply to: How to pass current id of record in the flow in Salesforce?
    1. Create a new Flow with Salesforce as the Service used for identity.
    2. Drag a Data Load element into the Flow.
    3. Create a new Data Action.
    4. For the Value to load, either select a Value of Kind: Object, Type: Contact or create a new Value of Kind: Object, Type: Contact.
    5. Use the Contact binding for loading the data.
  • Marziya

    Member
    December 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.

  • Marziya

    Member
    December 7, 2020 at 2:21 pm in reply to: What is Salesforce data security model?

    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

    Member
    December 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

    Member
    December 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

    Member
    December 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.

  • Marziya

    Member
    December 4, 2020 at 11:55 am in reply to: What is a Time Trigger in Salesforce?

    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.

Page 1 of 21