Manish
IndividualForum Replies Created
-
Manish
MemberSeptember 28, 2020 at 4:12 pm in reply to: What is Secure Security Layer in Salesforce?Please refer Link :https://help.salesforce.com/articleView?id=overview_security.htm&type=5
-
Manish
MemberSeptember 28, 2020 at 4:11 pm in reply to: How to enable Google Drive Api in Salesforce? -
-
Manish
MemberSeptember 24, 2020 at 3:42 pm in reply to: How do I add a quote to a PDF in Salesforce?you can refer article: https://help.salesforce.com/articleView?id=quotes_create_pdf_selected_template.htm&type=5
-
Manish
MemberSeptember 24, 2020 at 3:39 pm in reply to: What is the difference between queue and public group in Salesforce? -
Manish
MemberSeptember 23, 2020 at 3:30 pm in reply to: What is audience in advertising studio in Salesforce marketing cloud?Advertising Audiences allows customers to use Marketing Cloud data to target their digital advertising campaigns across various platforms. These platforms include Facebook, Instagram, Google Ads, LinkedIn, Twitter, and Pinterest.
-
Manish
MemberSeptember 23, 2020 at 3:27 pm in reply to: Can we control flow of records while synchronizing object in Salesforce MC?Yes , You can use fliter.
-
Manish
MemberSeptember 21, 2020 at 3:35 pm in reply to: How data dependency is managed by contact builder in Salesforce Marketing Cloud?Synchronized Data Extensions and its relationships.
-
Manish
MemberSeptember 21, 2020 at 3:34 pm in reply to: What is predictive intelligence and analysis in Salesforce?Predictive Intelligence is a method of delivering experiences unique to each individual. It enables marketers to observe customer behavior, and with every action taken, build a profile of customer preferences.
-
Chatter.
-
Manish
MemberSeptember 18, 2020 at 3:23 pm in reply to: How we can update our connector to multi-org in Salesforce? -
CalloutException: You have uncommitted work pending. Please commit or rollback before calling out” occurs when you first perfrom callout and then DML in same transaction. To resolve this issue you need to perform DML in future method so your callout and DML will be in different transaction.
-
Manish
MemberSeptember 18, 2020 at 3:20 pm in reply to: What is the use of Test.setPage() in Apex ?Test.setPage() method is used to set the context to current page, normally used for testing the visual force controller in test classes.
-
- Knowledge is contextual and it can be re-used.
- Benefits of knowledge obtained only if it is applied.
- The values of knowledge may change over time.
- Knowledge has to be renewed or maintained.
- It can be difficult to transfer, capture and distribute knowledge.
- It is developed through learning processes.
-
ApexDoc is a java app that you can use to document your Salesforce Apex classes. You tell ApexDoc where your class files are, and it will generate a set of static HTML pages that fully document each class, including its properties and methods.
-
How to use Set in Salesforce
- Syntax:
- Creating a set: Set<DataType> variable name=new Set<DataType>(); ...
- add(SetElement): It inserts an element into the Set. ...
- addAll(fromlist|fromset): It inserts list of elements or set of elements into the set.
- remove(Element): It deletes the element from the set.
- removeAll(List|Set): ...
- contains(Element): ...
- size():
-
Salesforce provides a WSDL (Web Service Description Language) files. They are called 'Enterprise WSDL' and 'Partner WSDL'. A WSDL is an XML-document which contains a standardized description on how to communicate using a web service (the Salesforce API is exposed as a web service)
-
Manish
MemberSeptember 9, 2020 at 3:24 pm in reply to: How do I change custom settings in Salesforce?From Setup, enter Custom Settings in the Quick Find box, then select Custom Settings, then click the name of the custom setting you'd like to view....While viewing a custom setting, you can:
- To change a custom setting, click Edit.
- To delete a custom setting, click Delete. ...
- To add data to a custom setting, click Manage.
-
Manish
MemberSeptember 9, 2020 at 3:23 pm in reply to: How to import excel data in custom object in Salesforce?Get things rolling by uploading the spreadsheet to your Salesforce org.
- Open this spreadsheet and save it. ...
- Click the setup cog. ...
- Click the Object Manager tab.
- Click Create.
- Select Custom Object from Spreadsheet.
- Click Log in with Salesforce.
-
Manish
MemberSeptember 9, 2020 at 3:22 pm in reply to: Is there a way to create a record in Salesforce lightning with populated fields?URL Hack in Lightning to Pre-populate fields
- Get the standard Lightning URL that salesforce construct when creating new Record.
- Identify the fields and their API Name that you want to pre-populates.
- Assign the Target fields(The field you want to prepopulate) to Value Pair for the additional fields to be populated.
- Create a custom URL button.
-
Manish
MemberSeptember 8, 2020 at 3:21 pm in reply to: How to test a metadata container in Salesforce?Test Your Deployment Container
- Open the Developer Console by clicking the Setup gear, then Developer Console.
- In the Developer Console, click File | New | Apex Class.
- Name the class DeploymentTest and click OK.
- Get rid of any existing code, and copy and paste the following example code in its place.
-
Commit; Commit is used to permanently save any transaaction into database and once strored, and it can not be rolled back.
-
Manish
MemberSeptember 8, 2020 at 3:18 pm in reply to: When to use rollback(databaseSavepoint) method of database class in Salesforce ?setSavepoint() is used to define a point at which DML operations can be rolled back. If any error occurs during DML Operations, that contains many statements, the application will be rolled back to the most recent save point and the entire transaction will not be aborted.
-
Manish
MemberSeptember 7, 2020 at 3:17 pm in reply to: What is difference between picklist and multi-picklist in Salesforce?you cana refer the link:
https://help.salesforce.com/articleView?id=fields_creating_picklists.htm&type=5