SlideShare a Scribd company logo
1 of 42
Download to read offline
Week 0 Unit 1: Course
Environment and Setup
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 2
Week 2
Become a
Data
Binding
Expert
Week 1
Learn the
Essentials
Week 4
Master
SAPUI5
Week 3
Create
Responsive
Apps
Week 0
Get Started
Week 5
Final Exam
& Events
Course Environment and Setup
Course structure, points, and requirements
Video Lectures
Exercises (optional)
4 weekly
assignments
4x30 = 120 points
Final exam
120 points
Record of achievement
when results above
120 points
(max. 240 points)
Watch the deadlines!
+
=
*
2 bonus exercises
(2x10 points)
+
 Online forums during entire 6 weeks of course 
Learning effort: ~4-5 hours/week
ExamWeekly assignments for each week
Bonus Bonus* *
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 3
Course Environment and Setup
Week 0 – Preparation
Learn about the
development scenario
and set up accounts
Rest of this week:
Get ready for the course
Unit 0.1
Course Environment
and Setup
Unit 0.2
Do You Really
Understand
JavaScript?
Unit 0.3
SAPUI5 SDK –
Demo Kit
Unit 0.4
Debugging and
Troubleshooting
Unit 0.5
A Glance at the
Coding Exercises
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 4
Course Environment and Setup
Scenario and tools
IDE
Web Server /
App Platform
datadeploy
Develop and Test
SAP Web IDE
Publish the App
SAP HANA
Cloud Platform
Store/Fetch Data
SAP Gateway
(EPM Services)
Back-End
System
DB
Cloud
Connector *
* Establishes secure tunnel between cloud and on-premise systems
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 5
Develop Test Package
and Deploy
Extend
Developing with SAP Web IDE SAP Web IDE – Enablement @ SCN
Course Environment and Setup
SAP Web IDE
SAP Web IDE is a powerful, Web-based integrated development tool that simplifies the end-to-
end application development lifecycle for SAP Fiori apps, Fiori-like apps, and SAPUI5 apps
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 6
Course Environment and Setup
SAP HANA Cloud Platform (HCP)
Integration AnalyticsUser Experience
Internet of Things
SecurityCollaborationDev & Ops
MobileData & StorageBusiness
More details:
hcp.sap.com
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 7
Course Environment and Setup
SAP Fiori
SAP Fiori Design GuidelinesSAP Fiori User Experience SAP Fiori, Demo Cloud Edition
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 8
Course Environment and Setup
Related openSAP courses
Course Scenario Main Focus
Developing Web Apps
with SAPUI5 (ui51)
 Develop SAPUI5 Web apps
 Deploy apps to SAP HCP
 Use generic OData services
Learn the main concepts of the
SAPUI5 UI library by
developing responsive apps
Build Your Own SAP Fiori
App in the Cloud (fiux2)
 Design and develop SAP Fiori apps
 Deploy apps to SAP Fiori launchpad
 Extend existing apps
Use the SAP Fiori design
guidelines and development
resources to build your own
SAP Fiori app
Developing Mobile Apps
with SAP HANA Cloud
Platform (mobile2)
 Develop mobile-enabled apps
 Deploy apps to mobile devices
 Learn about mobile features
Build, extend, integrate, and
mobilize SAP Fiori apps by
adding (native) mobile features
Thank you
Contact information:
open@sap.com
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 10
© 2016 SAP SE or an SAP affiliate company. All rights reserved.
No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company.
SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate
company) in Germany and other countries. Please see http://global12.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and notices.
Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors.
National product specifications may vary.
These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its
affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and
services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as
constituting an additional warranty.
In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop
or release any functionality mentioned therein. This document, or any related presentation, and SAP SE’s or its affiliated companies’ strategy and possible future
developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time
for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forward-
looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place
undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions.
Week 0 Unit 2: Do You Really
Understand JavaScript?
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 2
Do You Really Understand JavaScript?
Recommended JavaScript tutorials
If you are fairly new to JavaScript, you might want
to read one of the following free tutorials during
the preparation week of this course:
Codecademy: JavaScript Fundamentals
The JavaScript Tutorial
JavaScript Garden
JavaScript Developer Documentation
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 3
Do You Really Understand JavaScript?
How to test your knowledge
Do self-test questions
for this unit
Enjoy the rest of this
video as a recap!
Use documentation
link in question to
learn the concept!
while (aQuestions) {
aQuestions.pop().answer();
}
You really
understand JavaScript!
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 4
Do You Really Understand JavaScript?
JavaScript & browsers
JavaScript code is interpreted at runtime
All modern desktop and mobile browsers are highly
optimized for processing JavaScript code with their
JavaScript engines.
JavaScript is properly known as ECMAScript
Browser engines implement ECMAScript, but with slight
variations in the range of supported features and
implementation details (e.g. the exact details of how
XMLHttpRequest, XML API, and the DOM API have
been implemented vary between browsers).
Client-side JavaScript is executed in a sandbox
For security reasons, you cannot access the local (file)
system from a Web page.
Internet Explorer
Mozilla Firefox
Safari
Google Chrome
Chakra
SpiderMonkey
Nitro
V8
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 5
Do You Really Understand JavaScript?
Client-side scripting
All presentation logic is done on the client
Only resources (HTML file, code, data) are loaded from
the Web server. The code is then processed on the client
to create DOM elements on the screen.
JavaScript is single-threaded
There is only one JavaScript thread per window. Other
activities like rendering or downloading resources may be
managed by separate threads but can be blocked by
scripts.
Data is loaded with XHR requests
During execution, data is often requested from a back-end
system such as an OData or a REST-based service. The
data is usually supplied in JSON or XML format.
DBJSON or XML
XHR Requests
Compose UI
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 6
Do You Really Understand JavaScript?
Linguistic inheritance of JavaScript
JavaScript
Java
Self
Scheme
Perl
JS
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 7
There are only 6 data types in JavaScript:
 Number
double-precision 64-bit format (IEEE 754)
 String
Sequences of Unicode characters
 Boolean
True or false
 Object
Function / Array / Date / RegExp
 Null
Deliberate non-value
 Undefined
Indicates an uninitialized value
“5” * “2”
 10
