SlideShare a Scribd company logo
1 of 3
Download to read offline
3/8/2017 Getting started with SAP Fiori, NetWeaver Gateway & SAPUI5
http://www.bluefinsolutions.com/blogs/john­murray/april­2014/getting­started­with­sap­fiori,­netweaver­gateway?cookiesViewed=true 1/3
So you’ve heard all about SAP Fiori, NetWeaver Gateway and more recently
SAPUI5 and are looking to get started, but unsure how. There is a vast
amount of information available on all of these topics, and as a result it can
be very difficult to get up and running.
In this post I’m going to distil some of the information and give you the material you need to start
building apps.
SAP NetWeaver Gateway
Gateway is nothing new in the SAP world, however with the growing popularity of mobile applications
and SAPUI5, it is becoming more prevalent. At its most simple level SAP NetWeaver Gateway is used
to expose information from one or more systems, usually SAP ones, to the outside world.
If you do not currently have access to a Gateway enabled server you can download and install a trial,
and guides for doing this on various operating systems can be found here.
Some words of advice here from Bluefin’s own Ron Sargeant, and King of the Gateway SCN, are that
if you  just want  to play around at consuming services, then the service consumption trial is the
quickest and easiest way to do this. The other trials are rather long­winded and time­consuming and
only of interest if you are planning to write your own services. It’s probably simpler to set up a real
sandbox server within your business environment as the infrastructure is already in place and
Gateway is a relatively small bolt­on. Whereas with the SAP trials you are installing a SAP
infrastructure in order to bolt Gateway on, so it’s bigger, time­limited and prone to issues.
At this point it is also worth mentioning the landscape, as this is something which will need to be
decided on early on, especially if you are enterprise oriented. The recommended landscape for
Gateway is to have it on its own server (hub), with a connection to backend (“BEP­enabled”) systems.
There are however several deployment options available and these are documented SAP NetWeaver
Gateway configuration guide.
Once you have access to a SAP NetWeaver Gateway server, I’d recommend reading How to develop
a Gateway service using code based implementation, which will teach you how to quickly create
an OData service with Gateway. OData is a standardised protocol for creating and consuming data
APIs, which builds on core protocols like HTTP and methodologies like REST. This results in a
uniform way to expose full­featured data APIs.
To find out how to add filtering capabilities to an OData service, check out How to develop query
options for an OData Service using code­based implementation. To round off this introduction to
Gateway its worth working through Building your first simple Gateway service by Lindsay Stanger on
creating simple Gateway services.
With these development frameworks there is a more clearly defined separation between the data
layer and the UI/Application and therefore you will need ABAP and JavaScript skills to manage it all
3/8/2017 Getting started with SAP Fiori, NetWeaver Gateway & SAPUI5
http://www.bluefinsolutions.com/blogs/john­murray/april­2014/getting­started­with­sap­fiori,­netweaver­gateway?cookiesViewed=true 2/3
yourself. Alternatively you can cover one half and let somebody else cover the other. All of this also
comes with the need to understand basic design patterns that can and should be adopted. The
content I’ve referred to above provide “outside­in” design approaches to modelling. This is different to
a lot of the material out there which takes an “inside­out” approach, which should be avoided where
possible. If you do have “inside­out” modelling then it’s worth reading Improved Inside­Out
Modeling on how to do it well.
As you get to grips with SAP NetWeaver Gateway you might want to follow the Gateway Developer
Centre and the SAP NetWeaver Gateway community on the SCN for more content. One final article
worth reading, even though we have not yet covered SAPUI5, is Creating a SAPUI5 starter
application with the Gateway Eclipse plugin by Ron which covers how to use an Eclipse plugin to
generate a basic SAPUI5 app from a Gateway service.
This concludes our introduction to Gateway so grab a coffee and I’ll see you in a moment where we’ll
get started with SAPUI5.
SAPUI5
SAPUI5, a relatively new addition to SAP’s technology set, provides a quick and easy way to create
cross­platform user­interfaces which run on almost any device. DJ Adams has written a couple of blog
posts which describe what SAPUI5 is and the direction it’s headed in. They are: SAPUI5­ The future
direction of SAP UI Development? and The essentials: SAPUI5, OpenUI5 and Fiori
Now that we understand what SAPUI5 is, it’s time to get you up and running with it. Step 1, download
and set up SAPUI5 on your machine. The guide I followed is Getting started with SAPUI5: alternative
guide. It will take you through installing SAPUI5, setting up a local Apache server and setting up Git.
In case you skipped the “Getting started with SAPUI5” because you are already set up with SAPUI5,
the last step of the article advises downloading the excellent sapui5bin as it contains a large number
of example apps which are a fantastic reference point when you’re creating your own applications. For
more information and to download the sapui5bin please see here.
It is worth saying at this point that if you would prefer to use the Node.js platform instead of Apache
you can very easily do this and I refer you to this guide. If you choose to go down this route Brenton
O’Callaghan has created JADS which is a Node.js development web server designed for SAPUI5.
Before continuing further you must ensure you have a text editor on your machine. Whilst there are a
few several options available there are a few which I recommend.
1. If you prefer a light­weight but highly extensible text editor I would say to use Sublime Text. This
is my personal preference. If you chose Sublime Text then I would recommend downloading
the SublimeUI5 package by DJ which adds many very helpful snippets of code which speeds up
your development of SAPUI5 applications
2. If you are more accustomed to or prefer using an IDE then I would suggest JetBrains
WebStorm. I recommend this over Eclipse because it is a more pleasant environment to work in.
However there is less documentation than there is for Eclipse so this should be taken into
account when making your choice
3. The Eclipse IDE is the third option as it SAP’s current “go to” IDE; however this could change in
the future. As stated above it is not as nice to use as WebStorm however there is more
3/8/2017 Getting started with SAP Fiori, NetWeaver Gateway & SAPUI5
http://www.bluefinsolutions.com/blogs/john­murray/april­2014/getting­started­with­sap­fiori,­netweaver­gateway?cookiesViewed=true 3/3
documentation available.
Whilst developing SAPUI5 applications it is very helpful to refer to the API reference and view
the demo apps.
This collection of posts by DJ will guide you through creating a SAPUI5 application using best
practice, such as XML views and data models. In the next section, on SAP Fiori, we will cover some
exercises which will guide you through building a Fiori like app in SAPUI5. Time to get another coffee
and I’ll see you in the next section.
SAP Fiori
SAP Fiori, much like SAPUI5, is fairly new to SAP with the first wave of Fiori apps appearing last
summer. With the growing popularity of SAPUI5 it is gaining momentum quickly and is at the forefront
of SAP’s moves to reinvigorate the user­experience of SAP products. This section and Fiori in general
incorporates elements from both SAPUI5 and Gateway, so it is important to highlight that in order to
customise SAP Fiori you will need knowledge of both. Brenton has written this excellent blog on how
to Getting the most from your SAP Fiori investment which covers what SAP Fiori is at a basic level
and how to get started with and implement your SAP Fiori solution.
The next article I'd recommend is SAP Fiori Toolkit which covers the use of an Eclipse plugin which
simplifies the standard Fiori development process. To extend Fiori applications I would
read Extensibility which outlines the general steps to take, and then for more information, check
out Extensibility of SAP Fiori Apps. The SAP Fiori Launchpad is the entry point for accessing Fiori
applications on mobile or desktop devices, and it can be customised in various ways. For more details
on how to this I would recommend this area of the SAP help website which covers the options
available.
It is now time to build some SAP Fiori like apps yourself using SAPUI5. This collection of tutorials will
take you through a series of 10 exercises that cover a wide range of key SAPUI5 concepts and Fiori
design principles.

