Deepak
IndividualForum Replies Created
-
Deepak
MemberJune 26, 2020 at 7:48 am in reply to: How do I display more than 50000 records in Visualforce page?You can enable readOnly attribute value true for the page it will increase Number of query rows from 50000 to 1 million rows and Number of records displayed on VF page will be increased from 1000 to 10000.
-
There are 3 types of Portals:
- Self-Service portal.
- Partner Portal.
- Customer Portal.
-
Deepak
MemberJune 25, 2020 at 5:24 pm in reply to: How can we display more than 1000 records in Visualforce page?We can use readonly attribute to display more than 1000 records. Repeater control has limit of showing only 1000 records. You can use REST API to fetch record and JQUery to render it.
-
Deepak
MemberJune 25, 2020 at 3:19 pm in reply to: How do we convert master details to lookup in Salesforce?We can convert a master-detail relationship to a lookup relationship as long as no roll-up summary fields exist on the master object. You can convert a lookup relationship to a master-detail relationship, but only if the lookup field in all records contains a value.
-
Workflow lets you automate standard internal procedures and processes to save time across your org. A workflow rule is the main container for a set of workflow instructions. These instructions can always be summed up in an if/then statement.
-
A workflow action, such as an email alert, field update, outbound message, or task, fires when the conditions of a workflow rule are met.
-
Deepak
MemberJune 24, 2020 at 7:04 am in reply to: What are the actions in the workflow in salesforce?A workflow action, such as an email alert, field update, outbound message, or task, fires when the conditions of a workflow rule are met.
-
Deepak
MemberJune 23, 2020 at 3:53 pm in reply to: How can you restrict access to Analytics data at the row level in Salesforce?To restrict access to records, you can implement row-level security on a dataset when you use sharing inheritance and security predicates. Sharing inheritance automatically applies a Salesforce object's sharing logic to the dataset's rows.
-
Deepak
MemberJune 23, 2020 at 3:52 pm in reply to: Is the Roll-Up Summary field is only possible in the Master-detail relationship?Yes,it is possible only in Master-Detail Relationship.
-
Deepak
MemberJune 23, 2020 at 3:49 pm in reply to: How to look at the user license information in Salesforce Org?- From Setup, enter Company Information in the Quick Find box, then select Company Information.
- See the Feature Licenses related list.
-
A sharing rule can never be stricter than your org-wide default settings. It simply allows greater access for particular users. After you select which records to share, you define which groups or users to extend access to and what level of access they have.
-
Apex is a strongly typed, object-oriented programming language that allows developers to execute flow and transaction control statements on Salesforce servers in conjunction with calls to the API. Using syntax that looks like Java and acts like database stored procedures, Apex enables developers to add business logic to most system events, including button clicks, related record updates, and Visualforce pages. Apex code can be initiated by Web service requests and from triggers on objects.
-
apex:page. A single Visualforce page. All pages must be wrapped inside a single page component tag. This component supports HTML pass-through attributes using the "html-" prefix.
-
Make sure you meet the following prerequisites.
The account object has at least one record type.
User profiles that have read permission on accounts have read permission on contacts.
The organization-wide default sharing is set so that either Contact is Controlled by Parent or both Account and Contact are Private.
From Setup, enter Account Settings in the Quick Find box, and then select Allow Customer Support to enable Person Accounts.
We’ll verify your org meets the prerequisites, then send you an email with additional information. If you don’t see a message verifying you meet the prerequisites, go back to step 1.
Contact Salesforce Customer Support by logging a case to enable Person Accounts.
Refer to the email we sent about what to include in the case.
After Person Accounts is enabled, a person account record type is created. You can create additional record types for person account if needed.
Assign the person account record type to user profiles. -
Deepak
MemberJune 19, 2020 at 6:12 pm in reply to: What is the use of Apex email service in Salesforce?Email services are automated processes that use Apex classes to process the contents, headers, and attachments of inbound emails. For example, you can create an email service that automatically creates contact records based on contact information in messages.
-
Deepak
MemberJune 19, 2020 at 6:08 pm in reply to: What is the use of InboundEmailResult in Salesforce?A message that Salesforce returns in the body of a reply email. This field can be populated with text irrespective of the value returned by the Success field. A value that indicates whether the email was successfully processed.
-
Deepak
MemberJune 18, 2020 at 4:11 pm in reply to: Which chart type is best suited to track progress of sales revenueI think Gauge Chart.
- This reply was modified 4 years, 5 months ago by Deepak.
-
Duplicate Check for Salesforce is a free tool that finds duplicates, prevents duplicate records, and merges duplicate data.
-
Deepak
MemberJune 17, 2020 at 2:39 pm in reply to: How can we upload the more than 5 million records in Salesforce?If you need to load more than 5 million records, I recommend you to work with a Salesforce partner or visit the App Exchange for a suitable partner product. You need to load into an object that is not yet supported by the import wizards. You want to schedule regular data loads, such as nightly imports.
-
Deepak
MemberJune 17, 2020 at 2:37 pm in reply to: What are the benefits of using content delivery feature of Salesforce connect?After content delivery is enabled, users can add the Content Deliveries related list to their page layouts for leads, business accounts, contacts, opportunities, cases, campaigns, or custom objects. All Salesforce CRM Content users will see a Deliver Content option on each content details page.
-
Deepak
MemberJune 17, 2020 at 2:33 pm in reply to: Who is the default owner of the case created in Salesforce?When you create a new case. The creator is by default as the case owner. To change ownership you have to click and perform some actions.
-
To change the time zone of the organization:
A. Classic UI
1. Navigate to Setup | Company Profile | Company information | Default Time Zone
2. Select the required time zone.
B. Lightning Experience UI
1. Click the Gear Icon | Setup | Company Settings | Company Information
2. Change the time zone. -
Deepak
MemberJune 16, 2020 at 6:59 am in reply to: What is the limit of Data.com records which can be added to Salesforce?Data.com Users get a limited number of account, contact, and lead records to add or export per month. The default number of records per licensed user is 300.
-
A permission set is a collection of settings and permissions that give users access to various tools and functions. The settings and permissions in permission sets are also found in profiles, but permission sets extend users' functional access without changing their profiles.
-
Deepak
MemberJune 15, 2020 at 1:24 pm in reply to: How many field dependencies we can use in the Visualforce page?Maximum you can use 10 Field Dependencies in Visualforce Page.