Typeof (“Hello” + 1)
 String
1 == true
 True
1 === true
 False
var iAmount = 23;
var sString = “Hello”;
Do You Really Understand JavaScript?
Types and implicit conversions
Beware of
truthy/falsy values,
always use “===” for
strict checks
Implicit type
conversions can be
nice or dangerous;
try to avoid them
Use Hungarian
notation
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 8
Do You Really Understand JavaScript?
Objects
Objects are unordered collections of name-value pairs
Names are called “properties”, values can be of any type.
If it is a function, it becomes an object “method”.
Objects may have a constructor function
Attributes can then be stored and accessed with the “this”
pointer in the current context
Everything except for core types is an object
Even functions are just objects “with an executable part”
Inheritance is not based on classes but prototypes
Properties and/or methods can be added to the object
itself or to the prototype and deleted at runtime.
// object literal
var oObjLiteral = {};
// an Object object
var oObject = new Object();
// properties referenced using dot notation
oObject.property;
oObject.method([parameter]);
// properties referenced using array notation
oObject["property"];
// adding a property to an object
oObject.newProperty = "Property Value";
// deleting properties or methods
delete oObject.myMethod;
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 9
Do You Really Understand JavaScript?
Functions
Functions are objects with an executable part
They can be created and destroyed dynamically. Since
a function is just an object, in addition to its executable
code you can also assign your own properties (name,
arguments, …) to it.
Functions can be passed as arguments to other
functions
Functions are frequently passed as parameters to other
functions in JavaScript. This is the basis upon which
“asynchronous callbacks” work.
JavaScript variables exist within the scope of a
function
All variables declared with a function are visible to all
coding within that function. This is known as “function
scope”. There is no block scope in JavaScript.
// function expression (anonymous)
var fnAdd = function(a, b) {
return a + b;
};
// function declaration (named)
function add(a, b) {
return a + b;
}
// function calls
fnAdd(2,3); // 5
add(2,3); // 5
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 10
Do You Really Understand JavaScript?
Asynchronous processing
Be careful! JavaScript is single-threaded
Long-running or resource-intensive tasks should be performed
asynchronously, otherwise the UI might become unresponsive
and your users might see a message like this.
 Asynchronous module definition (AMD)
Helper tools for module loading: requireJS, sap.ui.define
 Divide long-running tasks with setTimeout(…, 0)
It will continue with the execution immediately after all other tasks are
processed
 Use callback functions, event listeners, promises, and framework
hooks
These patterns help you to efficiently structure and process application logic
 Use asynchronous XHR calls
Avoid synchronous server requests because script execution will pause until
the resource is loaded
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 11
Do You Really Understand JavaScript?
Method chaining (cascading)
If a function returns a reference to the current context then a programming technique called
method chaining can be used
Method chaining is widely used in many JavaScript frameworks including jQuery and SAPUI5
 Chaining is a nice time-saver (the element in the example has to be looked up only once)
 Debugging long method chains is more difficult
jQuery("#myButton")
.text("Click me")
.css("color", "#c00")
.bind("click", function(e) {
alert("Thanks for clicking");
});
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 12
Do You Really Understand JavaScript?
Closures
Nested functions inherit the scope of their
parent function
Closures adapt to variable changes, even if the
changes happen a long time after the function was
created. So you have to think of a closure as of a
“live” thing.
“A closure is a special kind of object that combines
two things: a function, and the environment in
which that function was created. The environment
consists of any local variables that were in-scope
at the time that the closure was created.”
Source: MDN
function outer(param) {
var attr1 = “One”;
inner();
// the nested function inherits all
// the outer variables and parameters
function inner() {
var attr2 = “Two”;
alert(attr1); // “One”
alert(attr2); // “Two”
alert(param); // “Three”
}
}
outer(“Three”);
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 13
Do You Really Understand JavaScript?
Scope: this or that?
var myObj = {
whatsThis : function(that) {
setTimeout(function () {
// this is the global window object
console.log(this);
}, 0);
}
};
var that = this;
setTimeout(function () {
// access “that” closure
// for working with the context
}, 0);
setTimeout(function () {
// this is still the context
}.bind(this), 0);
this is a reference to the current
execution context and depends on the
scope
 Global scope: window
 Object scope: current object instance
 Function scope: depends on us!
When using callbacks, the context may
be lost
this in an asynchronous callback function is by
default the global window object!
Often, the “that” or “bind” construct is used to
build a closure and ensure that the value of
this is set correctly.
Week 0 Unit 3:
SAPUI5 SDK – Demo Kit
Public© 2015 SAP SE or an SAP affiliate company. All rights reserved. 2
SAPUI5 SDK – Demo Kit
Releases
Latest release:
https://sapui5.hana.ondemand.com/
https://openui5.hana.ondemand.com/
Beta OpenUI5 release:
https://openui5beta.hana.ondemand.com/
Specific release:
https://sapui5.hana.ondemand.com/1.28.8/
https://openui5.hana.ondemand.com/1.32.5/
Your ABAP release:
https://<host>:<port>/sap/bc/ui5_demokit/
Public© 2015 SAP SE or an SAP affiliate company. All rights reserved. 3
SAPUI5 SDK – Demo Kit
Explored
Metadata
Full Screen
Source Code
Preview
Settings
Filter
Controls
Samples
Public© 2015 SAP SE or an SAP affiliate company. All rights reserved. 4
SAPUI5 SDK – Demo Kit
Communities and social networks
SCN Community: http://scn.sap.com/community/developer-center/front-end
Stackoverflow: http://stackoverflow.com/questions/tagged/sapui5
Slack: http://slackui5invite.herokuapp.com/
YouTube: https://www.youtube.com/openui5videos
Twitter: https://twitter.com/OpenUI5 (@openui5)
Blog: http://openui5.tumblr.com/
Thank you
Contact information:
open@sap.com
Public© 2015 SAP SE or an SAP affiliate company. All rights reserved. 6
© 2015 SAP SE or an SAP affiliate company. All rights reserved.
No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company.
SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate
company) in Germany and other countries. Please see http://global12.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and notices.
Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors.
National product specifications may vary.
These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its
affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and
services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as
constituting an additional warranty.
In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop
or release any functionality mentioned therein. This document, or any related presentation, and SAP SE’s or its affiliated companies’ strategy and possible future
developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time
for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forward-
looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place
undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions.
Week 0 Unit 4: Debugging and
Troubleshooting
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 2
Debugging and Troubleshooting
SAPUI5 support tools
Technical information dialog
 CTRL + ALT + SHIFT + P
 Main features: enabling of debug sources & checking of SAPUI5 version
 Works on our supported desktop browsers