More Related Content

Viewers also liked

NetWeaver Developer Studio for New-Beas
NetWeaver Developer Studio for New-BeasNetWeaver Developer Studio for New-Beas
NetWeaver Developer Studio for New-BeasChander445
 
SAP Teched 2016 best practive BPMN development
SAP Teched 2016 best practive BPMN developmentSAP Teched 2016 best practive BPMN development
SAP Teched 2016 best practive BPMN developmentDaniel Graversen
 
Nwdi Overview And Features
Nwdi Overview And FeaturesNwdi Overview And Features
Nwdi Overview And Featuresakrishnanr
 
SAP Fiori Development from Scratch
SAP Fiori Development from ScratchSAP Fiori Development from Scratch
SAP Fiori Development from ScratchJose Nunes
 
Open sap fiori1_week_01_unit_01_courseintro
Open sap fiori1_week_01_unit_01_courseintroOpen sap fiori1_week_01_unit_01_courseintro
Open sap fiori1_week_01_unit_01_courseintroNagendra Babu
 
Open sap fiori1_week_02_unit_01_deplov
Open sap fiori1_week_02_unit_01_deplovOpen sap fiori1_week_02_unit_01_deplov
Open sap fiori1_week_02_unit_01_deplovNagendra Babu
 
SAP TechEd 2016 when_to_use_fiori_or_sap_screen_personas
SAP TechEd 2016 when_to_use_fiori_or_sap_screen_personasSAP TechEd 2016 when_to_use_fiori_or_sap_screen_personas
SAP TechEd 2016 when_to_use_fiori_or_sap_screen_personasPeter Spielvogel
 

