Marziya sarwar
MemberForum Replies Created
-
Marziya
MemberNovember 20, 2020 at 2:13 pm in reply to: What is the use of SingleEmailMessage in Salesforce?Usage. SingleEmailMessage extends Email and inherits all of its methods. All base email ( Email class) methods are also available to the SingleEmailMessage objects. Emails sent via SingleEmailMessage count against the sending organization's daily single email limit.
-
Marziya
MemberNovember 20, 2020 at 2:12 pm in reply to: What is the use of MassEmailMessage in Salesforce?MassEmailMessage extends Email and inherits all of its methods. All base email ( Email class) methods are also available to the MassEmailMessage objects.
-
Marziya
MemberNovember 20, 2020 at 2:11 pm in reply to: Can we add images in reports in Salesforce?In a custom object, there's a rich text field where one can select an image - the image will show up if you are on the record page.
-
Marziya
MemberNovember 19, 2020 at 11:23 am in reply to: Why is it important to prioritize incoming leads?Current customers understand the pain points and problems of your prospects better than you do because they already experienced them firsthand. Because of this, they're able to match you with similar companies.
-
Marziya
MemberNovember 19, 2020 at 11:21 am in reply to: What are actions in Approval Process in Salesforce?An approval action occurs when all required approvers approved a step. An approval process automates how records are approved in Salesforce.
-
Marziya
MemberNovember 19, 2020 at 11:19 am in reply to: Why is it important to prioritize incoming leads?Prioritizing based on lead source is something I've learned through years of experience. ... Along with that, current customers understand the pain points and problems of your prospects better than you do because they already experienced them firsthand. Because of this, they're able to match you with similar companies.
-
Marziya
MemberNovember 18, 2020 at 12:07 pm in reply to: When recalled action is performed in Approval process in Salesforce?A recall action occurs when a submitted approval request is recalled. By default, the record is unlocked. Record locking prevents users from editing a record, regardless of field-level security or sharing settings. By default, Salesforce locks records that are pending approval.
-
Marziya
MemberNovember 18, 2020 at 12:05 pm in reply to: What is difference between workflow rules and approval process in Salesforce?Workflow rules consist of single step and a single action where as approval process has multiple steps and different actions. Workflow rules trigger automatically and the rules when triggered are not visible to the user.
- This reply was modified 4 years ago by Marziya.
-
Marziya
MemberNovember 18, 2020 at 11:56 am in reply to: What is the use of setParam in Salesforce lightning Components?Sets a parameter for an event. This method doesn't modify an event that has already been fired.
-
Marziya
MemberNovember 17, 2020 at 12:05 pm in reply to: Which interface we are supposed to implement so that a lightning componentAdd the force:appHostable interface to a Lightning component to allow it to be used as a custom tab in Lightning Experience or the Salesforce mobile app. Components that implement this interface can be used to create tabs in both Lightning Experience and the Salesforce mobile app.
-
Marziya
MemberNovember 17, 2020 at 12:03 pm in reply to: How to create object Type attribute in lightning component?An attribute can have a type corresponding to an Object. For example :-
<aura:attribute name="data" type="Object" /> -
Marziya
MemberNovember 13, 2020 at 12:49 pm in reply to: How to Use Async SOQL to Query Big Objects in Salesforce ?There are two main ways to use Async SOQL to get a manageable dataset out of a big object. The first is to use filtering.
-
With Notes, Salesforce's enhanced note-taking tool, you can use rich text, lists, and images in your notes; relate notes to multiple records.
-
Marziya
MemberNovember 13, 2020 at 12:44 pm in reply to: How to report notes and attachments in Salesforce?Steps to create a Notes Report
- Navigate to the Reports tab and click New Report.
- For "Report Type," select File and Content Report, then click Continue.
- Add the following filter: File Type equals SNOTE (ensures that the report only includes Notes).
- Remove all columns from the report.
-
Marziya
MemberNovember 12, 2020 at 1:35 pm in reply to: How to generate auto number for existing records in Salesforce?Check "Generate Auto Numbers for existing records" check box while creating auto number field. It will take some time to reflect after creating the field.
-
1. Create a custom text field on the object that you're searching records. Since this field will only be used for searching purposes, don't add the field to your Page Layouts. ... Create a workflow rule with the following criteria to update your custom text field with the value that you wish to search for.
-
Marziya
MemberNovember 11, 2020 at 1:53 pm in reply to: How to create an auto field which auto updates in 15 minutes in Salesforce?Please follow this url https://developer.salesforce.com/forums/?id=906F0000000909EIAQ
-
Yes it is available.
-
Marziya
MemberNovember 10, 2020 at 1:21 pm in reply to: Where to use HTML type template in Salesforce Classic?Please visit this site -----> https://help.salesforce.com/articleView?id=email_templates_classic_types.htm&type=5
-
Marziya
MemberNovember 10, 2020 at 1:19 pm in reply to: How to make vf page available for Salesforce1?First things first, you have to check the settings on your Visualforce Page by navigating to Setup -> Develop -> Pages. Once there, you need to make sure that the Available for Salesforce mobile apps setting is checked.
-
Marziya
MemberNovember 10, 2020 at 1:18 pm in reply to: How to get current time in field in Salesforce?Time fields use the TIMEVALUE() function similarly to DATEVALUE(). Say you want to set a time field default value to 5:30 PM. Use the international date format (ISO) in a formula for the field's default value. And to get the current time, use the TIMENOW() function.
-
You can use the Lightning Design System (SLDS) to build Visualforce pages that match the look and feel of the Salesforce mobile app. To use SLDS, it takes some tweaks in your code and a few things to remember. For the most part, Visualforce code that uses SLDS works without issue.
-
Marziya
MemberNovember 9, 2020 at 11:49 am in reply to: Which attributes of have no effect in Lightning Experience?Visualforce pages always display with the standard Lightning Experience user interface when they run in Lightning Experience. ... In particular, the showHeader and sidebar attributes of <apex:page> have no effect on Visualforce pages when displayed in Lightning Experience . This behavior is intentional.
-
Marziya
MemberNovember 9, 2020 at 11:48 am in reply to: When should you use standard SOQL over async SOQL?- You want to display the results in the UI without having the user wait for results.
- You want results returned immediately for manipulation within a block of Apex code.
- You know that the query returns a small amount of data.
-
Email services are automated processes that use Apex classes to process the contents, headers, and attachments of inbound email.