Diagnostics window
 CTRL + ALT + SHIFT + S
 Main features: SAPUI5 control tree, view & change control properties & bindings
 Works on our supported desktop browsers
UI5 inspector
 Chrome developer tools extension (F12)
 Main features: SAPUI5 control tree, view & change control properties & bindings (more to come)
 Works only with Google Chrome
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 3
Debugging and Troubleshooting
Useful SAPUI5 methods for debugging
Retrieving a control in the console
 yourControl =
sap.ui.getCore().byId(“yourID”);
 yourControl = $($0).control(0);
(if the respective DOM element is selected
in the Elements tab)
Getting information about a control
 yourControl.getMetadata()  useful to check for the class details
 yourControl.getParent()  returns the parent control in the control tree
 yourControl.  shows you all available methods in the console
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 4
Debugging and Troubleshooting
Tips & tricks
General
 Use Google Chrome if possible for debugging
 Check the console log for errors (press F12 key in Chrome)
 Set breakpoints and step through your code to understand where something is going wrong
SAPUI5
 If your control is not visible, check in the DOM inspector if your respective HTML exists
 Use debug sources for easier debugging
 Check if your respective file is loaded or if there is a 404 (Not Found) error on the Network tab
 Check if your respective file contains the changes you made on the Sources tab
 Have a look at the Troubleshooting section in the Demo Kit
Thank you
Contact information:
open@sap.com
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 6
© 2016 SAP SE or an SAP affiliate company. All rights reserved.
No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company.
SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate
company) in Germany and other countries. Please see http://global12.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and notices.
Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors.
National product specifications may vary.
These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its
affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and
services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as
constituting an additional warranty.
In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop
or release any functionality mentioned therein. This document, or any related presentation, and SAP SE’s or its affiliated companies’ strategy and possible future
developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time
for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forward-
looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place
undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions.
Week 0 Unit 5: A Glance at the
Coding Exercises
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 2
A Glance at the Coding Exercises
A typical unit this course – Learning by doing
Watch the video
?!
Do Self-Test
optional but recommended
Coding Exercise Validate Code
write.some.code();
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 3
A Glance at the Coding Exercises
How to do a coding exercise
write.some.
code();
Unit Exercise Handout
SAP Web IDE
SAP Web IDE
Testing Tools
Validator Script
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 4
A Glance at the Coding Exercises
How to run the validator
Press the
Button or
F9
Preparation:
Include validator
script in index.html
and run the app
Select a Unit
Check
Results
1
2
3
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 5
Read Task Coding Exercise Unlock PointsValidate Code
write.some.code();
Task
Backlog 08154711
A Glance at the Coding Exercises
How to do a bonus exercise
Thank you
Contact information:
open@sap.com
Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 7
© 2016 SAP SE or an SAP affiliate company. All rights reserved.
No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company.
SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate
company) in Germany and other countries. Please see http://global12.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and notices.
Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors.
National product specifications may vary.
These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its
affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and
services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as
constituting an additional warranty.
In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop
or release any functionality mentioned therein. This document, or any related presentation, and SAP SE’s or its affiliated companies’ strategy and possible future
developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time
for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forward-
looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place
undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions.

More Related Content

What's hot

Spring Boot Interview Questions | Edureka
Spring Boot Interview Questions | EdurekaSpring Boot Interview Questions | Edureka
Spring Boot Interview Questions | EdurekaEdureka!
 
Hadoop Developer Skills | Edureka
Hadoop Developer Skills | EdurekaHadoop Developer Skills | Edureka
Hadoop Developer Skills | EdurekaEdureka!
 
How to build an agentry based mobile app from scratch connecting to an sap ba...
How to build an agentry based mobile app from scratch connecting to an sap ba...How to build an agentry based mobile app from scratch connecting to an sap ba...
How to build an agentry based mobile app from scratch connecting to an sap ba...Ganesh Kumar
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEdureka!
 
Java Day Tokyo 2016 feedback at Kumamoto
Java Day Tokyo 2016 feedback at KumamotoJava Day Tokyo 2016 feedback at Kumamoto
Java Day Tokyo 2016 feedback at KumamotoTakashi Ito
 
Sap CodeJam no SAP Forum Brasil 2014 - minha primeira app com SAP HANA Cloud ...
Sap CodeJam no SAP Forum Brasil 2014 - minha primeira app com SAP HANA Cloud ...Sap CodeJam no SAP Forum Brasil 2014 - minha primeira app com SAP HANA Cloud ...
Sap CodeJam no SAP Forum Brasil 2014 - minha primeira app com SAP HANA Cloud ...Rui Nogueira
 
2011 BtoB Magazine Net Marketer Seminar "Digital branded experiences"
2011 BtoB Magazine Net Marketer Seminar  "Digital branded experiences"2011 BtoB Magazine Net Marketer Seminar  "Digital branded experiences"
2011 BtoB Magazine Net Marketer Seminar "Digital branded experiences"Kevin Cox
 
7 Reasons to get a Certification in Java
7 Reasons to get a Certification in Java7 Reasons to get a Certification in Java
7 Reasons to get a Certification in JavaNIIT India
 
Adobe AEM(6.0-6.1)_AEM Forms(6.1-6.2)_Developer_KrishnaChaitanya Palla
Adobe AEM(6.0-6.1)_AEM Forms(6.1-6.2)_Developer_KrishnaChaitanya PallaAdobe AEM(6.0-6.1)_AEM Forms(6.1-6.2)_Developer_KrishnaChaitanya Palla
Adobe AEM(6.0-6.1)_AEM Forms(6.1-6.2)_Developer_KrishnaChaitanya PallaKrishna Chaitanya Palla
 

What's hot (10)

