Salesforce CRM Interview Question and Answer

7.) What is Static Resources?

Using Static Resources we can upload images, zip files, jar files, java script and CSS files that can be referred in a visual force page. The maximum size of Static Resources for an organization is 250mB.

8.) What are the main things need to consider in the “Master-Detail Relationship”?

Record level access is determined by the parent, Mandatory on child for reference of parent, cascade delete (if you delete the parent, it can cascade delete the child).

9.) How many ways we can share a record?

Role Hierarchy:

If we add a user to a role, the user is above in the role hierarchy will have read access. Setup -> manage users -> roles -> setup roles -> click on ‘add role’ -> provide name and save.

OWD:
  • Defines the base line setting for the organization.
  • Defines the level of access to the user can see the other user’s record
  • OWD can be Private, Public Read Only, Public Read and Write.
  • Setup -> Security Controls -> sharing settings -> Click on ‘Edit’
Manual Sharing:
  • Manual Sharing is sharing a single record to single user or group of users.
  • We can see this button detail page of the record and this is visible only when OWD setting is private.
Criteria Based Sharing rules:

If we want to share records based on condition like share records to group of users Whose criteria are country is India. Setup -> security controls -> sharing settings -> select the object and provide name and Conditions and save

Apex sharing:

Share object is available for every object(For Account object share object is AccountShare ). If we want to share the records using apex we have to create a record to the share object.

10. How many relationships included in SFDC & What are they?

We are having two types of relationships, they are Lookup Relationship Master-Detail Relationship

11.) What is object in Sales force?

Custom objects are database tables that allow you to store data specific to your organization in salesforce.com. You can use custom objects to extend salesforce.com functionality or to build new application functionality. Once you have created a custom object, you can create a custom tab, custom related lists, reports, and dashboards for users to interact with the custom object data. You can also access custom object data through the Force.com API. Navigation to create object in sales force: Setup->Build->Create->Object-> Click on new object and create object according to your requirement.

12.) What is a “Lookup Relationship”?

This type of relationship links two objects together, Up to 25 allowed for object Parent is not a required field.

  • No impact on a security and access.
  • No impact on deletion.
  • Can be multiple layers deep.
  • Lookup field is not required.

1 2 3 4 5 6 7