Viewers also liked (10)

NetWeaver Developer Studio for New-Beas
NetWeaver Developer Studio for New-BeasNetWeaver Developer Studio for New-Beas
NetWeaver Developer Studio for New-Beas
 
Lokent Banswani_Resume
Lokent Banswani_ResumeLokent Banswani_Resume
Lokent Banswani_Resume
 
SAP Teched 2016 best practive BPMN development
SAP Teched 2016 best practive BPMN developmentSAP Teched 2016 best practive BPMN development
SAP Teched 2016 best practive BPMN development
 
Fiori Presentation
Fiori PresentationFiori Presentation
Fiori Presentation
 
Nwdi Overview And Features
Nwdi Overview And FeaturesNwdi Overview And Features
Nwdi Overview And Features
 
SAP Fiori Development from Scratch
SAP Fiori Development from ScratchSAP Fiori Development from Scratch
SAP Fiori Development from Scratch
 
Open sap fiori1_week_01_unit_01_courseintro
Open sap fiori1_week_01_unit_01_courseintroOpen sap fiori1_week_01_unit_01_courseintro
Open sap fiori1_week_01_unit_01_courseintro
 
Open sap fiori1_week_02_unit_01_deplov
Open sap fiori1_week_02_unit_01_deplovOpen sap fiori1_week_02_unit_01_deplov
Open sap fiori1_week_02_unit_01_deplov
 
SAP TechEd 2016 when_to_use_fiori_or_sap_screen_personas
SAP TechEd 2016 when_to_use_fiori_or_sap_screen_personasSAP TechEd 2016 when_to_use_fiori_or_sap_screen_personas
SAP TechEd 2016 when_to_use_fiori_or_sap_screen_personas
 
cuaderno de practicas excel
cuaderno de practicas excelcuaderno de practicas excel
cuaderno de practicas excel
 

Similar to Getting started with sap fiori, net weaver gateway & sapui5

ION Belfast - IPv6 Success Stories: Network Operators Tell All! - Ian Farrer
ION Belfast - IPv6 Success Stories: Network Operators Tell All! - Ian FarrerION Belfast - IPv6 Success Stories: Network Operators Tell All! - Ian Farrer
ION Belfast - IPv6 Success Stories: Network Operators Tell All! - Ian FarrerDeploy360 Programme (Internet Society)
 
UofT SMARTWEEK 2014 - UX + IoT
UofT SMARTWEEK 2014 - UX + IoTUofT SMARTWEEK 2014 - UX + IoT
UofT SMARTWEEK 2014 - UX + IoTWayne Pau
 
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
 
fiori1-RecordOfAchievement
fiori1-RecordOfAchievementfiori1-RecordOfAchievement
fiori1-RecordOfAchievementRichard Williams
 
