Parul
IndividualForum Replies Created
-
Parul
MemberSeptember 23, 2018 at 4:42 am in reply to: How to hide the “App Setup” Menu from user’s setup page in Salesforce?You can remove the access "View Setup and configuration"
-
Parul
MemberSeptember 23, 2018 at 4:41 am in reply to: With no access on record and read level access at object level, can a user change record owner in Salesforce?Yes, with the "Transfer Record" in profile user doesn’t have any right on particular record and have only read level access at object level
-
Parul
MemberSeptember 23, 2018 at 4:40 am in reply to: What is features of “Manage Members” in campaign records in Salesforce?Campaigns & Leads
To manage the Campaign Members, I click from main Campaign page and get filters + list of members. Currently, the columns are set to Salesforce default. I can 'Edit Columns', but each time I leave this page, or even update it with an action, it reverts to Salesforce default, losing my Edit.
Why can't the page set-up be adjustable, so that whenever I 'Edit' this page, it sticks? It seems all your other reports do this, so why not Campaigns? The benefits would be:
- more use of the Manage Members page for actual management of the Members
- better relevance to my needs, not those of Salesforce
- flexibility to sort columns, add fields, etc. as required. -
Parul
MemberSeptember 23, 2018 at 4:36 am in reply to: What is difference between Mobile Lite and Salesforce Mobile?Salesforce Mobile Lite comes with every standard Salesforce license
Salesforce mobile is easy to setup.
Enable Mobile Lite
Notify users to get the mobile app
Step 1: Enable Mobile Lite
your name > Setup > Administration Setup > Mobile Administration > Salesforce Mobile > Settings- This reply was modified 6 years, 2 months ago by Parul.
-
Analytical snapshot is “allowing you to load data from a Custom Report to a Custom Object on a regularly scheduled basis.” This in turn allows you to create Reports and Dashboards based on the data in the Custom Object.
-
Parul
MemberSeptember 23, 2018 at 4:26 am in reply to: How to show loading image while Ajax call in Salesforce Visualforce?The content of your actionStatus tag will show when you reference it from for example an actionPoller or actionSupport.
The actionSupport tag in the example below is placed within a apex:selectList tag.<apex:actionSupport action="{!someAction}" event="onchange" reRender="someBlock" status="refreshContent"/>
-
Parul
MemberSeptember 23, 2018 at 4:25 am in reply to: How to increase timeout while calling web service from Salesforce Apex?docSample.DocSamplePort stub = new docSample.DocSamplePort();
stub.timeout_x = 2000; // timeout in milliseconds -
Parul
MemberSeptember 23, 2018 at 4:24 am in reply to: A single Apex transaction can make how many callouts to an HTTP request or an API call in Salesforce?We can make a maximum of 100 callouts per transaction.
-
Parul
MemberSeptember 23, 2018 at 4:23 am in reply to: What is the default timeout period while calling webservice from Salesforce Apex?The default timeout period while calling webservice from Apex is 10 sec
-
Parul
MemberSeptember 23, 2018 at 4:21 am in reply to: How many types of dashboard components are available in Salesforce?Many types of dashboard components are available:
Chart
Table
Metric
Gauge.
-
Parul
MemberSeptember 23, 2018 at 4:20 am in reply to: Datepicker component opens automatically - how can we avoid this in Salesforce?Example :
<span id=”focusDistraction”></span>
<script type=”text/javascript”>
/* prevent autopup of the date inputfield by the default focus behavoir */
window.onload=function() {
document.getElementById(‘focusDistraction’).focus();
}
</script>
If you are using Lightning then you can use javascript in your lightning bundle in a js file. In init function of the component to remove the autofocus.
-
Parul
MemberSeptember 23, 2018 at 4:19 am in reply to: How to write the “Where” clause in SOQL when GroupBy is used for aggregate functions in Salesforce?The GROUP BY Clause is used to group rows with same values.
The GROUP BY Clause is used together with the SQL SELECT statement.
The SELECT statement used in the GROUP BY clause can only be used contain column names, aggregate functions, constants and expressions.
The HAVING clause is used to restrict the results returned by the GROUP BY clause.Thanks
-
Parul
MemberSeptember 23, 2018 at 4:18 am in reply to: Explain difference in COUNT() and COUNT(fieldname) in Salesforce Object Query Language (SOQL).COUNT(): It is an optional clause that can be used in a SELECT statement in a SOQL query to discover the number of rows that a query returns.This function returns the number of rows that match the filtering conditions and COUNT() must be the only element in the select list. The resulting query result size field which returns the number of rows and the records will return null.In simple words, COUNT() returns the number of items in a group, including NULL values and duplicates.
COUNT(fieldname):This function returns the number of rows that match the filtering conditions and have a non-null value records. An Aggregate Result object in the records field contains the number of rows. Do not use the size field for the resulting records.
Again in simple words, COUNT(expression) evaluates an expression for each row in a group and returns the number of non-null values.
Note: COUNT(Id) in SOQL is equivalent to COUNT(*) in SQL.
-
Parul
MemberSeptember 23, 2018 at 4:13 am in reply to: If i want record level access then what should i use from Salesforce security model?I think we can use "Mannual Sharing"
-
Parul
MemberSeptember 23, 2018 at 4:13 am in reply to: If i want Object level access then what should i use from Salesforce Security Model?I think we use profile.
Thanks
-
Parul
MemberSeptember 23, 2018 at 4:13 am in reply to: In OWD (Organization wide sharing), can i change the setting “Grant Access Using Hierarchies” for Standard Salesforce Objects?No, we can not change the settings of child record in Master Detail relationship because child record is controlled by parent record.
-
Parul
MemberSeptember 23, 2018 at 4:10 am in reply to: What is Mandatory while creating User, Role or Profile in Salesforce?Profile
-
Parul
MemberSeptember 23, 2018 at 4:06 am in reply to: Keyword “with sharing” runs in system mode then why keyword “without sharing” is introduced in Salesforce apex?Without Sharing is reserved for cases where the User does not have access to the records, but there is a need to update them based on user input.
Use the without sharing keywords when declaring a class to ensure that the sharing rules for the current user are not enforced. For example, you may want to explicitly turn off sharing rule enforcement when a class acquires sharing rules when it is called from another class that is declared using with sharing.
public without sharing class noSharing {
// Code here}
Thanks
-
Test.setPage() method is used to set the context to current page, normally used for testing the visual force controller in test classes.
Thanks
-
Custom settings are similar to custom objects and enable application developers to create custom sets of data, as well as create and associate custom data for an organization, profile, or specific user.
-
Parul
MemberSeptember 23, 2018 at 3:49 am in reply to: Can we convert the lookup relationship to Master Detail relationship in Salesforce?You 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.
-
Parul
MemberSeptember 23, 2018 at 3:48 am in reply to: What is Master Detail relationship and look up relationship in Salesforce?It is a custom field which links one object record to another. Through the creation of relationships, we can display the data of all the related records in the record's details page. The Master Detail relationship is used when we want to control the display ofdetail records based on the value in the master record.
-
Parul
MemberSeptember 23, 2018 at 3:44 am in reply to: What is the difference between database.insert and insert in Salesforce?bellow 2 points explations of your question
1.If we use the DML statement (insert), then in bulk operation if error occurs, the execution will stop .and Apex code throws an error which can be handled in try catch block.2.If DML database methods (Database.insert) used, then if error occurs the remaining records will be inserted / updated means partial DML operation will be done.
Thanks
-
Parul
MemberSeptember 23, 2018 at 3:44 am in reply to: What is the scope of static variable in Salesforce Apex?A static local variable is different from a local variable as a static local variable is initialized only once no matter how many times the function in which it resides is called and its value is retained and accessible through many calls to the function in which it is declared, e.g. to be used as a count variable.
-
Parul
MemberSeptember 23, 2018 at 3:43 am in reply to: What is Scheduler class in Salesforce Apex and explain how to use Cron statement to Schedule Apex class?Implementing the Schedulable Interface. To schedule an Apex class to run at regular intervals, first write an Apex class that implements the Salesforce-provided interface Schedulable . The scheduler runs as system—all classes are executed, whether or not the user has permission to execute the class.