Sunday, July 10, 2016

Here is Mr. Buffet describing how he missed big opportunities by not taking decisions promptly (a two minute video) even after knowing fully well that there is an opportunity.



Please play the video after opening the following tweet,


https://goo.gl/T1JDp2

Thursday, December 17, 2015

Salesforce Winter 16 Release Exam (Maintenance) for Developer 401
1. What is the Enhancement to process builder?

A. Administrator receives a fault email when a process fails due to User Inactivity.
B. More than one schedule can be done in a single action.
C. Process Criteria can be Evaluated at a specific time of a day.
D.Administrator receives an email when a process is completes successfully.

ANS. A, B

2. In a Salesforce Organisation using a State and Country picklists, what feature allows a Lightning Experience user to choose the correct address when entering information in the standard address field?
A. Contact lookup for address fields on a custom Objects.
B. Lookups for Standard address fields.
C. Auto-Completion for Standard address fields.
D. Auto-Completion for Custom fields.

ANS. C

3. What is an enhancement for Salesforce Files?
Chose 2 answers

A. A file Owner can freeze a file to prevent additional share of the file.
B. A User can upload files from the files related list on standard Object only .
C. An Administrator can control whether users can upload files from Salesforce.
D. An Administrator can control whether users can upload files from their Computer.

ANS. A,C

4. What is an enhancement to working with records in Chatter Groups?
Chose 2 answers

A. When a record is @mentioned on a group,that record becomes a Group Record.
B. Group records are visible to all members of that group.
C. When a group is @mentioned on a record, that record becomes Group Record.
D. Group Records are displayed in the groups related lists.

Ans. C,D

5. By default ,which Users have access to Lightning Experience Once it has been enabled?
A. All users in the Salesforce Organization.
B. All users with Standard Salesforce profiles.
C. Only users with the System Administrator profile.
D. Only users with the Sales User permission.

ANS. B


Thursday, July 30, 2015

Summer 15 Salesforce Developer Maintenance Exam (Questions and Answers)


1. Which component can be included in a Lightning page built using the Lightning App Builder?
Choose 2 answers
A. Third-party components from the AppExchange.
B. The Twitter Standard Component.
C. The Map Standard Component.
D. The Recent Items Standard Component.

2. What is a capability of Chatter feed post editing?
Choose 2 answers
A. Group owners can edit system-generated posts in Chatter groups.
B. Record owners can see previous versions of an edited post.
C. Users can edit the text of their own Chatter posts.
D. Record owners can edit other users’ posts on records they own.

3. What is a capability of Chatter Files?
Choose 2 answers
A. Files can be synced from Chatter to a folder in a local directory.
B. Users can use @mentions to share files in content libraries.
C. Private content may only be shared in private Chatter groups.
D. All content files from content libraries can be synced in Chatter.

4. What is a capability of Chatter groups?
Choose 2 answers
A. Administrators can assign non-unique names to any Chatter group.
B. Administrators can choose which custom object records can be added to groups.
C. Chatter group owners can edit other users’ posts in groups they own.
D. Chatter group owners can write a group description of any length.

5.The VP of Sales wants sales reps to be able to quickly create a new opportunity record automatically related to an existing account. This should only be available in the Salesforce1 mobile app.

Where would a developer place a quick action to accomplish this?

A. The Quick Actions section of the Account page layout.
B. The Salesforce1 Action Bar section of the Account page layout.
C. The Mobile Card section of the Account page layout.
D. The Salesforce1 Action Bar section of the Opportunity page layout.

Thursday, June 25, 2015

/**
* @Author : Harinath
 * @Web : http://hari-chintalapudi@blogspot.com
 *
 * */
public class ISOtoCodeService {
    public String countryISO {get;set;}
    public String response {get;set;}

private String baseSericeURL = 'http://services.groupkt.com/country/get/iso2code/';
    private String returnedContinuationId ;

    public ISOtoCodeService()
    {
        countryISO = 'IN';
    }

    public Object requestService(){

        //Timeout in seconds, 60 is limit
        Continuation con = new Continuation(60);

        // Set callback method
        con.continuationMethod='renderResponse';

        // Create callout request
        HttpRequest req = new HttpRequest();
        req.setMethod('GET');
        req.setEndpoint(baseSericeURL+countryISO);

        returnedContinuationId = con.addHttpRequest(req);

        return con;
    }

    public Object renderResponse() {
      // Get the response by using the unique label
      HttpResponse httpRes = Continuation.getResponse(returnedContinuationId);
      // Set the result variable that is displayed on the Visualforce page
      response = httpRes.getBody();
      // Return null to re-render the original Visualforce page
      return null;
    }

}

Monday, May 11, 2015

Get Free first ride on uber


https://get.uber.com/invite/TUCS5?lang=en_US

Wednesday, April 15, 2015

SF Spring-15 release  maintance exam Q& A