fiori1-RecordOfAchievement (1)
fiori1-RecordOfAchievement (1)fiori1-RecordOfAchievement (1)
fiori1-RecordOfAchievement (1)Bince Mathew
 
Introduction To SAP Fiori UX - record of achievement
Introduction To SAP Fiori UX - record of achievementIntroduction To SAP Fiori UX - record of achievement
Introduction To SAP Fiori UX - record of achievementEliram Yakar
 
Sap Activate introducing sa ps next generation, agile-based methodology
Sap Activate   introducing sa ps next generation, agile-based methodologySap Activate   introducing sa ps next generation, agile-based methodology
Sap Activate introducing sa ps next generation, agile-based methodologySilvestre Oliveira, PMP®, ITIL®
 
Sap activate introducing sa ps next generation, agile-based methodology
Sap activate   introducing sa ps next generation, agile-based methodologySap activate   introducing sa ps next generation, agile-based methodology
Sap activate introducing sa ps next generation, agile-based methodologySantosh Peddi
 
Open sap ui51_week0_all_slides
Open sap ui51_week0_all_slidesOpen sap ui51_week0_all_slides
Open sap ui51_week0_all_slidesSUNIL KUMAR REDDY
 
SAP TechEd 2017 Fiori and SAP Screen Personas NET 52541
SAP TechEd 2017 Fiori and SAP Screen Personas NET 52541SAP TechEd 2017 Fiori and SAP Screen Personas NET 52541
SAP TechEd 2017 Fiori and SAP Screen Personas NET 52541Peter Spielvogel
 
fiori1-RecordOfAchievement
fiori1-RecordOfAchievementfiori1-RecordOfAchievement
fiori1-RecordOfAchievementVandana Thakur
 
fiux1-RecordOfAchievement
fiux1-RecordOfAchievementfiux1-RecordOfAchievement
fiux1-RecordOfAchievementKanav Arora
 
fiori1-RecordOfAchievement (1)
fiori1-RecordOfAchievement (1)fiori1-RecordOfAchievement (1)
fiori1-RecordOfAchievement (1)Prajval Shetty
 
fiori1-RecordOfAchievement
fiori1-RecordOfAchievementfiori1-RecordOfAchievement
fiori1-RecordOfAchievementImran Khan
 

Similar to Getting started with sap fiori, net weaver gateway & sapui5 (20)

ION Belfast - IPv6 Success Stories: Network Operators Tell All! - Ian Farrer
ION Belfast - IPv6 Success Stories: Network Operators Tell All! - Ian FarrerION Belfast - IPv6 Success Stories: Network Operators Tell All! - Ian Farrer
ION Belfast - IPv6 Success Stories: Network Operators Tell All! - Ian Farrer
 
UofT SMARTWEEK 2014 - UX + IoT
UofT SMARTWEEK 2014 - UX + IoTUofT SMARTWEEK 2014 - UX + IoT
UofT SMARTWEEK 2014 - UX + IoT
 
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...
 
fiori1-RecordOfAchievement
fiori1-RecordOfAchievementfiori1-RecordOfAchievement
fiori1-RecordOfAchievement
 
06.fiori1-RecordOfAchievement
06.fiori1-RecordOfAchievement06.fiori1-RecordOfAchievement
06.fiori1-RecordOfAchievement
 
fiori1-RecordOfAchievement (1)
fiori1-RecordOfAchievement (1)fiori1-RecordOfAchievement (1)
fiori1-RecordOfAchievement (1)
 
OpenUI5
OpenUI5OpenUI5
OpenUI5
 
SAP Developers Update
SAP  Developers UpdateSAP  Developers Update
SAP Developers Update
 
Introduction To SAP Fiori UX - record of achievement
Introduction To SAP Fiori UX - record of achievementIntroduction To SAP Fiori UX - record of achievement
Introduction To SAP Fiori UX - record of achievement
 
Sap Activate introducing sa ps next generation, agile-based methodology
Sap Activate   introducing sa ps next generation, agile-based methodologySap Activate   introducing sa ps next generation, agile-based methodology
Sap Activate introducing sa ps next generation, agile-based methodology
 
