Anjali
IndividualForum Replies Created
-
Anjali
MemberJune 19, 2020 at 1:58 pm in reply to: What does Administrator do when creating recordtype in an org in Salesforce?You can assign record types to users in their profile or permission sets, or a combination of both. Record type assignment behaves differently in profiles and permission sets.
-
Anjali
MemberJune 19, 2020 at 1:57 pm in reply to: What does Campaign influnce allows a user to do?Campign Influence allows you to link Opportunity/Dontation Revenue to your markiting and fundraising Campiagns.
-
Anjali
MemberJune 19, 2020 at 1:56 pm in reply to: Dashboard Components can be stored in how many level in Salesforce?Your organization can have up to 5 dynamic dashboards for Enterprise Edition, 10 for Unlimited and Performance Edition, and 3 for Developer Edition. Additional dynamic dashboards may be available for purchase.
-
ContentVersion is the child object of ContentDocument, and it stores the information regarding the document.
-
Customers can avoid a large initial investment in an IT infrastructure and day to day hustle of maintaining infrastructure.
-
Use the performance chart on the Home page in Lightning Experience to track your sales performance or the performance of your sales team against a customizable sales goal.
-
Anjali
MemberJune 17, 2020 at 2:20 pm in reply to: What is the difference between the Chatter API and Connect API in Salesforce?Chatter API is REST API for Chatter to display Salesforce data.
Connect API provides apex classes for accessing the same data available in Chatter REST API. -
Anjali
MemberJune 17, 2020 at 2:17 pm in reply to: How do you extend SLDS in lightning components in Salesforce?You can take help from this link-
https://developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/apps_slds.htm -
Anjali
MemberJune 17, 2020 at 2:15 pm in reply to: How do we import converted lead into Salesforce from the legacy system?Please refer the below link-
https://success.salesforce.com/answers?id=90630000000gyDKAAY -
Anjali
MemberJune 16, 2020 at 2:38 pm in reply to: How do you make a lightning Component responsive?The Lightning Design System (SLDS) uses a grid based on Flexbox to provide a flexible, mobile-first, device-agnostic scaffolding system. The grid system lets you divide your page into rows and columns and define layout variations for different-sized screens. Grids can be nested to create complex layouts
-
Anjali
MemberJune 16, 2020 at 2:35 pm in reply to: What is the relation in Content Version & Content Distribution in Salesforce?ContentDistribution represents information about sharing a document externally. It contains ContentVersionID which links the contentVersion object.
-
Anjali
MemberJune 16, 2020 at 2:32 pm in reply to: how to generate session_Id in Visualforce Page in Salesforce?<div>Please refer the below link-</div>https://developer.salesforce.com/forums/?id=9062I000000QuZLQA0
-
Anjali
MemberJune 15, 2020 at 2:29 pm in reply to: What is ContentDocumentLink in Files in Salesforce?ContentDocumentLink is the object which is the mediator between the document and the owner of the document, it tells about which document is associated with which document through LinkedEntityId.
-
VersionData refer to the data stored in that particular contentVersion, and it is in the blob type.
-
Anjali
MemberJune 15, 2020 at 2:19 pm in reply to: How ContentDocument is related to ContentVersion in Salesforce?ContentDocument is parent object of ContentVersion. It is not needed to create contentDocument because as sson the contentVersion object is created, contentDocument object is automatically created in Salesforce.
-
please refer the below link-
https://help.salesforce.com/articleView?id=admin_article_create.htm&type=5 -
Anjali
MemberJune 11, 2020 at 10:35 am in reply to: Is there any way to send an email after limit is over in Salesforce?You can try sending mail by mass email send through apex or if you are sending mails to the user's then you can use UserInfo.getUserEmail() and send mail by referring this in your then you can ignore the email sending limit in developer edition.
-
Anjali
MemberJune 11, 2020 at 10:30 am in reply to: What is the advantage of using setTemplateId() in Apex Class?By using setTemplateId(), you can use the template already present in your org otherwise while sending the mail through apex you have to mention the body of mail by your own.
-
$globalID: returns globalId of a component.
$Browser : returns information about hardware and operating system.
$Label : allows to access labels outside your code.
$Locale : returns information about user's preferred locale.
$Resource : allows to refer JSP, stylesheets. -
Anjali
MemberJune 10, 2020 at 2:24 pm in reply to: Create a validation rule indicating whether an opportunity has a closed datePlease refer the following link-
https://developer.salesforce.com/forums/?id=906F0000000g2YEIAY -
Anjali
MemberJune 10, 2020 at 2:23 pm in reply to: How to use System.abort in Batch Class in Salesforce?Please refer the following link-
https://salesforce.stackexchange.com/questions/121630/abort-currently-running-job-in-salesforce -
Anjali
MemberJune 9, 2020 at 3:15 pm in reply to: How does a Post-installation script Work in Salesforce?A post install script is an Apex class which implements the InstallHandler interface which has a single method called onInstall that specifies the actions to be performed on installation.
-
Use Tooling API when you need fine-grained access to an org's metadata. Tooling API's SOQL capabilities for many metadata types allow you to retrieve smaller pieces of metadata.
-
Anjali
MemberJune 8, 2020 at 2:56 pm in reply to: What is the difference between System.assert and System.assertEquals?System.assertEquals tests that two values are equal.System. assert take two parameters, first is the condition to check and second the message to log if the condition is true.