spring '16 release preview webinar

36
Spring ’16 Release Preview Webinar January 28, 2016

Upload: salesforce-developers

Post on 11-Jan-2017

6.665 views

Category:

Technology


1 download

TRANSCRIPT

Page 1: Spring '16 Release Preview Webinar

Spring ’16 Release Preview WebinarJanuary 28, 2016

Page 2: Spring '16 Release Preview Webinar

Forward Looking Statement

Statement under the Private Securities Litigation Reform Act of 1995: This presentation may contain forward-looking statements that involve risks, uncertainties, and assumptions. If any such uncertainties materialize or if any of the assumptions proves incorrect, the results of salesforce.com, inc. could differ materially from the results expressed or implied by the forward-looking statements we make. All statements other than statements of historical fact could be deemed forward-looking, including any projections of product or service availability, subscriber growth, earnings, revenues, or other financial items and any statements regarding strategies or plans of management for future operations, statements of belief, any statements concerning new, planned, or upgraded services or technology developments and customer contracts or use of our services.

The risks and uncertainties referred to above include – but are not limited to – risks associated with developing and delivering new functionality for our service, new products and services, our new business model, our past operating losses, possible fluctuations in our operating results and rate of growth, interruptions or delays in our Web hosting, breach of our security measures, the outcome of any litigation, risks associated with completed and any possible mergers and acquisitions, the immature market in which we operate, our relatively limited operating history, our ability to expand, retain, and motivate our employees and manage our growth, new releases of our service and successful customer deployment, our limited history reselling non-salesforce.com products, and utilization and selling to larger enterprise customers. Further information on potential factors that could affect the financial results of salesforce.com, inc. is included in our annual report on Form 10-K for the most recent fiscal year and in our quarterly report on Form 10-Q for the most recent fiscal quarter. These documents and others containing important disclosures are available on the SEC Filings section of the Investor Information section of our Web site.

Any unreleased services or features referenced in this or other presentations, press releases or public statements are not currently available and may not be delivered on time or at all. Customers who purchase our services should make the purchase decisions based upon features that are currently available. Salesforce.com, inc. assumes no obligation and does not intend to update these forward-looking statements.

Page 3: Spring '16 Release Preview Webinar

Speakers

Samantha Ready Senior Developer Evangelist

@samantha_ready

LeeAnne Templeman Senior Admin Evangelist

@leeanndroid

Page 4: Spring '16 Release Preview Webinar

Go Social!@salesforcedevs / #DevSpring16 @salesforceadmns / #AwesomeAdmin

Salesforce Developers Salesforce Admins

Salesforce Developers

This webinar is being recorded! The video will be posted to YouTube and the webinar recap page (same URL as registration).

Salesforce Developers ButtonClick Admins

Page 5: Spring '16 Release Preview Webinar

▪www.salesforce.com/newfeatures

▪Release Readiness Community

▪ trust.Salesforce.com

Stay up-to-date with Release Information

Page 6: Spring '16 Release Preview Webinar

• Post your questions with #askforce bit.ly/ReleaseReadinessSalesforce -There are community members waiting to answer your questions

• Don’t wait until the end to ask your question! -Technical support will answer questions starting now.

• Respect Q&A etiquette -Please don’t repeat questions. The support team is working their way down the queue.

• Stick around for live Q&A at the end -Speakers will tackle more questions at the end, time-allowing.

Have Questions?

Page 7: Spring '16 Release Preview Webinar

1.Visualforce for Lightning Experience 2.Lightning for Developers 3.Apex Testing & FlexQueue Enhancements 4.Various API Enhancements 5. Lightning Setup & Health Check 6. Global & Restricted Picklists 7. Process Builder & App Builder 8. Lightning UI Updates 9.Q & A

Agenda

Page 8: Spring '16 Release Preview Webinar

Spring ’16 for Developers

Page 9: Spring '16 Release Preview Webinar

Visualforce for Lightning Experience

(LEX) Demo

Page 10: Spring '16 Release Preview Webinar

New places to add VF - Add VF pages to the LEX Navigation Menu - Detect where a user is viewing the page from (S1, Classic, LEX) with the

UITheme context variable

Not so new…Just FYI - Run VF from the App Launcher - Display VF page embedded in standard Page Layout - Create VF component for App Builder - VF custom actions, buttons, and links

Visualforce for Lightning Experience (Beta) Visualforce is GA, VF pages with LEX enabled is beta

Page 11: Spring '16 Release Preview Webinar

• Header and sidebar are always suppressed and page title can’t be set

• Don’t set window.location, use sforce.one utility object

• Static URLs might break in some contexts

-in VF markup use: {!URLFOR($Action.Conact.Edit, recordId)}

-in Javascript use: navigateToSObject(recordId)

• Detect user context to potentially adjust style to the app environment

• Some VF override actions are not available in LEX

• Some related lists are currently blacklisted in LEX

• <apex:iFrame> is deprecated in LEX

Visualforce for Lightning Experience (Beta) Extra considerations you need to know

Page 12: Spring '16 Release Preview Webinar

Other Lightning Features

• Capture design variables with Lightning Components tokens (developer preview) <aura:tokens> <aura:token name=“myBodyTextFontFace" value="Arial"/> <aura:token name="myBodyTextFontWeight" value=“normal"/> </aura:tokens>

