Aditya
IndividualForum Replies Created
-
Hi,
@testSetup is used for considering the common methods -
Aditya
MemberMay 7, 2020 at 2:39 pm in reply to: Why sometimes we can't see reports during run time in Salesforce?Hi,
Sometimes the labels for your charts can overlap and be difficult to read. There may be too much data in the same space, or the segments or wedges of the chart may be too small. -
Hi,
External objects are similar to custom objects, except that they map to data that's stored outside your Salesforce org. Each external object relies on an external data source definition to connect with the external system's data. Each external object definition maps to a data table on the external system. -
Hi,
There are 3 types of Salesforce.com Portals. The feature differences are that Partner Portal exposes the Leads and Opportunity objects whereas the Customer Portal does not. Customer Portal is to support for your customers -
Aditya
MemberMay 6, 2020 at 3:40 pm in reply to: Can we use sharing rules to restrict data access in Salesforce?Hi,
You can use sharing rules to grant wider access to data. You cannot restrict access below your organization-wide default levels. To create sharing rules, your organization-wide defaults must be Public Read Only or Private. -
Hi,
round Function. Returns the nearest number to a number you specify, constraining the new number by a specified number of digits. -
Hi,
FUNCTION DESCRIPTION
ABS: Calculates the absolute value of a number. The absolute value of a number is the number without its positive or negative sign.
CEILING:Rounds a number up to the nearest integer, away from zero if negative.
DISTANCE Calculates the distance between two locations in miles or kilometers.
EXP Returns a value for e raised to the power of a number you specify.
FLOOR Returns a number rounded down to the nearest integer, towards zero if negative.
GEOLOCATION Returns a geolocation based on the provided latitude and longitude. Must be used with the DISTANCE function.
LN Returns the natural logarithm of a specified number. Natural logarithms are based on the constant e value of 2.71828182845904.
LOG Returns the base 10 logarithm of a number.
MAX Returns the highest number from a list of numbers.
MCEILING Rounds a number up to the nearest integer, towards zero if negative.
MFLOOR Rounds a number down to the nearest integer, away from zero if negative.
MIN Returns the lowest number from a list of numbers.
MOD Returns a remainder after a number is divided by a specified divisor.
ROUND Returns the nearest number to a number you specify, constraining the new number by a specified number of digits.
SQRT Returns the positive square root of a given number. -
Hi,
Yes, AMPscript is boolean constant must true or false which are case-insensitive. -
Aditya
MemberMay 4, 2020 at 1:48 pm in reply to: What is action setCallback() in lightning in Salesforce?Hi,
In client-side controller, there is a method 'setCallBack()' used to call the method in server-side controller. ... enqueueAction adds the server-side action to the queue. -
Aditya
MemberMay 4, 2020 at 1:46 pm in reply to: How to create client side controller in Salesforce?A client-side controller is part of the component bundle. It is auto-wired via the naming convention, component name Controller. js. To create a client-side controller using the Developer Console, click CONTROLLER in the sidebar of the component.
-
Hi,
From Setup, enter Report Types in the Quick Find box, then select Report Types.
Click New Custom Report Type.
Select the Primary Object for your custom report type.
Enter the Report Type Label and the Report Type Name
Enter a description for your custom report type, up to 255 characters long -
Aditya
MemberMay 2, 2020 at 10:43 am in reply to: How lightning web component is different from lightning component in Salesforce?Hi,
Lightning Web Components are an updated web standards-based framework method for creating lightning components on the Salesforce Platform, Lightning Web Components utilize standard tech like CSS, HTML, and updated JavaScript without requiring a set framework, incorporating the latest innovations in JavaScript. -
Hi,
Field update is one of the workflow actions available in Salesforce. Workflow is used to automate tasks, emails we regularly send, and other record updates according to the organization's requirement. Field update actions let you automatically update field values -
Hi,
The Force.com migration tool is a Java/Ant-based command-line utility that lets Salesforce developers access the Salesforce metadata API indirectly to move Apex and configuration changes between Orgs. The Salesforce Metadata API is a SOAP API that allows you to push and retrieve some metadata types -
Hi,
To extract metadata from Salesforce object, right-click an edge and select New metadata → Extract from salesforce from the context menu. A wizard for metadata extraction from Salesforce opens. In the first step, select an existing Salesforce connection or create a new one. In the second step, enter a SOQL query -
Aditya
MemberApril 30, 2020 at 2:50 pm in reply to: What is sender profiles in Salesforce marketing Cloud?Hi,
A sender profile within Marketing Cloud Setup specifies the form information for a send in a central location. Marketing Cloud Email reuses that information across multiple sends without requiring selection each time. When you create a sender profile, choose a user from your account. -
Aditya
MemberApril 30, 2020 at 2:48 pm in reply to: What is the difference between workflow rule and approval process in Salesforce?Hi,
There are two differences between Workflows and Approval process Workflow Approval process They are activated when a record is saved. an approval process is triggered by explicitly clicking the "Submit for Approval" button. Workflow consists of a single step and single-action Approval process consists of multiple steps. -
Aditya
MemberApril 29, 2020 at 3:53 pm in reply to: What is Maximum length of Strings in SOQL WHERE clauses in Salesforce?Hi,
20000 -
Aditya
MemberApril 29, 2020 at 3:52 pm in reply to: What is the role of My Data Relationships in Salesforce Marketing Cloud?Hi,
Click Subscribers.
Click my data relationships.
Click Create.
Complete the information in the Properties section:
Complete the information in the Fields section:
If more than one column in each data extension is involved, click Add to display another set of <select field> list boxes.
Click Save. -
Hi,
Data mapping in Salesforce are used to map the data from the agreement document to Salesforce after the sign of recipient -
Aditya
MemberApril 28, 2020 at 4:11 pm in reply to: How we can enable Multi org connector in Salesforce?Hi,
Multi-Org Account Configuration in Marketing Cloud Connect:
Control access to All Subscribers list. The Marketing Cloud All Subscribers list is a comprehensive list of all subscribers, even in a multi-org account.
Utilize a custom Profile Center.
Plan your business unit and user connections.
Use dedicated API users.
Use one version of the connector. -
Aditya
MemberApril 28, 2020 at 4:09 pm in reply to: In what ways Lightning Bolt and application are different in Salesforce?Hi,
Use a Lightning Bolt Solution to share or sell a solution on AppExchange,Bolt Solutions are flexible, so you can take advantage of them in many ways. -
Aditya
MemberApril 27, 2020 at 4:32 pm in reply to: What is Data flow in merge mapping in salesforce?Hi,
When you have duplicate lead, contact, or account records in the database, cleaning up your data and consolidating the records might be a good idea. You can merge up to three records of the same sObject type. The merge operation merges up to three records into one of the records, deletes the others, and reparents any related records. -
Aditya
MemberApril 27, 2020 at 4:28 pm in reply to: How to call a class and its methods using a trigger in Salesforce?//Class..
public class MyClass{
public static void TestMethod(){
//Your code in the class
}
}//trigger
Trigger testTrigger on Account(before insert){
MyClass.TestMethod();
} -
Hi,
An Apex transaction which represents a collection of operations that are retrieved as a single unit. All DML operations in a transaction either complete successfully or if an error occurs in one operation, the entire transaction is rolled back and no data is committed to the database.