Pregunta 1
Pregunta
The values available in the Stage picklist of opportunity can be limited by creating a Sales Process
for opportunity or from the picklists available for editing from any record type of opportunity.
Pregunta 2
Pregunta
Specifying entry criteria is compulsory for:
Respuesta
-
Workflow rule
-
Approval process
-
Both
Pregunta 3
Pregunta
If multiple active approval processes exist on Account & an account record submitted for approval
meets the entry criteria of multiple approval processes, then it cannot be guaranteed which
approval process the record will enter
Pregunta 4
Pregunta
Which of these can be cloned?
Respuesta
-
Workflow rule
-
Approval process
-
Both of above
Pregunta 5
Pregunta
Can attachments to Salesforce records be attached using the Apex Data Loader?
Respuesta
-
The csv file would need to have these columns: the Salesforce ID of the
parent record to which the attachment should be attached. For example, Account record ID
0019000000CZYfN Name
The name with which this attachment should be saved in SFDC
(We can give any name, not necessary it should be the file name)
File Attachment1 IsPrivate
0 if the attachment is not private; 1 if it is private. OwnerId
-
The csv file would need to have these columns: ParentId – the Salesforce ID of the
parent record to which the attachment should be attached. For example, Account record ID
0019000000CZYfN Name
The name with which this attachment should be saved in SFDC
(We can give any name, not necessary it should be the file name)
File Attachment1 IsPrivate
0 if the attachment is not private; 1 if it is private. OwnerId
Pregunta 6
Pregunta
For which objects is field history tracking available & for which is it not available?
Respuesta
-
Field history tracking is available for
Account, Leads, Contact, Opportunity, Cases, Contract, Solution, custom objects. It is not
available for
Activities, Campaign, Quotes, Product, Ideas, Asset, User
-
Field history tracking is available for
Account, Leads, Contact, Opportunity, Cases, Users, Solution, custom objects. It is not
available for
Activities, Campaign, Quotes, Product, Ideas, Asset, Contract
Pregunta 7
Pregunta
A custom text field on Account ‘Location’ has a validation rule
if(location__c == null || isblank(location__c), true, false)
This field has been removed from the Account page layout. So error for this field will not be given
when a new account record is being created.
Pregunta 8
Pregunta
If a submitted record meets entry criteria of multiple approval processes, then which approval
process will it enter?
Pregunta 9
Pregunta
A record created meets entry criteria of multiple workflow rules. Which of the workflow rules will
execute?
Pregunta 10
Pregunta
If there is a custom validation rule on a custom object Position for the custom text field Location to
make sure that this field is not left blank, then what are the various ways of bypassing this
validation rule?
Respuesta
-
Deactivate the validation rule
-
Provide a value to this field in the before insert/update
trigger on the Location object if this field has been left blank.
-
activate the validation rule
Pregunta 11
Pregunta
For which objects quick create is available?
Respuesta
-
Lead
-
account
-
contact
-
forecast
-
opportunity
Pregunta 12
Pregunta
What are the drawbacks of quick create?
Respuesta
-
The fields which are displayed in the quick create page layout (e.g.while creating a new
contact, if we use quick create to create a new account on the fly) can be
modified/selected/chosen by us & validation rules don’t fire (for the account which is created
quickly using quick create) which is a limitation of Salesforce.
-
The fields which are displayed in the quick create page layout (e.g.while creating a new
contact, if we use quick create to create a new account on the fly) cannot be
modified/selected/chosen by us & validation rules don’t fire (for the account which is created
quickly using quick create) which is a limitation of Salesforce.
Pregunta 13
Pregunta
With Sales Process many different Sales Processes can be created with different values
in the Stage picklist for each of them & they can be used interchangeably with any record type on
a plug-n-play basis. Otherwise the values in the Stage picklist would have to be tediously modified
each time if it were done using picklist available for editing for any record type.
Pregunta 14
Pregunta
If any workflow rule is having a task of send email in which a particular user is a recipient of that
email, then that user can be deactivated only if the workflow rule is deactivated.
Pregunta 15
Pregunta
Can a single permission set be assigned to users of different profiles
Pregunta 16
Pregunta
Which objects are available while importing data using the import wizard?
Respuesta
-
Lead
-
Account
-
Contact
-
Solution
-
Custom objects
Pregunta 17
Pregunta
A UK user creates a task on a lead for an Indian user for 24/07/2012. The reminder for the task is
scheduled for13:00 on 24/07/2012.The difference between UK time & India time is 4.5 hours.
When the India user logs in, he will see the reminder scheduled for 13:00 or 17:30?
Pregunta 18
Pregunta
The lead validation rules trigger only if this option is checked on Customize > Leads >
Settings ‘Enforce Validation and Triggers fromLead Convert
Pregunta 19
Pregunta
If this option is unchecked on Customize > Leads > Settings, ‘Enforce Validation and Triggers from
Lead Convert’ then the validation rules and triggers of account, contact & opportunity are
bypassed but the validation rules and triggers of lead execute
Pregunta 20
Pregunta
While creating record type specifying associated process is compulsory. So process has
to be created first.
Pregunta 21
Pregunta
What are the advantages of using Chatter Desktop over using the in-app Chatter?
Respuesta
-
With Chatter Desktop, no installed browser is required (like IE or Google Chrome or
Firefox) for accessing Chatter as it is a desktop application.
-
Chatter Desktop can be configured to start automatically when the machine starts, so no time
waste logging into the SFDC environment
Pregunta 22
Pregunta
An Apex Sharing Reason cannot be created on a custom object with the label ‘Manual Sharing’
because the in-built standard sharing reason provided by Salesforce has the same label, so it
would give error
“An Apex Sharing Reason with this name already exists”
Pregunta 23
Pregunta
Using workflow rule field update action on a child object, any field of its parent can be given a
value.
Pregunta 24
Pregunta
While converting a lead
Respuesta
-
The update trigger of lead will fire
-
The delete trigger of lead will fire
-
Both update trigger & delete t rigger of lead will fire
-
Neither update trigger nor delete trigger of lead will fire
Pregunta 25
Pregunta
A lead can have more than one values in the lead status picklist with the ‘Converted’ checkbox
checked for them so that these values are available while converting the lead to be assigned to
the ‘Status’ picklist as the converted status
Pregunta 26
Pregunta
Apex Scheduler code will execute first at the specified time. If the Apex Scheduler code
causes updation of any record then the triggers & workflow rules for that object will execute.
Pregunta 27
Pregunta
From where would you add the Default Account Team?
Pregunta 28
Pregunta
While creating a list view for opportunities if the filter chosen is “My Opportunity Teams” then this
list view will list these opportunities:
Respuesta
-
Opportunities owned by that user even if that user is not a member of the Opportunity Teams of
those opportunities
-
Only those opportunities owned by that user in which he is also a member of the Opportunity
Teams of those opportunities
-
Opportunities owned by that user or any other user in which he is a member of the Opp
Pregunta 29
Pregunta
If an opportunity team member is cloned (From the opportunity team related list of an opportunity
record by clicking on the team member name & then clicking on ‘Clone’), a new user record gets
created.
Pregunta 30
Pregunta
On the user detail page, the checkbox for ‘Marketing User’ is unchecked. A user has to
be a Marketing User to be able to create a campaign.
Pregunta 31
Pregunta
On the Campaign detail page, the ‘Campaign Members’ related list refers to the people:
Pregunta 32
Pregunta
Files can be uploaded on Chatter from:
Pregunta 33
Pregunta
Files tab is available:
Pregunta 34
Pregunta
When the email ID of a user is changed then email with link to verify the change is sent to:
Pregunta 35
Pregunta
Mass email can be sent to Leads, Contacts and Cases. This is achieved by: Clicking the
link ‘Mass Email Leads’ on the Leads tab. Clicking the link ‘Mass Email Contacts’ on the Contacts
tab. Clicking the link ‘Mass Email Cases’ on the Cases tab.
Pregunta 36
Pregunta
How to find out if SFDC environment uses packages?
Pregunta 37
Pregunta
Which of the following is not standard salesforce.com functionality?
Respuesta
-
Email to lead
-
Email to case
-
Web to lead
-
Web to case
Pregunta 38
Pregunta
Which are the types of page layouts?
Pregunta 39
Pregunta
While creating an approval process and assigning the next approver using the hierarchy
relationship field on user [Option’s exact name is “Automatically assign an approver using a
standard or custom hierarchy field”], which is the standard user field available?
Pregunta 40
Pregunta
Which object allows creation of a hierarchical relationship with itself? (Data type: Hierarchy)
Pregunta 41
Pregunta
How many maximum cross object formula fields are allowed in an object?
Pregunta 42
Pregunta
What is the name of the default public group to which all users are added?
Respuesta
-
All Internal Users
-
All Users
Pregunta 43
Pregunta
What levels of access can be granted using sharing rules?
Pregunta 44
Pregunta
What levels of access can be granted using manual sharing?
Respuesta
-
Read-Only
-
Read/Write
-
Full Access
Pregunta 45
Pregunta
How many permission sets can you have in an organization?
Pregunta 46
Pregunta
What are details of order of execution among validation rules, auto-response rules, assignment
rules, triggers, escalation rules, workflow rules etc.?
A. Custom validation rules are
executed like required field check validation rule. So in the before trigger you can assign value to
any such field which was left blank while creating the record & the custom validation rule won't
give error then.
B. System validation rules are executed like data type checking of the field values. So
error for text value in numeric field etc.
C. Before triggers execute.