Spring Boot Interview Questions | Edureka
Spring Boot Interview Questions | EdurekaSpring Boot Interview Questions | Edureka
Spring Boot Interview Questions | Edureka
 
Hadoop Developer Skills | Edureka
Hadoop Developer Skills | EdurekaHadoop Developer Skills | Edureka
Hadoop Developer Skills | Edureka
 
How to build an agentry based mobile app from scratch connecting to an sap ba...
How to build an agentry based mobile app from scratch connecting to an sap ba...How to build an agentry based mobile app from scratch connecting to an sap ba...
How to build an agentry based mobile app from scratch connecting to an sap ba...
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
Java Day Tokyo 2016 feedback at Kumamoto
Java Day Tokyo 2016 feedback at KumamotoJava Day Tokyo 2016 feedback at Kumamoto
Java Day Tokyo 2016 feedback at Kumamoto
 
Sap CodeJam no SAP Forum Brasil 2014 - minha primeira app com SAP HANA Cloud ...
Sap CodeJam no SAP Forum Brasil 2014 - minha primeira app com SAP HANA Cloud ...Sap CodeJam no SAP Forum Brasil 2014 - minha primeira app com SAP HANA Cloud ...
Sap CodeJam no SAP Forum Brasil 2014 - minha primeira app com SAP HANA Cloud ...
 
2011 BtoB Magazine Net Marketer Seminar "Digital branded experiences"
2011 BtoB Magazine Net Marketer Seminar  "Digital branded experiences"2011 BtoB Magazine Net Marketer Seminar  "Digital branded experiences"
2011 BtoB Magazine Net Marketer Seminar "Digital branded experiences"
 
7 Reasons to get a Certification in Java
7 Reasons to get a Certification in Java7 Reasons to get a Certification in Java
7 Reasons to get a Certification in Java
 
Adobe AEM(6.0-6.1)_AEM Forms(6.1-6.2)_Developer_KrishnaChaitanya Palla
Adobe AEM(6.0-6.1)_AEM Forms(6.1-6.2)_Developer_KrishnaChaitanya PallaAdobe AEM(6.0-6.1)_AEM Forms(6.1-6.2)_Developer_KrishnaChaitanya Palla
Adobe AEM(6.0-6.1)_AEM Forms(6.1-6.2)_Developer_KrishnaChaitanya Palla
 
UBNCorpSlides_v5
UBNCorpSlides_v5UBNCorpSlides_v5
UBNCorpSlides_v5
 

Viewers also liked

2015-03-19 BICA VAT Tips & Traps Freeport
2015-03-19 BICA VAT Tips & Traps Freeport2015-03-19 BICA VAT Tips & Traps Freeport
2015-03-19 BICA VAT Tips & Traps FreeportJane Adams, FCPA, FCMA
 
EP_Newsletter_FeaturedArticle_January16
EP_Newsletter_FeaturedArticle_January16EP_Newsletter_FeaturedArticle_January16
EP_Newsletter_FeaturedArticle_January16Tuuli Siiskonen
 
Presentation CrossBorderMedCare
Presentation CrossBorderMedCarePresentation CrossBorderMedCare
Presentation CrossBorderMedCareSofia Palmou
 
Yếu tố nguy cơ bệnh mỡ máu người cao tuổi
Yếu tố nguy cơ bệnh mỡ máu người cao tuổiYếu tố nguy cơ bệnh mỡ máu người cao tuổi
Yếu tố nguy cơ bệnh mỡ máu người cao tuổiamalia311
 
Dùng Lic Giảm Béo Có Hiệu Quả Không
Dùng Lic Giảm Béo Có Hiệu Quả KhôngDùng Lic Giảm Béo Có Hiệu Quả Không
Dùng Lic Giảm Béo Có Hiệu Quả Khôngzoraida771
 
Báo động nhồi máu cơ tim trong giới văn phòng
Báo động nhồi máu cơ tim trong giới văn phòngBáo động nhồi máu cơ tim trong giới văn phòng
Báo động nhồi máu cơ tim trong giới văn phòngodis836
 

Viewers also liked (12)

Vehicle registration process has changed in texas
Vehicle registration process has changed in texasVehicle registration process has changed in texas
Vehicle registration process has changed in texas
 
Furlong wood flooring
Furlong wood flooringFurlong wood flooring
Furlong wood flooring
 
2015-03-19 BICA VAT Tips & Traps Freeport
2015-03-19 BICA VAT Tips & Traps Freeport2015-03-19 BICA VAT Tips & Traps Freeport
2015-03-19 BICA VAT Tips & Traps Freeport
 
EP_Newsletter_FeaturedArticle_January16
EP_Newsletter_FeaturedArticle_January16EP_Newsletter_FeaturedArticle_January16
EP_Newsletter_FeaturedArticle_January16
 
Resume Jyoti Menon
Resume Jyoti MenonResume Jyoti Menon
Resume Jyoti Menon
 
Presentation CrossBorderMedCare
Presentation CrossBorderMedCarePresentation CrossBorderMedCare
Presentation CrossBorderMedCare
 
Xarxes informàtiques
Xarxes informàtiquesXarxes informàtiques
Xarxes informàtiques
 
Yếu tố nguy cơ bệnh mỡ máu người cao tuổi
Yếu tố nguy cơ bệnh mỡ máu người cao tuổiYếu tố nguy cơ bệnh mỡ máu người cao tuổi
Yếu tố nguy cơ bệnh mỡ máu người cao tuổi
 
CURRICULUM VITAE
CURRICULUM VITAECURRICULUM VITAE
CURRICULUM VITAE
 
Dùng Lic Giảm Béo Có Hiệu Quả Không
Dùng Lic Giảm Béo Có Hiệu Quả KhôngDùng Lic Giảm Béo Có Hiệu Quả Không
Dùng Lic Giảm Béo Có Hiệu Quả Không
 
Tips on purchasing a used vehicle from dealership
Tips on purchasing a used vehicle from dealershipTips on purchasing a used vehicle from dealership
Tips on purchasing a used vehicle from dealership
 
Báo động nhồi máu cơ tim trong giới văn phòng
Báo động nhồi máu cơ tim trong giới văn phòngBáo động nhồi máu cơ tim trong giới văn phòng
Báo động nhồi máu cơ tim trong giới văn phòng
 

