Skip to main content

Salesforce Winter 16 Maintenance exams


Today I passed both of the Winter 16 release certificate maintenance exams - Admin 201 and Developer 401. Actually both of them had almost the same questions so it turned out to be a very quick exercise.

As there is always a question around the morality of sharing the actual questions and answers from a test, I am not going to do that. Instead I will try and share information around what you would need to read to be prepared for the test. Based on my experience, there are just a few topics so I think if you go through these, you will be good.

The main topics I encountered in the test are -

  • Improvements released to Chatter posts. 
There are a couple of important improvements around Chatter to note in Winter 16 release. One of them is the ability to mute posts which will help users cut down the amount of posts they see in the Chatter feed. Another one is the ability to use rich text while creating posts.
  • Improvements to process builder and visual workflows
Process builder and visual workflows are emerging as a nice and powerful replacement to Apex in most scenarios. There are some good enhancements to both of these powerful features. One is the fact that they have been further bulkified. Another is ability to setup multiple scheduled actions in a process flow. Now administrators can get more notifications on inactive flows as well.
  • There are some great user features that have been added such as auto-completion of standard address fields
  • Salesforce Files - There are new features that have been added to Salesforce Files capability like the ability to freeze sharing of files, ability to prevent addition of files from Salesforce directly etc. Reading up on this section will be helpful.
  • Improvements to Chatter groups - ability to view records which have @Mentions for a group through a related list in the Group screen
  • How is Lightning Experience UI enabled and for whom does it get enabled by default?


In terms of where to read about these topics, I found the release notes to be the best reference - Winter 16 release notes . The pdf is large but if you concentrate on the topics I suggested, you should be able to take the test easily.

Comments

  1. Hi Rajesh, Next week I Have ADM-201 maintenance exam. can you plse send the questions if you have?

    ReplyDelete
    Replies
    1. Kiran..when did you register for the exam? It seems 8th July 2016 is last date for completing exam but registrations are not working now as 30th June was last day to register. Do you know a way out to register even now? Somehow I missed to register.

      Delete
  2. I had the same problem. Should be fixed now

    ReplyDelete
  3. I too got the same issue today but got it resolved by raised a case with SF from http://certification.salesforce.com/open-a-case.
    Hope this helps.

    ReplyDelete

Post a Comment

Popular posts from this blog

Workaround to bypass Salesforce SSO

One of the best practices for implementing Single Sign On for your Salesforce org is always ensure there is a way your System administrator can login via the standard login page side-stepping the SSO configuration.  Reason for this is if ever something goes wrong with your Idp provider's service and the SSO authentication responses are not coming as expected, all your users are unable to login. That is, if you have setup your My domain to prevent logins via standard Salesforce login urls (login.salesforce.com). This includes the System administrator as well. Only if your system administrator can somehow login, then he or she can disable the SSO settings for your domain and allow login via the normal login page as a temporary measure. What do you do in such a situation? Well Salesforce has built a workaround for this which is not well documented anywhere (probably for a good reason :) ). I found out about it from a colleague at work. If your my domain url is - https://Com

Salesforce Big Objects - Key learnings

I remember reading about Salesforce Big Objects before they became available and thought maybe it is an option to backup data present in regular objects. That is, instead of taking a backup via an ETL tool or data loader, maybe this will be an option to backup the data in the Force.com platform itself. Now that it is GA and I am reading more about it, i think the use cases for this are more varied. Some use cases I can think of are –  Archival of key data objects within the platform: You may want to use this option if you dont use any other means to backup key data. Also this may be an attractive option for non-large enterprise customers who dont themselves invest on large data warehouses or data lakes in their enterprise architecture. Ex: customer history (if present in tasks and activities) will become huge over years but this is useful information for reporting & customer analysis. Store key information which is large volume in quantity and also high volume in transa

DBAmp for Salesforce - salesforce integration for SQL Server DBAs

Recently i got the opportunity to explore a tool called DBAmp for integration with Salesforce. I found it to be a very useful tool which will help with any data manipulation requirements in Salesforce. Following are my learnings from the exercise. Hope it helps any of you who may need to work with this tool -  DBAmp is a SQL Server package that can be used to integrate with Salesforce. The site where this software is available is - http://www.forceamp.com/ Overview: It essentially installs on top of an existing SQL Server database and provides an OLE DB connector that can be used to connect to Salesforce. Behind the scenes, it executes API calls against Salesforce for any SQL server command it receives. Thus we can create a connection in SQL server to Salesforce org and pull data into tables in the database just as if we are querying against Salesforce tables directly. Use cases for DBAmap + Salesforce: Many use cases exist for using this tool against Salesforce. Pr