Sap activate introducing sa ps next generation, agile-based methodology
Sap activate   introducing sa ps next generation, agile-based methodologySap activate   introducing sa ps next generation, agile-based methodology
Sap activate introducing sa ps next generation, agile-based methodology
 
Open sap ui51_week0_all_slides
Open sap ui51_week0_all_slidesOpen sap ui51_week0_all_slides
Open sap ui51_week0_all_slides
 
Bof - grey haired abap
Bof - grey haired abapBof - grey haired abap
Bof - grey haired abap
 
SAP TechEd 2017 Fiori and SAP Screen Personas NET 52541
SAP TechEd 2017 Fiori and SAP Screen Personas NET 52541SAP TechEd 2017 Fiori and SAP Screen Personas NET 52541
SAP TechEd 2017 Fiori and SAP Screen Personas NET 52541
 
fiori1-RecordOfAchievement
fiori1-RecordOfAchievementfiori1-RecordOfAchievement
fiori1-RecordOfAchievement
 
fiux1-RecordOfAchievement
fiux1-RecordOfAchievementfiux1-RecordOfAchievement
fiux1-RecordOfAchievement
 
fiori1-RecordOfAchievement
fiori1-RecordOfAchievementfiori1-RecordOfAchievement
fiori1-RecordOfAchievement
 
fiori1-RecordOfAchievement (1)
fiori1-RecordOfAchievement (1)fiori1-RecordOfAchievement (1)
fiori1-RecordOfAchievement (1)
 
fiori1-RecordOfAchievement
fiori1-RecordOfAchievementfiori1-RecordOfAchievement
fiori1-RecordOfAchievement
 
fiori1-RecordOfAchievement
fiori1-RecordOfAchievementfiori1-RecordOfAchievement
fiori1-RecordOfAchievement
 

More from Nagendra Babu

Simple exercise on o data and sap ui5 application for the basic crud operatio...
Simple exercise on o data and sap ui5 application for the basic crud operatio...Simple exercise on o data and sap ui5 application for the basic crud operatio...
Simple exercise on o data and sap ui5 application for the basic crud operatio...Nagendra Babu
 
Sap netweaver gateway_2.0_sap_net_weaver
Sap netweaver gateway_2.0_sap_net_weaverSap netweaver gateway_2.0_sap_net_weaver
Sap netweaver gateway_2.0_sap_net_weaverNagendra Babu
 
Sap net weaver gateway and o data - sap netweaver gateway - sap library
Sap net weaver gateway and o data - sap netweaver gateway - sap librarySap net weaver gateway and o data - sap netweaver gateway - sap library
Sap net weaver gateway and o data - sap netweaver gateway - sap libraryNagendra Babu
 
Sap fiori ll11 – consultants should know about o data troubleshooting sap b...
Sap fiori ll11 – consultants should know about o data troubleshooting   sap b...Sap fiori ll11 – consultants should know about o data troubleshooting   sap b...
Sap fiori ll11 – consultants should know about o data troubleshooting sap b...Nagendra Babu
 
E4832528 5a7c-0010-82c7-eda71af511fa
E4832528 5a7c-0010-82c7-eda71af511faE4832528 5a7c-0010-82c7-eda71af511fa
E4832528 5a7c-0010-82c7-eda71af511faNagendra Babu
 
Ac fr ogc7-mj_8ycozkm9utakolnuvpoehmpvpq8scic8rd_r4tapovstrv4txbk5mffoolznngh...
Ac fr ogc7-mj_8ycozkm9utakolnuvpoehmpvpq8scic8rd_r4tapovstrv4txbk5mffoolznngh...Ac fr ogc7-mj_8ycozkm9utakolnuvpoehmpvpq8scic8rd_r4tapovstrv4txbk5mffoolznngh...
Ac fr ogc7-mj_8ycozkm9utakolnuvpoehmpvpq8scic8rd_r4tapovstrv4txbk5mffoolznngh...Nagendra Babu
 