Similar to Open sap ui51_week0_all_slides

DOES16 San Francisco - Marc Ng - SAP’s DevOps Journey: From Building an App t...
DOES16 San Francisco - Marc Ng - SAP’s DevOps Journey: From Building an App t...DOES16 San Francisco - Marc Ng - SAP’s DevOps Journey: From Building an App t...
DOES16 San Francisco - Marc Ng - SAP’s DevOps Journey: From Building an App t...Gene Kim
 
SAP HANA SPS09 - SQLScript
SAP HANA SPS09 - SQLScriptSAP HANA SPS09 - SQLScript
SAP HANA SPS09 - SQLScriptSAP Technology
 
How to use abap cds for data provisioning in bw
How to use abap cds for data provisioning in bwHow to use abap cds for data provisioning in bw
How to use abap cds for data provisioning in bwLuc Vanrobays
 
4Developers 2015: Responsywne aplikacje web'owe z użyciem OpenUI5 - Witalij R...
4Developers 2015: Responsywne aplikacje web'owe z użyciem OpenUI5 - Witalij R...4Developers 2015: Responsywne aplikacje web'owe z użyciem OpenUI5 - Witalij R...
4Developers 2015: Responsywne aplikacje web'owe z użyciem OpenUI5 - Witalij R...PROIDEA
 
SAP Cloud Platform SDK for iOS-Latest Updates
SAP Cloud Platform SDK for iOS-Latest UpdatesSAP Cloud Platform SDK for iOS-Latest Updates
SAP Cloud Platform SDK for iOS-Latest UpdatesJitendra Kansal
 
SAP HANA SPS09 - SAP River
SAP HANA SPS09 - SAP RiverSAP HANA SPS09 - SAP River
SAP HANA SPS09 - SAP RiverSAP Technology
 
SAST for JavaScript: A Brief Overview of Commercial Tools
SAST for JavaScript: A Brief Overview of Commercial ToolsSAST for JavaScript: A Brief Overview of Commercial Tools
SAST for JavaScript: A Brief Overview of Commercial ToolsAchim D. Brucker
 
News about UI5 that you absolutely have to know (UI5con 2017)
News about UI5 that you absolutely have to know (UI5con 2017)News about UI5 that you absolutely have to know (UI5con 2017)
News about UI5 that you absolutely have to know (UI5con 2017)Stefan Beck
 
Open sap lum1_week_1_all_slides
Open sap lum1_week_1_all_slidesOpen sap lum1_week_1_all_slides
Open sap lum1_week_1_all_slidesRamin Sadeghi
 
SAP HANA SPS08 SQLScript
SAP HANA SPS08 SQLScriptSAP HANA SPS08 SQLScript
SAP HANA SPS08 SQLScriptSAP Technology
 
Microservices without PaaS is like Bavaria without Beer
Microservices without PaaS is like Bavaria without BeerMicroservices without PaaS is like Bavaria without Beer
Microservices without PaaS is like Bavaria without BeerJohannes Engelke
 
Testing SAP HANA applications with SAP LoadRunner by HP
Testing SAP HANA applications with SAP LoadRunner by HPTesting SAP HANA applications with SAP LoadRunner by HP
Testing SAP HANA applications with SAP LoadRunner by HPSAP Solution Extensions
 
SAPUI5/OpenUI5 - Continuous Integration
SAPUI5/OpenUI5 - Continuous IntegrationSAPUI5/OpenUI5 - Continuous Integration
SAPUI5/OpenUI5 - Continuous IntegrationPeter Muessig
 
How SAP uses Flowable as its BPMN engine for SAP CP Workflow
How SAP uses Flowable as its BPMN engine for SAP CP WorkflowHow SAP uses Flowable as its BPMN engine for SAP CP Workflow
How SAP uses Flowable as its BPMN engine for SAP CP WorkflowFlowable
 

Similar to Open sap ui51_week0_all_slides (20)

BC404_EN_Col18.pdf
BC404_EN_Col18.pdfBC404_EN_Col18.pdf
BC404_EN_Col18.pdf
 
DOES16 San Francisco - Marc Ng - SAP’s DevOps Journey: From Building an App t...
DOES16 San Francisco - Marc Ng - SAP’s DevOps Journey: From Building an App t...DOES16 San Francisco - Marc Ng - SAP’s DevOps Journey: From Building an App t...
DOES16 San Francisco - Marc Ng - SAP’s DevOps Journey: From Building an App t...
 
openSAP_fiops1_Week_1_All_Slides.pdf
openSAP_fiops1_Week_1_All_Slides.pdfopenSAP_fiops1_Week_1_All_Slides.pdf
openSAP_fiops1_Week_1_All_Slides.pdf
 
SAP Developers Update
SAP  Developers UpdateSAP  Developers Update
SAP Developers Update
 
OpenUI5
OpenUI5OpenUI5
OpenUI5
 
SAP HANA SPS09 - SQLScript
SAP HANA SPS09 - SQLScriptSAP HANA SPS09 - SQLScript
SAP HANA SPS09 - SQLScript
 
SAP WPB
SAP WPBSAP WPB
SAP WPB
 
SAP WPB
SAP WPBSAP WPB
SAP WPB
 
How to use abap cds for data provisioning in bw
How to use abap cds for data provisioning in bwHow to use abap cds for data provisioning in bw
How to use abap cds for data provisioning in bw
 
4Developers 2015: Responsywne aplikacje web'owe z użyciem OpenUI5 - Witalij R...
4Developers 2015: Responsywne aplikacje web'owe z użyciem OpenUI5 - Witalij R...4Developers 2015: Responsywne aplikacje web'owe z użyciem OpenUI5 - Witalij R...
4Developers 2015: Responsywne aplikacje web'owe z użyciem OpenUI5 - Witalij R...
 
SAP Cloud Platform SDK for iOS-Latest Updates
SAP Cloud Platform SDK for iOS-Latest UpdatesSAP Cloud Platform SDK for iOS-Latest Updates
SAP Cloud Platform SDK for iOS-Latest Updates
 
