Ratnesh
IndividualForum Replies Created
-
Ratnesh
MemberMay 28, 2020 at 6:46 am in reply to: What is difference between reports and dashboards in Salesforce?A dashboard is a visual display of key metrics and trends for records in your org. The relationship between a dashboard component and report is 1:1; for each dashboard component, there is a single underlying report. Like reports, dashboards are stored in folders, which control who has access.
-
Choose a Report Format. A report can use the tabular, summary, matrix, or joined format. Choose a format that's complex enough to capture the data you want to show, but simple enough to communicate it effectively.
-
Streaming APIs are provided by SaaS applications, social media platforms, and other services to deliver data to clients in web real-time. The streaming API model is usually implemented for reading data. It is used to deliver data to consumers, not to make writes or deletes.
-
Ratnesh
MemberMay 27, 2020 at 8:22 am in reply to: Do we need a namespace to develop Lightning Components in salesforce?No. Lightning Components used to require a namespace, but that is no longer a requirement.
-
Ratnesh
MemberMay 27, 2020 at 8:22 am in reply to: What are the tools included in lightning in salesforce?A list of tools available in Lightning and frequently used by Salesforce Developers include – Salesforce Lightning Component Framework, Lightning Connect, Lightning App Builder, Lightning Process Builder, and Schema builder, Lightning Experience, Lightning Exchange, Lightning App Builder, or Visual building tools etc.
-
Ratnesh
MemberMay 27, 2020 at 8:21 am in reply to: What is difference between Visualforce Components and Lightning Components ?Visualforce components are page-centric and most of the work is done on the server. Lightning is designed from the component up, rather than having the concept of a page as its fundamental unit. Lightning Components are client-side centric, which makes them more dynamic and mobile-friendly.
-
A person who, according to the public records is the owner of a particular property is the record owner. The term commonly refers to brokers who hold legal title to shares but pass the voting rights, profits, and losses on to the beneficial owners.
-
From Setup, enter Sharing Settings in the Quick Find box, then select Sharing Settings. Click Edit in the Organization-Wide Defaults area. Select the Manual User Record Sharing checkbox to display the Sharing button on user detail pages, which enables users to share their records with others.
-
Ratnesh
MemberMay 26, 2020 at 7:01 am in reply to: How to set the debug for guest user in Salesforce?1. Go to Domains.
2. Select the URL of Community
3. Select the Community.
4. Click the Public Access Settings button.
5. Click Assigned Users. Get the username.
6. Go to Debug Logs.
7. Click New and select the user.
8. If you are in chrome execute the below command in the console.
document.cookie="debug_logs=debug_logs;domain=.force.com";
9. You will start seeing debug logs for the community guest user. -
From Setup, enter Identity Provider in the Quick Find box, select Identity Provider, and click Enable Identity Provider. By default, a Salesforce identity provider uses a self-signed certificate generated with the SHA-256 signature algorithm.
-
Ratnesh
MemberMay 22, 2020 at 1:32 pm in reply to: What is the difference between App And Package in Salesforce?Managed packages are typically used by salesforce.com partners to distribute and sell applications to customers. These packages must be created from a Developer Edition organization. Using the AppExchange and the License Management Application (LMA), developers can sell and manage user-based licenses to the app.
-
Salesforce: Create Custom Account Views
On the Accounts home page, to the right of the View drop-down list, click the Create New View link.
Name the list view in the View Name field.
Select the appropriate radio button, depending on whether you want to search All Accounts or just My Accounts.
(Optional) Filter by additional fields. -
Ratnesh
MemberMay 21, 2020 at 6:10 am in reply to: How to change the Default web address on Salesforce?Edit the domain name, HTTPS service option, and certificate—Click Edit in the Domain Detail section. Delete the domain—Click Delete in the Domain Detail section. Activate pending changes to the domain—Click Activate, if available, in the Domain Detail section. Add a custom URL—Click New Custom URL.
-
Ratnesh
MemberMay 21, 2020 at 6:08 am in reply to: What is a capability of a StandardSetController in Salesforce?StandardSetController objects allow you to create list controllers similar to, or as extensions of, the pre-built Visualforce list controllers provided by Salesforce.
-
Ratnesh
MemberMay 21, 2020 at 6:07 am in reply to: How can we push or pull code from scratch org in Salesforce?You can use force:source:push for scratch orgs only. If you're synchronizing source to another org, use the Metadata API. During development, you change files locally in your file system and change the scratch org directly using the builders and editors that Salesforce supplies.
-
Cloud leader.
Cloud of trust.
Multi-rental.
Metadata platform. -
Ratnesh
MemberMay 20, 2020 at 9:34 am in reply to: Is it possible to create sharing rules for detail object in Salesforce?Yes, Child objects don't have a share-record of their own and will be shared along with the master record. In case of Lookup: Child objects can have their own sharing access level and ownership.
-
Ratnesh
MemberMay 20, 2020 at 9:33 am in reply to: How to import and export data from talend in Salesforce?Step 1: Open Talend and Create a Job. The first step is to open Talend and create a new project.
Step 2: Establishing Connections for Export. Once you have created your Job, you can drag and drop the connection to the Job Designer panel. ...
Step 3:Configuring the Components. -
Ratnesh
MemberMay 18, 2020 at 11:31 am in reply to: How to enable Salesforce1 mobile browser app in Salesforce?1.Navigate to Setup > Mobile Administration > Salesforce > Salesforce Settings.
2.On the Salesforce Settings page, under the Mobile Browser App Settings section, select the Enable Salesforce mobile web check box.
3.Click Save. -
Ratnesh
MemberMay 18, 2020 at 11:30 am in reply to: How to use Salesforce1 mobile apps from your Salesforce credential?To do this, log in to Salesforce on your computer and navigate to “Setup”. Under “Administration Setup”, go to “Mobile Administration” –> “Salesforce1” –> “Salesforce1 Settings” and check the box to “Enable the Saleforce1 Mobile Browser App”.
-
Ratnesh
MemberMay 18, 2020 at 11:30 am in reply to: What are the advantages of using Salesforce1 mobile apps?- Sales Pitch Personalization. Salesforce Mobile CRM allows the sales team to access the Salesforce database, from any location and at any time.
- Easier Access to Information.
- Availability of More Accurate Information. -
Ratnesh
MemberMay 15, 2020 at 3:00 pm in reply to: What is the meaning of TEXT(NOW() in formula field in Salesforce?The NOW() function returns the Date/Time value of the current moment. It's useful when you are concerned with specific times of day as well as the date. The TIMENOW() function returns a value in GMT representing the current time without the date.
-
Ratnesh
MemberMay 15, 2020 at 3:00 pm in reply to: Importance and purpose of triggerDispatcher in Salesforce?The trigger dispatcher classes contains the methods to handle the trigger events and this is the place where the developers had to instantiate the appropriate trigger event handler classes.
-
Ratnesh
MemberMay 15, 2020 at 2:59 pm in reply to: What is TriggerDispatcher in Apex in Salesforce?The trigger dispatcher classes contains the methods to handle the trigger events and this is the place where the developers had to instantiate the appropriate trigger event handler classes.
-
Ratnesh
MemberMay 13, 2020 at 5:22 am in reply to: What a is the limit of Trailhead playground in Salesforce?maximum of 10 Trailhead Playgrounds