Ac409c27 5a7c-0010-82c7-eda71af511fa
Ac409c27 5a7c-0010-82c7-eda71af511faAc409c27 5a7c-0010-82c7-eda71af511fa
Ac409c27 5a7c-0010-82c7-eda71af511faNagendra Babu
 
44779e8c 5b7c-0010-82c7-eda71af511fa
44779e8c 5b7c-0010-82c7-eda71af511fa44779e8c 5b7c-0010-82c7-eda71af511fa
44779e8c 5b7c-0010-82c7-eda71af511faNagendra Babu
 
160d74ec 597c-0010-82c7-eda71af511fa
160d74ec 597c-0010-82c7-eda71af511fa160d74ec 597c-0010-82c7-eda71af511fa
160d74ec 597c-0010-82c7-eda71af511faNagendra Babu
 

More from Nagendra Babu (10)

Simple exercise on o data and sap ui5 application for the basic crud operatio...
Simple exercise on o data and sap ui5 application for the basic crud operatio...Simple exercise on o data and sap ui5 application for the basic crud operatio...
Simple exercise on o data and sap ui5 application for the basic crud operatio...
 
Sap netweaver gateway_2.0_sap_net_weaver
Sap netweaver gateway_2.0_sap_net_weaverSap netweaver gateway_2.0_sap_net_weaver
Sap netweaver gateway_2.0_sap_net_weaver
 
Sap fiori tutorial
Sap fiori tutorialSap fiori tutorial
Sap fiori tutorial
 
Sap net weaver gateway and o data - sap netweaver gateway - sap library
Sap net weaver gateway and o data - sap netweaver gateway - sap librarySap net weaver gateway and o data - sap netweaver gateway - sap library
Sap net weaver gateway and o data - sap netweaver gateway - sap library
 
Sap fiori ll11 – consultants should know about o data troubleshooting sap b...
Sap fiori ll11 – consultants should know about o data troubleshooting   sap b...Sap fiori ll11 – consultants should know about o data troubleshooting   sap b...
Sap fiori ll11 – consultants should know about o data troubleshooting sap b...
 
E4832528 5a7c-0010-82c7-eda71af511fa
E4832528 5a7c-0010-82c7-eda71af511faE4832528 5a7c-0010-82c7-eda71af511fa
E4832528 5a7c-0010-82c7-eda71af511fa
 
Ac fr ogc7-mj_8ycozkm9utakolnuvpoehmpvpq8scic8rd_r4tapovstrv4txbk5mffoolznngh...
Ac fr ogc7-mj_8ycozkm9utakolnuvpoehmpvpq8scic8rd_r4tapovstrv4txbk5mffoolznngh...Ac fr ogc7-mj_8ycozkm9utakolnuvpoehmpvpq8scic8rd_r4tapovstrv4txbk5mffoolznngh...
Ac fr ogc7-mj_8ycozkm9utakolnuvpoehmpvpq8scic8rd_r4tapovstrv4txbk5mffoolznngh...
 
Ac409c27 5a7c-0010-82c7-eda71af511fa
Ac409c27 5a7c-0010-82c7-eda71af511faAc409c27 5a7c-0010-82c7-eda71af511fa
Ac409c27 5a7c-0010-82c7-eda71af511fa
 
44779e8c 5b7c-0010-82c7-eda71af511fa
44779e8c 5b7c-0010-82c7-eda71af511fa44779e8c 5b7c-0010-82c7-eda71af511fa
44779e8c 5b7c-0010-82c7-eda71af511fa
 
160d74ec 597c-0010-82c7-eda71af511fa
160d74ec 597c-0010-82c7-eda71af511fa160d74ec 597c-0010-82c7-eda71af511fa
160d74ec 597c-0010-82c7-eda71af511fa
 

Recently uploaded

Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docxPoojaSen20
 

Recently uploaded (20)

Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
MENTAL STATUS EXAMINATION format.docx
MENTAL     STATUS EXAMINATION format.docxMENTAL     STATUS EXAMINATION format.docx
MENTAL STATUS EXAMINATION format.docx
 

Getting started with sap fiori, net weaver gateway & sapui5