Skip to main content

Winter 13 Release Notes

some key notes which will help you to clear maintenance exam.

Permission set Enhancement
Prior to winter 13 permission set can be assigned to user with same user license type,but In winter 13 permission set no longer need to assign license type and can be assigned to user with multiple user license type known as Organization-Wide Permission Set. To create permission set we have to choose User License as None.
You can only specify user license when creating new permission set,you can't change its user license when editing or cloning it


Visual workflow Enhancement
The cloud flow designer let you to create business process visually.
User can navigate from start to finish . In winter 13 we can control the user navigation in the flow. By default user can navigate previous screen of the flow or finish .However you can prevent this by removing previous button and next button in the screen .To do so choose the options “don't show prev button ” in the Navigation options.
In the Add field section there are three new field added in the flow
1-multi select checkbox
2-multi select picklist
3-checkbox
you can display multiple choice by using multi select check box or picklist.check box is used to prompt the user to choose true or false .It can be used in marketing campign.
In winter 13 we can add apex plug in and sub flow which are included in palette in the flow.
Explorer used to easily find resource and element used in the flow.
The Highlight Result on canvas check box help us to easily find search result .when you hover on search icon It will highlight the search element in the flow.
Also there are zoom control and get started link to see the video how flow works and also a link to sample package and apex plugin.

Developer Consol Enhancement
Developer consol is the new tool to create monitor and test the application 'data .
There are some tool newly added
1-Test Tool
2-Query Editor
3-Multiple prospective
Test tool used for testing. Query editor used for soql query execute .
Multiple prospective used displaying same information in different manner . To create prospective click prospective All button in the system log from their choose view panel and save it in a new name.

Enhancement To Apex Test Frame Work
In Winter 13 release salesforce makes test process more rubost by some tool.
We can create csv file and stored as Static resource “testclss.csv” and use the resource in Test.Load data method to declair test data.
For example
List<sObject> tst = Test.loadData(Account.sObjectType , 'Yourresoursename');
It supports for testing both Rest and Soap based callout .
Test.setMock(HttpCalloutMock.class, mock);

Some sample question..
1-which is present in developer-consol..?
2-what is the capacity of visual work flow ?
3-what is the capacity of joined Report ?
4-What can a developer do in apex testing
5-what the Administrator need to do assign a permission set for users with different user license ?
For detail Information refer this pdf

Here is link of video ..Go through this link and watch this video for 15 min then clear exam
.
  

                                                                                     All the Very Best For Exam

                                                                                 
                                                       

Comments

Popular posts from this blog

How to Create a Tooltip in Lightning Datatable ?

Imagine you have a datatable displaying a list of Contact records , and one of the columns shows the Account Name . The Account Name is a hyperlink that allows users to navigate to the Account record page. But what if users want to take a quick glance at some key Account fields —like Phone or Address—without navigating to the Account record? In Salesforce Classic, this was achieved using the Mini Page Layout feature from standard page. However, in Lightning Experience, we can implement a similar feature by adding a tooltip to the data table. Solution Overview: We’ll create a Lightning Web Component (LWC) that: Displays a data table with a clickable Account Name . Provides a tooltip that shows the Account's Phone and Address fields when users hover over the Account Name. Implementation Steps: 1. Data Preparation We need to retrieve the following fields for each Contact and its associated Account: Contact Fields : Name, Phone, Email Account Fields : Name, Phone, Billing Addre...

Lifecycle hooks in LWC

There are 3 phase of LWC component  1. Mounting  A. constructor, B. connnectedCallback C. render D. renderedCallback 2. UnMounting  A. disconnectedcallback 3. Error  A.errorcallback Note - render is not lifecycle hook, it is protected method of Lightning element class. Mounting Phase LWC Creation and Render Life cycle Constructor Method ·        This method called when component is instantiated and It flows from parent to child component. ·        Need to call Super() inside constructor method ·        Can’t access any component properties or child component because it’s not ready yet. ·        Host element can be accessed through “this. template” inside constructor method. ·        Don’t add any attributes to host inside constructor C   constructor (){          super (); //...

How to Create/Delete file attachments(Content Document) through Apex ?

 There are 3 standard salesforce objects to store file attachments. Content Document, ContentDocumentVersion, ContentDocumentLink.  Here is the article to talk about these objects and relationship.  https://www.forcetalks.com/blog/contentdocument-and-contentversion-in-salesforce-an-overview/ ContentDocumentVersion ContentDocumentLink This post is all about how to create/delete content document though Apex. Here is code snippet // Insert Content Version record ContentVersion contentVersionRec = new ContentVersion(Title='filename',PathOnClient ='FileName.pdf',VersionData = bodyBlob,origin = 'H'); INSERT contentVersionRec; // this will insert one record in ContentDocument and ContentVersion , ContentDocument  is parent and  ContentVersion is child record // get contentdocument id contentVersionRec = [SELECT Id, Title, ContentDocumentId FROM ContentVersion WHERE Id = :contentVersionRec .Id LIMIT 1]; // Create Content Document Link record- This will attach ...