SAP HANA SPS09 - SAP River
SAP HANA SPS09 - SAP RiverSAP HANA SPS09 - SAP River
SAP HANA SPS09 - SAP River
 
SAST for JavaScript: A Brief Overview of Commercial Tools
SAST for JavaScript: A Brief Overview of Commercial ToolsSAST for JavaScript: A Brief Overview of Commercial Tools
SAST for JavaScript: A Brief Overview of Commercial Tools
 
News about UI5 that you absolutely have to know (UI5con 2017)
News about UI5 that you absolutely have to know (UI5con 2017)News about UI5 that you absolutely have to know (UI5con 2017)
News about UI5 that you absolutely have to know (UI5con 2017)
 
Open sap lum1_week_1_all_slides
Open sap lum1_week_1_all_slidesOpen sap lum1_week_1_all_slides
Open sap lum1_week_1_all_slides
 
SAP HANA SPS08 SQLScript
SAP HANA SPS08 SQLScriptSAP HANA SPS08 SQLScript
SAP HANA SPS08 SQLScript
 
Microservices without PaaS is like Bavaria without Beer
Microservices without PaaS is like Bavaria without BeerMicroservices without PaaS is like Bavaria without Beer
Microservices without PaaS is like Bavaria without Beer
 
Testing SAP HANA applications with SAP LoadRunner by HP
Testing SAP HANA applications with SAP LoadRunner by HPTesting SAP HANA applications with SAP LoadRunner by HP
Testing SAP HANA applications with SAP LoadRunner by HP
 
SAPUI5/OpenUI5 - Continuous Integration
SAPUI5/OpenUI5 - Continuous IntegrationSAPUI5/OpenUI5 - Continuous Integration
SAPUI5/OpenUI5 - Continuous Integration
 
How SAP uses Flowable as its BPMN engine for SAP CP Workflow
How SAP uses Flowable as its BPMN engine for SAP CP WorkflowHow SAP uses Flowable as its BPMN engine for SAP CP Workflow
How SAP uses Flowable as its BPMN engine for SAP CP Workflow
 

Recently uploaded

Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxbodapatigopi8531
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...soniya singh
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...stazi3110
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfkalichargn70th171
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfjoe51371421
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...OnePlan Solutions
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfkalichargn70th171
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationkaushalgiri8080
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comFatema Valibhai
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdfWave PLM
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVshikhaohhpro
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio, Inc.
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataBradBedford3
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...aditisharan08
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWave PLM
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 

Recently uploaded (20)

Hand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptxHand gesture recognition PROJECT PPT.pptx
Hand gesture recognition PROJECT PPT.pptx
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
Russian Call Girls in Karol Bagh Aasnvi ➡️ 8264348440 💋📞 Independent Escort S...
 
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
Building a General PDE Solving Framework with Symbolic-Numeric Scientific Mac...
 
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdfThe Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
The Essentials of Digital Experience Monitoring_ A Comprehensive Guide.pdf
 
why an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdfwhy an Opensea Clone Script might be your perfect match.pdf
why an Opensea Clone Script might be your perfect match.pdf
 
Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...Advancing Engineering with AI through the Next Generation of Strategic Projec...
Advancing Engineering with AI through the Next Generation of Strategic Projec...
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
Project Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanationProject Based Learning (A.I).pptx detail explanation
Project Based Learning (A.I).pptx detail explanation
 
HR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.comHR Software Buyers Guide in 2024 - HRSoftware.com
HR Software Buyers Guide in 2024 - HRSoftware.com
 
5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf5 Signs You Need a Fashion PLM Software.pdf
5 Signs You Need a Fashion PLM Software.pdf
 
Optimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTVOptimizing AI for immediate response in Smart CCTV
Optimizing AI for immediate response in Smart CCTV
 
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed DataAlluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
Alluxio Monthly Webinar | Cloud-Native Model Training on Distributed Data
 
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer DataAdobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
Adobe Marketo Engage Deep Dives: Using Webhooks to Transfer Data
 
Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...Unit 1.1 Excite Part 1, class 9, cbse...
Unit 1.1 Excite Part 1, class 9, cbse...
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need It
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 