.THIS p { font-family: token(myBodyTextFontFace); font-weight: token(myBodyTextFontWeight); }

• Improved performance with secure client-side caching

Page 13: Spring '16 Release Preview Webinar

Lightning Out facilitates using Lightning Components in Visualforce Pages

• Use components directly in Visualforce • Integrate on the client via JavaScript and Lightning Events • Build “hybrid” pages that leverage the best of Lightning

Components and Visualforce • Use Lightning Components in both Classic and LEX

Lightning Out (beta) Lightning Components for Visualforce

Page 14: Spring '16 Release Preview Webinar

Demo Lightning Out

Page 15: Spring '16 Release Preview Webinar

• Create test suites of commonly used Apex Classes

• Stop a test run that’s failing miserably

• Bug fixes: - currency to decimal comparisons - some MIXED_DML_OPERATION errors

- resetting limits for test.startTest()

Apex Testing Enhancements

Page 16: Spring '16 Release Preview Webinar

Locate Jobs in the Apex Flex Queue

Query the FlexQueueItem object to find: - position of an asynch Apex job in the Flex Queue - fields from the AsynchApexJob object with the AsynchApexJobId

SELECT JobPosition, AsyncApexJob.ApexClass.Name FROM FlexQueueItem WHERE

JobType = 'BatchApex' AND AsyncApexJobId = '707xx000000DABC'

(find the position)

SELECT JobType, AsyncApexJob.CreatedDate FROM FlexQueueItem WHERE

JobType='BatchApex' AND AsyncApexJob.ApexClass.Name LIKE '%'BatchAJob'%'

ORDER BY JobPosition DESC

(find all batch jobs)

Page 17: Spring '16 Release Preview Webinar

• Query records saved in all users’ private folders with the

allPrivate query scope

• DISTANCE() supported with location-based SOQL queries SELECT Id, Name, Location, DISTANCE(Location, GEOLOCATION(latitude, longitude), ‘mi’) FROM Contact

• Formatting for number, date,time, and currency fields in

SELECT clauses

API Enhancements - SOQL

Page 18: Spring '16 Release Preview Webinar

• Replay Generic Streaming Events (GA)

- Salesforce stores for 24hrs

- Subscribers choose events to retrieve with replay options

API Enhancements - Streaming API

Page 19: Spring '16 Release Preview Webinar

• Replay PushTopic Streaming Events (Beta)

- identical to generic streaming with replay for 24hrs

- subscription channel should include PushTopic “channel”:“/topic/MyTopicName”

Contact Salesforce to enable this

API Enhancements - Streaming API

Page 20: Spring '16 Release Preview Webinar

• JSON support for Bulk API

• REST API - Friendly URLs

- Make REST requests with fewer API calls

- Access records by traversing object relationships to retrieve, update, or delete the record

• Wave REST API has gone GA

Other Various API Enhancements

Page 21: Spring '16 Release Preview Webinar

• JSON support for Bulk API

• REST API - Friendly URLs

- Make REST requests with fewer API calls - Access records by traversing object relationships to retrieve, update, or delete the record

• Wave REST API has gone GA

Other Various API Enhancements

Page 22: Spring '16 Release Preview Webinar

Get started today with Wave in Trailhead!

bit.ly/wave-de-org

bit.ly/wave-trail

bit.ly/wave-dev-guide

Page 23: Spring '16 Release Preview Webinar
Page 24: Spring '16 Release Preview Webinar

Spring ’16 for Admins

Page 25: Spring '16 Release Preview Webinar

Demo Lightning UI & Setup updates

Page 26: Spring '16 Release Preview Webinar

• New preview options

• More resource links

• Evaluate Lightning

• View production org

New Lightning Setup Tools

Page 27: Spring '16 Release Preview Webinar

• Lightning & Classic

• Immediate analysis

• Actionable links

• Password Policies

• Session Settings

• Network Access Config

Security Health Check

Page 28: Spring '16 Release Preview Webinar

• Reuse a single list of values

• Manage a recurring picklist in

one place

• 40,000+ Idea Exchange points

• Keep picklist data clean

• Restrict ability to create values

Global (Pilot) & Restricted (Beta) Picklists

Page 29: Spring '16 Release Preview Webinar

Demo Process Builder, App Builder

Lightning UI Updates

Page 30: Spring '16 Release Preview Webinar

• Almost 9000 idea points for

Process Builder delivered!

• Drag & Drop Criteria reordering

• Reuse names & descriptions for

new process versions

• Full field names now visible on hover

Process Builder Updates in Spring ‘16

Page 31: Spring '16 Release Preview Webinar

• Open Pilot

• DE & Admin Playground

• Add set of tabs

• Custom tabs

• Customize record pages

App Builder Customize Record Home (Pilot)

Page 32: Spring '16 Release Preview Webinar

• Campaigns

• Person Accounts

• Opportunity Teams

• List Views

• Inline editing

• Global Actions

• S1 Enhanced dashboards

Lightning UI Updates

Page 33: Spring '16 Release Preview Webinar
Page 34: Spring '16 Release Preview Webinar

Join the Conversation! post to: bit.ly/ReleaseReadinessSalesforce with #askforce

Page 35: Spring '16 Release Preview Webinar

Q&A

Your feedback is crucial to the success of our webinar programs. Thank you!

http://bit.ly/spring16release

Page 36: Spring '16 Release Preview Webinar

Thank you!