shariq
IndividualForum Replies Created
-
In salesforce.com, deleting a user is not possible. But the user can be deactivated by freezing that user in salesforce. To deactivate user go to Setup=>Administer=>Manage users=>Users=>Click on Freeze.
-
shariq
MemberSeptember 30, 2018 at 10:45 pm in reply to: What is Page Layout and Record Types in Salesforce?Page Layout :- In page layout customization can be done like fields, related lists, custom links can be arranged.
Record Types :- Record types in salesforce helps to implement business processes like defining picklist values for standard and custom pick lists. -
shariq
MemberSeptember 30, 2018 at 10:44 pm in reply to: What is a dependent picklist in Salesforce?Dependent Picklist allows to contain multiple values and pick value one among them or Multiple values among them. Dependent fields depends upon controlling field.
-
shariq
MemberSeptember 30, 2018 at 10:10 pm in reply to: Are there any CSS by salesforce.com as part of the Supported Lightning Components?Salesforce has provided lightning design system as the default css to be used with Lightning component.
-
shariq
MemberSeptember 30, 2018 at 10:04 pm in reply to: Can we make one component inherit styles/CSS from a parent component in Salesforce?Child component inherits the CSS from its aren’t we do not need to specify it for each component
-
shariq
MemberSeptember 30, 2018 at 8:46 pm in reply to: How to create a search page on Salesforce Lightning?Thanks
-
shariq
MemberSeptember 30, 2018 at 8:43 pm in reply to: What is the difference between feed item and attachment in Salesforce?Attachment - Attachments are something specific to each record. you can control wether attachments are allowed on an object or not by a check box on object settings. Access to each record controls access to its attachments. Attachment Represents a file that a User has uploaded and attached to a parent object.
Feeditem: FeedItem represents an entry in the feed, such as changes in a record feed, including text posts, link posts, and content posts.
-
shariq
MemberSeptember 30, 2018 at 11:47 am in reply to: In MD Relationship, can update of child record update parent record using Salesforce Workflow rule?Yes, we can update the field of Parent record using workflow rule.
-
shariq
MemberSeptember 30, 2018 at 11:46 am in reply to: What things are to be considered in Salesforce “Master-Detail Relationship”?Cascade deletion of the child records is done when parent record is deleted in Master-Detail Relationship.
-
shariq
MemberSeptember 30, 2018 at 11:18 am in reply to: While setting OWD, can we change/modify the setting of child record for Salesforce MD Relationship?No, we can not change the settings of child record in Master Detail relationship because child record is controlled by parent record.
-
shariq
MemberSeptember 30, 2018 at 11:08 am in reply to: In Salesforce, can two users’ have same profile?Yes
-
shariq
MemberSeptember 29, 2018 at 11:26 am in reply to: How many ways we can make field required in Salesforce?Hi,
Use addError() method in trigger to through error if that field is empty.
Hope this helps.
-
shariq
MemberSeptember 29, 2018 at 10:35 am in reply to: How to hide or show Salesforce object through the apex code?You can change the profile of the user to hide the meta data.
Hope this helps.
-
shariq
MemberSeptember 29, 2018 at 10:34 am in reply to: Delete more than 10000 records using script without limit in Salesforce ApexWrite a batch class to delete the records.
-
shariq
MemberSeptember 29, 2018 at 9:38 am in reply to: What happens to time based action placed in Queue if it does not the Salesforce Workflow Criteria?Simply the time based workflow action is removed from workflow queue and will not get fired.
-
shariq
MemberSeptember 29, 2018 at 9:38 am in reply to: An action is scheduled to be executed in “Time Based Workflow” in Salesforce ,can it be deleted ?It is not possible to delete the workflow when the workflow is having any pending time dependent actions.
-
shariq
MemberSeptember 29, 2018 at 9:37 am in reply to: When you can’t add Time Dependent Action in Workflow Rule in Salesforce?Time dependent actions in workflow rules can not be added when the following actions takes place.
When workflow rule is active.
When workflow rule is deactivated and has pending actions in the queue.
When the workflow rule criteria of a record is set to: created, and every time it’s edited.
When the workflow rule is included in a package.You can’t add time-dependent actions to a rule if you choose Every time a record is created or edited.
-
shariq
MemberSeptember 29, 2018 at 9:36 am in reply to: Limitations of Salesforce Time-dependent workflow?When defining time dependent workflows in salesforce we have to use standard and custom date and date/time fields defined for the object.
We have to specify time using days and hours.
Also add actions to existing time triggers. -
shariq
MemberSeptember 29, 2018 at 9:36 am in reply to: What is Time-Dependent Workflow in Salesforce?Time dependent workflows are not executed independently. Time dependent workflows remain constant in the workflow queue as long as the workflow rule criteria is valid.
-
shariq
MemberSeptember 29, 2018 at 9:33 am in reply to: How to enable “floating report header” in Salesforce?To enable floating report header in salesforce go to Setup=>Customize=>Reports and Dashboards=>User Interface settings=>Click on enable floating report header.
-
Standard reports in salesforce are those provided by salesforce.com. These type of reports can not be deleted and used primarily for creating custom reports.
-
shariq
MemberSeptember 29, 2018 at 9:26 am in reply to: Can we create field in custom object containing some records with master detail relationship in Salesforce?No, directly we cannot create master-detail relationship if custom object contains existing records.
Following are the steps to create master-detail relationship when records are available in custom object.First create field with lookup relationship.
And then associate look field with parent record for every record.
Next change the data type of the field from look up to Master detail.
-
shariq
MemberSeptember 29, 2018 at 9:24 am in reply to: Can we convert the lookup relationship to Master Detail relationship in Salesforce?Yes, we can convert Look-Up relationship to Master-Details Relationship. Conversion can be done only if all the fields have valid look-Up fields values only.’
-
shariq
MemberSeptember 29, 2018 at 9:21 am in reply to: How to create Rollup summary field on look-up relationship in Salesforce?You need to write trigger for creating roll up functionality on lookup
-
shariq
MemberSeptember 29, 2018 at 8:08 am in reply to: Will Scheduled actions be deleted from queue if we deactivate the Salesforce Workflow?Even after deactivating the the workflow, its action will not be removed. It’s still active in queue.