Open sap ui51_week0_all_slides

  • 1. Week 0 Unit 1: Course Environment and Setup
  • 2. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 2 Week 2 Become a Data Binding Expert Week 1 Learn the Essentials Week 4 Master SAPUI5 Week 3 Create Responsive Apps Week 0 Get Started Week 5 Final Exam & Events Course Environment and Setup Course structure, points, and requirements Video Lectures Exercises (optional) 4 weekly assignments 4x30 = 120 points Final exam 120 points Record of achievement when results above 120 points (max. 240 points) Watch the deadlines! + = * 2 bonus exercises (2x10 points) +  Online forums during entire 6 weeks of course  Learning effort: ~4-5 hours/week ExamWeekly assignments for each week Bonus Bonus* *
  • 3. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 3 Course Environment and Setup Week 0 – Preparation Learn about the development scenario and set up accounts Rest of this week: Get ready for the course Unit 0.1 Course Environment and Setup Unit 0.2 Do You Really Understand JavaScript? Unit 0.3 SAPUI5 SDK – Demo Kit Unit 0.4 Debugging and Troubleshooting Unit 0.5 A Glance at the Coding Exercises
  • 4. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 4 Course Environment and Setup Scenario and tools IDE Web Server / App Platform datadeploy Develop and Test SAP Web IDE Publish the App SAP HANA Cloud Platform Store/Fetch Data SAP Gateway (EPM Services) Back-End System DB Cloud Connector * * Establishes secure tunnel between cloud and on-premise systems
  • 5. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 5 Develop Test Package and Deploy Extend Developing with SAP Web IDE SAP Web IDE – Enablement @ SCN Course Environment and Setup SAP Web IDE SAP Web IDE is a powerful, Web-based integrated development tool that simplifies the end-to- end application development lifecycle for SAP Fiori apps, Fiori-like apps, and SAPUI5 apps
  • 6. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 6 Course Environment and Setup SAP HANA Cloud Platform (HCP) Integration AnalyticsUser Experience Internet of Things SecurityCollaborationDev & Ops MobileData & StorageBusiness More details: hcp.sap.com
  • 7. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 7 Course Environment and Setup SAP Fiori SAP Fiori Design GuidelinesSAP Fiori User Experience SAP Fiori, Demo Cloud Edition
  • 8. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 8 Course Environment and Setup Related openSAP courses Course Scenario Main Focus Developing Web Apps with SAPUI5 (ui51)  Develop SAPUI5 Web apps  Deploy apps to SAP HCP  Use generic OData services Learn the main concepts of the SAPUI5 UI library by developing responsive apps Build Your Own SAP Fiori App in the Cloud (fiux2)  Design and develop SAP Fiori apps  Deploy apps to SAP Fiori launchpad  Extend existing apps Use the SAP Fiori design guidelines and development resources to build your own SAP Fiori app Developing Mobile Apps with SAP HANA Cloud Platform (mobile2)  Develop mobile-enabled apps  Deploy apps to mobile devices  Learn about mobile features Build, extend, integrate, and mobilize SAP Fiori apps by adding (native) mobile features
  • 10. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 10 © 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see http://global12.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE’s or its affiliated companies’ strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forward- looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions.
  • 11. Week 0 Unit 2: Do You Really Understand JavaScript?
  • 12. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 2 Do You Really Understand JavaScript? Recommended JavaScript tutorials If you are fairly new to JavaScript, you might want to read one of the following free tutorials during the preparation week of this course: Codecademy: JavaScript Fundamentals The JavaScript Tutorial JavaScript Garden JavaScript Developer Documentation
  • 13. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 3 Do You Really Understand JavaScript? How to test your knowledge Do self-test questions for this unit Enjoy the rest of this video as a recap! Use documentation link in question to learn the concept! while (aQuestions) { aQuestions.pop().answer(); } You really understand JavaScript!
  • 14. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 4 Do You Really Understand JavaScript? JavaScript & browsers JavaScript code is interpreted at runtime All modern desktop and mobile browsers are highly optimized for processing JavaScript code with their JavaScript engines. JavaScript is properly known as ECMAScript Browser engines implement ECMAScript, but with slight variations in the range of supported features and implementation details (e.g. the exact details of how XMLHttpRequest, XML API, and the DOM API have been implemented vary between browsers). Client-side JavaScript is executed in a sandbox For security reasons, you cannot access the local (file) system from a Web page. Internet Explorer Mozilla Firefox Safari Google Chrome Chakra SpiderMonkey Nitro V8
  • 15. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 5 Do You Really Understand JavaScript? Client-side scripting All presentation logic is done on the client Only resources (HTML file, code, data) are loaded from the Web server. The code is then processed on the client to create DOM elements on the screen. JavaScript is single-threaded There is only one JavaScript thread per window. Other activities like rendering or downloading resources may be managed by separate threads but can be blocked by scripts. Data is loaded with XHR requests During execution, data is often requested from a back-end system such as an OData or a REST-based service. The data is usually supplied in JSON or XML format. DBJSON or XML XHR Requests Compose UI
  • 16. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 6 Do You Really Understand JavaScript? Linguistic inheritance of JavaScript JavaScript Java Self Scheme Perl JS
  • 17. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 7 There are only 6 data types in JavaScript:  Number double-precision 64-bit format (IEEE 754)  String Sequences of Unicode characters  Boolean True or false  Object Function / Array / Date / RegExp  Null Deliberate non-value  Undefined Indicates an uninitialized value “5” * “2”  10 Typeof (“Hello” + 1)  String 1 == true  True 1 === true  False var iAmount = 23; var sString = “Hello”; Do You Really Understand JavaScript? Types and implicit conversions Beware of truthy/falsy values, always use “===” for strict checks Implicit type conversions can be nice or dangerous; try to avoid them Use Hungarian notation
  • 18. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 8 Do You Really Understand JavaScript? Objects Objects are unordered collections of name-value pairs Names are called “properties”, values can be of any type. If it is a function, it becomes an object “method”. Objects may have a constructor function Attributes can then be stored and accessed with the “this” pointer in the current context Everything except for core types is an object Even functions are just objects “with an executable part” Inheritance is not based on classes but prototypes Properties and/or methods can be added to the object itself or to the prototype and deleted at runtime. // object literal var oObjLiteral = {}; // an Object object var oObject = new Object(); // properties referenced using dot notation oObject.property; oObject.method([parameter]); // properties referenced using array notation oObject["property"]; // adding a property to an object oObject.newProperty = "Property Value"; // deleting properties or methods delete oObject.myMethod;
  • 19. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 9 Do You Really Understand JavaScript? Functions Functions are objects with an executable part They can be created and destroyed dynamically. Since a function is just an object, in addition to its executable code you can also assign your own properties (name, arguments, …) to it. Functions can be passed as arguments to other functions Functions are frequently passed as parameters to other functions in JavaScript. This is the basis upon which “asynchronous callbacks” work. JavaScript variables exist within the scope of a function All variables declared with a function are visible to all coding within that function. This is known as “function scope”. There is no block scope in JavaScript. // function expression (anonymous) var fnAdd = function(a, b) { return a + b; }; // function declaration (named) function add(a, b) { return a + b; } // function calls fnAdd(2,3); // 5 add(2,3); // 5
  • 20. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 10 Do You Really Understand JavaScript? Asynchronous processing Be careful! JavaScript is single-threaded Long-running or resource-intensive tasks should be performed asynchronously, otherwise the UI might become unresponsive and your users might see a message like this.  Asynchronous module definition (AMD) Helper tools for module loading: requireJS, sap.ui.define  Divide long-running tasks with setTimeout(…, 0) It will continue with the execution immediately after all other tasks are processed  Use callback functions, event listeners, promises, and framework hooks These patterns help you to efficiently structure and process application logic  Use asynchronous XHR calls Avoid synchronous server requests because script execution will pause until the resource is loaded
  • 21. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 11 Do You Really Understand JavaScript? Method chaining (cascading) If a function returns a reference to the current context then a programming technique called method chaining can be used Method chaining is widely used in many JavaScript frameworks including jQuery and SAPUI5  Chaining is a nice time-saver (the element in the example has to be looked up only once)  Debugging long method chains is more difficult jQuery("#myButton") .text("Click me") .css("color", "#c00") .bind("click", function(e) { alert("Thanks for clicking"); });
  • 22. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 12 Do You Really Understand JavaScript? Closures Nested functions inherit the scope of their parent function Closures adapt to variable changes, even if the changes happen a long time after the function was created. So you have to think of a closure as of a “live” thing. “A closure is a special kind of object that combines two things: a function, and the environment in which that function was created. The environment consists of any local variables that were in-scope at the time that the closure was created.” Source: MDN function outer(param) { var attr1 = “One”; inner(); // the nested function inherits all // the outer variables and parameters function inner() { var attr2 = “Two”; alert(attr1); // “One” alert(attr2); // “Two” alert(param); // “Three” } } outer(“Three”);
  • 23. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 13 Do You Really Understand JavaScript? Scope: this or that? var myObj = { whatsThis : function(that) { setTimeout(function () { // this is the global window object console.log(this); }, 0); } }; var that = this; setTimeout(function () { // access “that” closure // for working with the context }, 0); setTimeout(function () { // this is still the context }.bind(this), 0); this is a reference to the current execution context and depends on the scope  Global scope: window  Object scope: current object instance  Function scope: depends on us! When using callbacks, the context may be lost this in an asynchronous callback function is by default the global window object! Often, the “that” or “bind” construct is used to build a closure and ensure that the value of this is set correctly.
  • 24. Week 0 Unit 3: SAPUI5 SDK – Demo Kit
  • 25. Public© 2015 SAP SE or an SAP affiliate company. All rights reserved. 2 SAPUI5 SDK – Demo Kit Releases Latest release: https://sapui5.hana.ondemand.com/ https://openui5.hana.ondemand.com/ Beta OpenUI5 release: https://openui5beta.hana.ondemand.com/ Specific release: https://sapui5.hana.ondemand.com/1.28.8/ https://openui5.hana.ondemand.com/1.32.5/ Your ABAP release: https://<host>:<port>/sap/bc/ui5_demokit/
  • 26. Public© 2015 SAP SE or an SAP affiliate company. All rights reserved. 3 SAPUI5 SDK – Demo Kit Explored Metadata Full Screen Source Code Preview Settings Filter Controls Samples
  • 27. Public© 2015 SAP SE or an SAP affiliate company. All rights reserved. 4 SAPUI5 SDK – Demo Kit Communities and social networks SCN Community: http://scn.sap.com/community/developer-center/front-end Stackoverflow: http://stackoverflow.com/questions/tagged/sapui5 Slack: http://slackui5invite.herokuapp.com/ YouTube: https://www.youtube.com/openui5videos Twitter: https://twitter.com/OpenUI5 (@openui5) Blog: http://openui5.tumblr.com/
  • 29. Public© 2015 SAP SE or an SAP affiliate company. All rights reserved. 6 © 2015 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see http://global12.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE’s or its affiliated companies’ strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forward- looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions.
  • 30. Week 0 Unit 4: Debugging and Troubleshooting
  • 31. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 2 Debugging and Troubleshooting SAPUI5 support tools Technical information dialog  CTRL + ALT + SHIFT + P  Main features: enabling of debug sources & checking of SAPUI5 version  Works on our supported desktop browsers Diagnostics window  CTRL + ALT + SHIFT + S  Main features: SAPUI5 control tree, view & change control properties & bindings  Works on our supported desktop browsers UI5 inspector  Chrome developer tools extension (F12)  Main features: SAPUI5 control tree, view & change control properties & bindings (more to come)  Works only with Google Chrome
  • 32. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 3 Debugging and Troubleshooting Useful SAPUI5 methods for debugging Retrieving a control in the console  yourControl = sap.ui.getCore().byId(“yourID”);  yourControl = $($0).control(0); (if the respective DOM element is selected in the Elements tab) Getting information about a control  yourControl.getMetadata()  useful to check for the class details  yourControl.getParent()  returns the parent control in the control tree  yourControl.  shows you all available methods in the console
  • 33. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 4 Debugging and Troubleshooting Tips & tricks General  Use Google Chrome if possible for debugging  Check the console log for errors (press F12 key in Chrome)  Set breakpoints and step through your code to understand where something is going wrong SAPUI5  If your control is not visible, check in the DOM inspector if your respective HTML exists  Use debug sources for easier debugging  Check if your respective file is loaded or if there is a 404 (Not Found) error on the Network tab  Check if your respective file contains the changes you made on the Sources tab  Have a look at the Troubleshooting section in the Demo Kit
  • 35. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 6 © 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see http://global12.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE’s or its affiliated companies’ strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forward- looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions.
  • 36. Week 0 Unit 5: A Glance at the Coding Exercises
  • 37. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 2 A Glance at the Coding Exercises A typical unit this course – Learning by doing Watch the video ?! Do Self-Test optional but recommended Coding Exercise Validate Code write.some.code();
  • 38. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 3 A Glance at the Coding Exercises How to do a coding exercise write.some. code(); Unit Exercise Handout SAP Web IDE SAP Web IDE Testing Tools Validator Script
  • 39. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 4 A Glance at the Coding Exercises How to run the validator Press the Button or F9 Preparation: Include validator script in index.html and run the app Select a Unit Check Results 1 2 3
  • 40. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 5 Read Task Coding Exercise Unlock PointsValidate Code write.some.code(); Task Backlog 08154711 A Glance at the Coding Exercises How to do a bonus exercise
  • 42. Public© 2016 SAP SE or an SAP affiliate company. All rights reserved. 7 © 2016 SAP SE or an SAP affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE or an SAP affiliate company. SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE (or an SAP affiliate company) in Germany and other countries. Please see http://global12.sap.com/corporate-en/legal/copyright/index.epx for additional trademark information and notices. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP SE or its affiliated companies shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE or SAP affiliate company products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this document or any related presentation, or to develop or release any functionality mentioned therein. This document, or any related presentation, and SAP SE’s or its affiliated companies’ strategy and possible future developments, products, and/or platform directions and functionality are all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation to deliver any material, code, or functionality. All forward- looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from expectations. Readers are cautioned not to place undue reliance on these forward-looking statements, which speak only as of their dates, and they should not be relied upon in making purchasing decisions.