Marziya Sarwar
IndividualForum Replies Created
-
A typical Salesforce Development Lifecycle involves multiple actors. Many of them are specialist of one role and some. have expertise in another. For example many project managers also work as release managers and many Developers also have.
-
Marziya
MemberOctober 8, 2020 at 1:04 pm in reply to: How to create Demo.design file in Salesforce lightning component?- Go to gear icon > developer console.
- Open up a lightning component bundle.
- Select/Create the design file.
-
Marziya
MemberOctober 7, 2020 at 1:14 pm in reply to: What is default with sharing or without sharing in salesforce?If a class is not declared either with sharing or without sharing, then by default, such a class is executed in system mode, i.e. without sharing mode; and current sharing rules remain in effect- which means that if any other class that has sharing enforced, calls such a non-specified-sharing class, then the called or .
-
Marziya
MemberOctober 7, 2020 at 1:08 pm in reply to: How many callouts to external service can be made in a single Apex transaction?100 callouts are possible in single apex transcation.
-
Marziya
MemberOctober 7, 2020 at 1:05 pm in reply to: What is Inherited Sharing keyword in Salesforce ?Using inherited sharing enables you to pass security review and ensure that your privileged Apex code is not used in unexpected or insecure ways.
-
Marziya
MemberOctober 6, 2020 at 2:18 pm in reply to: What\'s the difference between the message and the purpose in Salesforce?apex:PageMessages is a containing component where any messages that have been added to the page will appear. apex:pageMessage is a component that adds a single message to the page. apex:message allows you to associate a message with a component. For more info use this link.
-
Marziya
MemberOctober 6, 2020 at 2:17 pm in reply to: What is the architecture of EDA in Salesforce?As an open data architecture, built on top of the Salesforce Platform, EDA allows you to add any applications and custom functionality you might need.
-
From Setup, enter Visualforce Pages in the Quick Find box, then select Visualforce Pages to display the Pages list page, which shows all the Visualforce pages defined for your organization.
-
Marziya
MemberOctober 5, 2020 at 2:31 pm in reply to: What is the use of ltng:outApp in Lightning Application in Salesforce?ltng:outApp: – Extending from ltng:outApp adds SLDS resources to the page to allow your Lightning components to be styled with the Salesforce Lightning Design System (SLDS).
-
-
Marziya
MemberOctober 5, 2020 at 2:28 pm in reply to: What is inherited sharing keyword does in Salesforce?Using inherited sharing enables you to pass security review and ensure that your privileged Apex code is not used in unexpected or insecure ways
-
Marziya
MemberSeptember 30, 2020 at 3:02 pm in reply to: Difference Between Inbound and Outbound Web Service in SalesforceInbound web services are designed to provide third parties with the ability to retrieve (GET) or update (POST) data in ServiceNow, while outbound web services allow ServiceNow to initiate a transaction with a third party (also using either GET or POST, etc.)
-
Marziya
MemberSeptember 30, 2020 at 3:01 pm in reply to: What is the use of parseInt in Lightning Component in Salesforce?Please refer this link -- https://developer.salesforce.com/forums/?id=906F0000000BVxyIAG
-
Marziya
MemberSeptember 30, 2020 at 2:53 pm in reply to: How many ways we can share a record in Salesforce?Five.
-
Queueable apex is an asynchronous apex method. It's similar to the @future method. By using this queueable interface, we can process an Apex that runs for a long time (such as web service call outs and extensive database operations). The job isadded to Apex job queue.
-
Marziya
MemberSeptember 29, 2020 at 2:31 pm in reply to: how to cover return statement in test class ? -
Salesforce is a CRM used to manage customer data and nurturing leads to manage business ROI.
-
Marziya
MemberSeptember 28, 2020 at 2:37 pm in reply to: How to auto approve opportunity in Salesforce?Name: Opportunity Approval.
Entry Criteria: StageName = 'Pre-Contract'
Criteria: Amount <1000, else approve record. Approvers: Bobby or Billy, whoever responds first. -
Be sure to update your Apex populating the Positions Last Interview Date and add a line to set Bypass Apex to true. Update your Validation Rule on the Positions object to include Bypass_Apex__c = false. This will prevent the Validation Rule from firing when your Apex is updating the Last Interview Date.
-
Marziya
MemberSeptember 28, 2020 at 2:33 pm in reply to: How do I disable a trigger for a particular user in Salesforce?Uncheck the Active checkbox to disable a Trigger Handler and the Apex class associated with it.
For all NPSP-packaged Trigger Handlers, check the User Managed checkbox to prevent the Trigger Handler from re-activating during the next update of the package. -
If you specify a queue email, instead of sending the notifications to the individual member's email address, an email will be sent directly to that queue email address.
-
Roles within the hierarchy affect access on key components such as records and reports.
-
Marziya
MemberSeptember 24, 2020 at 3:24 pm in reply to: How to make a field editable on double click in vf page in Salesforce?Please follow given link :-
https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_quick_start_inline_editing.htm -
If you don't have multicurrency enabled, then amounts are just displayed as an amount. Allows amounts to be converted, displayed and reported according to exchange rates. Allows the use of dated exchange rates so the value at a certain time can be fixed.
-
Marziya
MemberSeptember 23, 2020 at 2:17 pm in reply to: When to use WebServiceMock Interface in Salesforce ?Please refer this link ---- https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_interface_webservicemock.htm