Using SAPUI5 to Enhance LSO Manager Capabilities Rob Becker & Steve Sweeney Lockheed Martin SESSION CODE: AD124

Size: px
Start display at page:

Download "Using SAPUI5 to Enhance LSO Manager Capabilities Rob Becker & Steve Sweeney Lockheed Martin SESSION CODE: AD124"

Transcription

1

2 Using SAPUI5 to Enhance LSO Manager Capabilities Rob Becker & Steve Sweeney Lockheed Martin SESSION CODE: AD124

3 Who Are We Lockheed Martin Corporation Global defense, security, aerospace, and advanced technology company. The majority of Lockheed Martin's business is with the U.S. Department of Defense and U.S. federal government agencies. Lockheed Martin operates in five business areas Aeronautics, Information Systems & Global Solutions, Missiles and Fire Control, Mission Systems, and Training and Space Systems. 112,000 employees worldwide 2014 Sales of 45.6 Billion USD The Corporation's New York Stock Exchange symbol is LMT and our webaddress is

4 Lockheed Martin and SAP 1996: First licensed SAP 1999: One of the first certified SAP Competency Centers 2012: HCM Enterprise Learning Solution (LSO) The Lockheed Martin SAP Landscape 10 SAP Finance and Operations systems, including international Enterprise Procurement/Accounts Payable Single Solution Manager system Various BW, Business Objects, HANA

5 Why SAPUI5 and Fiori Many of our managers are on the go and require access to the learning system via mobile devices Our solution was to use SAPUI5 and Fiori Launchpad to create a device agnostic web application that would give our managers the ability track their employees training not only on mobile devices but also from our existing portal infrastructure

6 Learning Points SAP components required for SAPUI5 and Fiori Launchpad Configuring Netweaver Gateway Creating an OData service Creating an SAPUI5 application Configuring Fiori Launchpad and integrating an SAPUI5 application Live Demo Lessons learned and best practices

7 Required Components User Interface Add-On 1.0 for SAP NetWeaver SPS 11 SAP NetWeaver Gateway 2.0 SPS 09

8 Service Activation Activate Services SICF /sap/bc/bsp/ui2 /sap/bc/ui2 /sap/bc/ui2suite /sap/bc/ui5_demokit /sap/bc/ui5_ui5 /sap/opu /sap/public/bc/icf /sap/public/bc/ui2 /sap/public/bc/ui5_ui5

9 Learning Points SAP components required for SAPUI5 and Fiori Launchpad Configuring Netweaver Gateway Creating an OData service Creating an SAPUI5 application Configuring Fiori Launchpad and integrating an SAPUI5 application Live Demo Lessons learned and best practices

10 Netweaver Gateway Configuration Step 1 Step 2 Step 3 Activate or Deactivate SAP NetWeaver Gateway SPRO Click on the activate button to turn on the gateway Manage SAP System Aliases SPRO LOCAL system alias is default SAP NetWeaver Gateway Settings SPRO Create gateway destinations one for each client

11 Learning Points SAP components required for SAPUI5 and Fiori Launchpad Configuring Netweaver Gateway Creating an OData service Creating an SAPUI5 application Configuring Fiori Launchpad and integrating an SAPUI5 application Live Demo Lessons learned and best practices

12 OData Services Configuration Step 1 Step 2 Step 3 Create data structures SE11 ZHS_SAPUI5_EMPLIST, ZHS_SAPUI5_CRSLIST Create new OData service and import data structures as new entities SEGW EmployeeList/EmployeeListSet, CourseList/CourseListSet Create associations between entities SEGW Principle: EmployeeList, Dependent: CourseList

13 OData Services Configuration Step 4 Step 5 Step 6 Register service to create runtime artifacts SEGW Generates supporting classes and methods for the OData service Redefine specific methods created by registering service SE80 GetEntity and GetEntityset methods for DPC_EXT class Assign SAP system aliases to new OData service SPRO This alias was created during Netweaver Gateway configuration

14 Learning Points SAP components required for SAPUI5 and Fiori Launchpad Configuring Netweaver Gateway Creating an OData service Creating an SAPUI5 application Configuring Fiori Launchpad and integrating an SAPUI5 application Live Demo Lessons learned and best practices

15 SAPUI5 Development Environment Web IDE Browser based IDE Cloud based solution Local installation for as trial Eclipse Kepler/Luna AppBuilder Browser based IDE Local development environment Local development environment SAPUI5 plugins required

16 SAPUI5 Development Environment Setting Up Eclipse Download and install Java JRE or JDK Download and install Eclipse Eclipse IDE for Java EE Developers Kepler or Luna Download and install a Java Web Server and integrate into Eclipse IDE Jetty Apache Tomcat Install SAPUI5 plugins Reference oper-center/frontend/blog/2013/06/01/how-to-installa-basic-development-environmentfor-sapui5

17 Creating An SAPUI5 Application SAPUI5 Best Practices MVC application design XML development paradigm Separation of display logic and other code OData services SAPUI5 designed to work best with OData Build application to work with mobile devices as lowest common denominator Reference

18 Creating An SAPUI5 Application Launch Eclipse and create a new SAPUI5 project

19 Creating An SAPUI5 Application Create MVC application using XML paradigm Used application design from 10 step exercise as a template for creating our custom application Add bootstrap and shell information to index.html Bootstrap Shell

20 Creating An SAPUI5 Application Referencing the OData service in Component.js OData Ref

21 Creating An SAPUI5 Application Referencing the OData service in Master.view.xml OData Ref

22 Creating An SAPUI5 Application Referencing the OData service in Detail.view.xml OData Ref

23 Creating An SAPUI5 Application Moving Code to SAP SAP ABAP Repository Team Provider plugin for Eclipse Requires Netweaver 7.31 and above Older Versions of Netweaver Require Code to be Migrated Manually Use program /UI5/UI5_REPOSITORY_LOAD with SE38 Code Is Uploaded to BSP ABAP Repository

24 Learning Points SAP components required for SAPUI5 and Fiori Launchpad Configuring Netweaver Gateway Creating an OData service Creating an SAPUI5 application Configuring Fiori Launchpad and integrating an SAPUI5 application Live Demo Lessons learned and best practices

25 Fiori Launchpad Configuration Step 1 Step 2 Activate and Maintain Services SPRO Activate LAUNCHPAD, PAGE_BUILDER*, TRANSPORT Create Custom Launchpad LPD_CUST Create custom Z-ROLE LAUNCHPAD instance

26 Fiori Launchpad Configuration Step 3 Create New Launchpad application LPD_CUST Enter application link text and description Enter application URL Specify an application alias Step 4 Create semantic object navigation target for application /UI2/SEMOBJ Z-object to reference the application from within the Launchpad

27 Fiori Launchpad Configuration Step 5 Step 6 SAP Fiori Launchpad Designer (Cross-Client) SPRO Open the Launchpad Designer in Cross-Client mode and select transport and package for changes Create New Catalog Standard catalog with title and ID

28 Fiori Launchpad Configuration Step 7 Step 8 Create catalog application target mapping Enter semantic navigation object and specify an action Enter launchpad role, instance, and application alias Specify device types - desktop, tablet, phone Create catalog application tile Enter general application information If dynamic tile specify service URL Select semantic navigation object and enter semantic object name and specify action that was named when creating target mapping

29 Fiori Launchpad Configuration Step 9 Create new group Enter title and ID for new group Step 10 Add Application tile to group Select tile from the newly created catalog

30 Learning Points SAP components required for SAPUI5 and Fiori Launchpad Configuring Netweaver Gateway Creating an OData service Creating an SAPUI5 application Configuring Fiori Launchpad and integrating an SAPUI5 application Live Demo Lessons learned and best practices

31 The Fruits of Your Labor Fiori Launchpad Manager Dashboard active tile

32 The Fruits of Your Labor Manager Dashboard Split-List Searchable Sortable Filterable Send

33 Learning Points SAP components required for SAPUI5 and Fiori Launchpad Configuring Netweaver Gateway Creating an OData service Creating an SAPUI5 application Configuring Fiori Launchpad and integrating an SAPUI5 application Live Demo Lessons learned and best practices

34 Lessons Learned Fiori Launchpad role assignment issue User Interface Add-On 1.0 for SAP NetWeaver SPS Sorting order of role menu entries for folders reference user Single Sign On SAML 2.0 implementation on ABAP stack

35 Key Learnings SAPUI5 and Fiori are evolving technologies and it is important to keep up with latest support packs and notes SAPUI5 is a robust framework that allows for developing fully responsive web applications that will adapt to the desktop and mobile devices SAPUI5 applications can be developed very rapidly and deployed using the Fiori Launchpad

36 What the Future Holds Next Steps Create a learner dashboard application Allow learners to take on-line training using their mobile devices

37 STAY INFORMED Follow the ASUGNews team: Tom Chris Craig

38 THANK YOU FOR PARTICIPATING Please provide feedback on this session by completing a short survey via the event mobile application. SESSION CODE: AD124 For ongoing education on this area of focus, visit

39 Backup Slides

40 Netweaver Gateway Configuration Activate the gateway service SPRO

41 Netweaver Gateway Configuration Create gateway aliases SPRO

42 Netweaver Gateway Configuration Create gateway aliases SPRO

43 Netweaver Gateway Configuration Create gateway destinations SPRO

44 Netweaver Gateway Configuration Create gateway destinations SPRO

45 Create Data Structures for OData Create supporting data structures Employee data SE11

46 Create Data Structures for OData Create supporting data structures Course data SE11

47 OData Services Configuration Create Supporting OData Services SEGW

48 OData Services Configuration Use Wizard to import data structures Create EmployeeList/EmployeeListSet

49 OData Services Configuration Use Wizard to import data structures Create EmployeeList/EmployeeListSet

50 OData Services Configuration Use Wizard to import data structures Create EmployeeList/EmployeeListSet

51 OData Services Configuration Use Wizard to import data structures Set additional properties

52 OData Services Configuration Use Wizard to import data structures Create CourseList/CourseListSet

53 OData Services Configuration Use Wizard to import data structures Create CourseList/CourseListSet

54 OData Services Configuration Use Wizard to import data structures Create CourseList/CourseListSet

55 OData Services Configuration Use Wizard to import data structures Set additional properties

56 OData Services Configuration Create Associations Between Data Entities

57 OData Services Configuration Create Associations Between Data Entities

58 OData Services Configuration Create Associations Between Data Entities

59 OData Services Configuration Register Services to Create Runtime Artifacts

60 OData Services Configuration Create Runtime Artifact Redefinitions Add Custom Code to the Redefined Methods to Retrieve Data

61 OData Services Configuration Assign SAP System Aliases to OData Services SPRO

62 OData Services Configuration Assign SAP System Aliases to OData Services SPRO

63 Fiori Launchpad Configuration Activate services for the Launchpad designer SPRO

64 Fiori Launchpad Configuration Activate services for the Launchpad designer SPRO

65 Fiori Launchpad Configuration Create custom Fiori Launchpad LPD_CUST

66 Fiori Launchpad Configuration Create custom Fiori Launchpad LPD_CUST

67 Fiori Launchpad Configuration Create new semantic object /UI2/SEMOBJ

68 Fiori Launchpad Designer Launch the Fiori Launchpad designer SPRO

69 Fiori Launchpad Designer Select a transport and package for configuration changes

70 Fiori Launchpad Designer Create a new catalog

71 Fiori Launchpad Designer Create a new target map for your application

72 Fiori Launchpad Designer Create a new target map for your application

73 Fiori Launchpad Designer Create new tile for your application

74 Fiori Launchpad Designer Create a new group

75 Fiori Launchpad Designer Add tile to your group

76 References and Helpful Links SAP NetWeaver Gateway User Interface Add-On 1.0 for SAP NetWeaver Introducing Fiori Launchpad SAP Fiori - SAP Fiori launchpad

77 References and Helpful Links UI Development Toolkit For HTML5 Demo Kit Building SAP Fiori-like UIs with SAPUI5 in 10 Exercises end/blog/2014/03/04/building-sap-fiori-like-uis-with-sapui5-in-10- exercises End-to-End How-to Guide: Building SAPUI5 Applications on SAP NetWeaver AS ABAP 7.31 Consuming Gateway OData Services

78 References and Helpful Links Getting Started with SAPUI5 UI Development Toolkit for HTML5 Developer Center SAP Development Tools for Eclipse

79 References and Helpful Links How to install a basic development environment for SAPUI5 SAP Web IDE Enablement AppBuilder

80 References and Helpful Links Using the SAPUI5 Repository Based on BSP Repository 926db0e91070/frameset.htm How to Deploy and Run SAPUI5 application on ABAP Server

Orange County Convention Center Orlando, Florida June 3-5, 2014. Streamlining LSO Online Course Functionality Rob Becker

Orange County Convention Center Orlando, Florida June 3-5, 2014. Streamlining LSO Online Course Functionality Rob Becker Orange County Convention Center Orlando, Florida June 3-5, 2014 Streamlining LSO Online Course Functionality Rob Becker Who Are We Lockheed Martin Corporation Global defense, security, aerospace, and advanced

More information

Build your own Fiori hybrid mobile app rapidly using SAP Web IDE Marc Anderegg, SAP SESSION CODE: BT404

Build your own Fiori hybrid mobile app rapidly using SAP Web IDE Marc Anderegg, SAP SESSION CODE: BT404 Build your own Fiori hybrid mobile app rapidly using SAP Web IDE Marc Anderegg, SAP SESSION CODE: BT404 LEARNING POINTS What is SAP Web IDE What are its key features What is the Hybrid Application Toolkit

More information

Work Better Connected. Orange County Convention Center May 5-7, 2015 Orlando, Florida

Work Better Connected. Orange County Convention Center May 5-7, 2015 Orlando, Florida Work Better Connected. Orange County Convention Center May 5-7, 2015 Orlando, Florida Renewing your SAP Enterprise Portal implementation with SAP Fiori launchpad Inbal Sabag Customer Success Expert SAP

More information

SAP FIORI / HR Renewal

SAP FIORI / HR Renewal SAP FIORI / HR Renewal (HR Renewal) http://help.sap.com/fiori_bs2013/ General Overview A History of User Interfaces & Technical Architecture User Interface SAP GUI ITS BSP/Web Dynpro for Java WD for ABAP

More information

Extend the SAP FIORI app HCM Timesheet Approval

Extend the SAP FIORI app HCM Timesheet Approval SAP Web Integrated Development Environment How-To Guide Provided by Customer Experience Group Extend the SAP FIORI app HCM Timesheet Approval Applicable Releases: SAP Web Integrated Development Environment

More information

How to Extend a Fiori Application: Purchase Order Approval

How to Extend a Fiori Application: Purchase Order Approval SAP Web IDE How-To Guide Provided by Customer Experience Group How to Extend a Fiori Application: Purchase Order Approval Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Document History

More information

Affordable Innovations for SAP ERP on SAP HANA for the Midsize Enterprise

Affordable Innovations for SAP ERP on SAP HANA for the Midsize Enterprise Affordable Innovations for SAP ERP on SAP HANA for the Midsize Enterprise Xiaohua Wang KJ Min SAP IBM SESSION CODE: SM232 LEARNING POINTS Learn how to setup your own SAP ERP on HANA with Simple Finance

More information

Enhance Your SAP Portal Experience Using SAP Mobile Documents. Matt Carrier, SAP SESSION CODE: PO358

Enhance Your SAP Portal Experience Using SAP Mobile Documents. Matt Carrier, SAP SESSION CODE: PO358 Enhance Your SAP Portal Experience Using SAP Mobile Documents Matt Carrier, SAP SESSION CODE: PO358 SAP Portal LEARNING POINTS Do I still need a portal? Where is the SAP Portal Portfolio headed? How do

More information

Develop your own Fiori-like Cloud Applications

Develop your own Fiori-like Cloud Applications Develop your own Fiori-like Cloud Applications Matthias Steiner SAP HANA Cloud Platform May 2015 @steinermatt SESSION CODE: BT137 Disclaimer This presentation outlines our general product direction and

More information

Placing customers in the driver s seat to deliver amazing user experiences

Placing customers in the driver s seat to deliver amazing user experiences SAP Solution Brief SAP Web IDE Objectives Solution Benefits Quick Facts Placing customers in the driver s seat to deliver amazing user experiences Build applications with consumergrade UX using SAP Web

More information

Best Practices for choosing the right SAP Portal Deployment and Consumption Option Yariv Zur, SAP Mentor, SAP Labs Israel

Best Practices for choosing the right SAP Portal Deployment and Consumption Option Yariv Zur, SAP Mentor, SAP Labs Israel Orange County Convention Center Orlando, Florida June 3-5, 2014 Best Practices for choosing the right SAP Portal Deployment and Consumption Option Yariv Zur, SAP Mentor, SAP Labs Israel LEARNING POINTS

More information

SAP HANA Cloud Platform

SAP HANA Cloud Platform SAP HANA Cloud Platform SAP Forum 2015 César Martín 12 de marzo de 2015 SAP HANA Cloud Platform Build, extend, and run next-generation applications on SAP HANA in the cloud The in-memory cloud platform-as-a-service

More information

Getting Started. SAP HANA Cloud End-to-End-Development Scenarios. Develop your first End-to-End SAP HANA Cloud Application Scenario. Version 1.4.

Getting Started. SAP HANA Cloud End-to-End-Development Scenarios. Develop your first End-to-End SAP HANA Cloud Application Scenario. Version 1.4. SAP HANA Cloud End-to-End-Development Scenarios Getting Started Develop your first End-to-End SAP HANA Cloud Application Scenario Version 1.4.2 1 Copyright 2014 SAP AG or an SAP affiliate company. All

More information

SAP Fiori - Architecture

SAP Fiori - Architecture SAP Fiori - Architecture August 2014 Customer Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not subject

More information

Consuming Real Time Analytics and KPI powered by leveraging SAP Lumira and SAP Smart Business in Fiori SESSION CODE: 0611 Draft!!!

Consuming Real Time Analytics and KPI powered by leveraging SAP Lumira and SAP Smart Business in Fiori SESSION CODE: 0611 Draft!!! Consuming Real Time Analytics and KPI powered by leveraging SAP Lumira and SAP Smart Business in Fiori SESSION CODE: 0611 Draft!!! Michael Sung SAP Consuming Real Time Analytics and KPI powered by leveraging

More information

SAP HANA SPS 09 - What s New? SAP HANA Application Lifecycle Management

SAP HANA SPS 09 - What s New? SAP HANA Application Lifecycle Management SAP HANA SPS 09 - What s New? SAP HANA Application Lifecycle Management (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP AG or an SAP affiliate company. All rights reserved.

More information

SAP MII for Manufacturing rapid-deployment solution: Software Requirements

SAP MII for Manufacturing rapid-deployment solution: Software Requirements MII 15.0 October 2015 English SAP MII for Manufacturing rapid-deployment solution: SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2015 SAP SE or an SAP affiliate company. All rights reserved.

More information

Creating a Fiori Starter Application for sales order tracking

Creating a Fiori Starter Application for sales order tracking SAP Web IDE How-To Guide Provided by Customer Experience Group Creating a Fiori Starter Application for sales order tracking Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Creating a Fiori

More information

Toby Johnston SAP BI Platform Support Tool 2.0 Deep-Dive Session # 2523

Toby Johnston SAP BI Platform Support Tool 2.0 Deep-Dive Session # 2523 Toby Johnston SAP BI Platform Support Tool 2.0 Deep-Dive Session # 2523 LEARNING POINTS Understand the new features, functionality, and architecture delivered in version 2.0 Learn how to setup and configure

More information

SAP Payroll Processing control center rapiddeployment

SAP Payroll Processing control center rapiddeployment Software and Delivery Requirements Document Version: 1.0 July 2015 SAP Payroll Processing control center rapiddeployment solution Typographic Conventions Type Style Example Description Words or characters

More information

SAP HANA Cloud Platform, Portal Service: Overview SAP Cloud Experience and SAP Portal Product Management May 2016

SAP HANA Cloud Platform, Portal Service: Overview SAP Cloud Experience and SAP Portal Product Management May 2016 SAP HANA Cloud Platform, Portal Service: Overview SAP Cloud Experience and SAP Portal Product Management May 2016 Agenda The SAP HANA Cloud Platform Introducing Portal Service Use Cases & Positioning Cloud

More information

SAP NetWeaver 7.5 Browser Support PAM Table of Content

SAP NetWeaver 7.5 Browser Support PAM Table of Content SAP NetWeaver 7.5 Browser Support PAM Table of Content SAP Browser Support Summary SAP Desktop Browser Support Policy SAP Mobile Browser Support Policy Desktop Browser Support SAPUI5, Desktop & Mobile

More information

Setting up the Environment for Creating or Extending SAP Fiori Apps

Setting up the Environment for Creating or Extending SAP Fiori Apps Setting up the Environment for Creating or Extending SAP Fiori Apps February 2014 Copyright Copyright 2014 SAP AG. All rights reserved SAP Library document classification: PUBLIC No part of this publication

More information

How to Integrate CRM 2007 WebClient UI with SAP NetWeaver Portal

How to Integrate CRM 2007 WebClient UI with SAP NetWeaver Portal How to Integrate CRM 2007 WebClient UI with SAP NetWeaver Portal Applies to: Enterprise Portal, CRM 2007. For more information, visit the Portal and Collaboration homepage. Summary This document will describe

More information

HCM on Any Device SAP Fiori Apps for Human Capital Management

HCM on Any Device SAP Fiori Apps for Human Capital Management Orange County Convention Center Orlando, Florida June 3-5, 2014 HCM on Any Device SAP Fiori Apps for Human Capital Management Satyam Singh Gertrud Beisel LEARNING POINTS Fiori and the UX Strategy Principles

More information

This walk-through was created using Windows XP as a guide, however alternate versions of the Windows OS will be very similar in procedure as well.

This walk-through was created using Windows XP as a guide, however alternate versions of the Windows OS will be very similar in procedure as well. Important!: If you are working from a computer within your office environment, it may be advisable to have your local IT/Helpdesk personnel validate that this software meets acceptable standards prior

More information

How To Build A Cloud Portal For Sap Hana Cloud Platform

How To Build A Cloud Portal For Sap Hana Cloud Platform Orange County Convention Center Orlando, Florida June 3-5, 2014 SAP HANA Cloud Portal Overview - Latest Innovations, Showcases, Customers and Future Direction Amir Blich Learning Points Get an overview

More information

SAP NetWeaver 7.4 Planning Product Availability Matrix (Planning PAM)

SAP NetWeaver 7.4 Planning Product Availability Matrix (Planning PAM) SAP NetWeaver 7.4 Planning Product Availability Matrix (Planning PAM) with all EHPs February, 2014 Disclaimer: This document represents current planning for NW only and not for the SAP products using NW

More information

SAP NetWeaver AS Java

SAP NetWeaver AS Java Chapter 75 Configuring SAP NetWeaver AS Java SAP NetWeaver Application Server ("AS") Java (Stack) is one of the two installation options of SAP NetWeaver AS. The other option is the ABAP Stack, which is

More information

Experience SAP HANA Cloud Portal

Experience SAP HANA Cloud Portal Experience SAP HANA Cloud Portal Develop business applications for SAP HANA Cloud Portal sites, leveraging on-premise and cloud solutions, simply and intuitively. Table of Contents Exercise 1: Setting

More information

End to End Development Example in SAP NetWeaver 7.4 & SAP HANA

End to End Development Example in SAP NetWeaver 7.4 & SAP HANA End to End Development Example in SAP NetWeaver 7.4 & SAP HANA SAP NetWeaver 2013 - Developer Experience III Author: Jens Weiler jens.weiler@sap.com Target Audience Developer Consultants For Public usage

More information

SAP HANA Core Data Services (CDS) Reference

SAP HANA Core Data Services (CDS) Reference PUBLIC SAP HANA Platform SPS 12 Document Version: 1.0 2016-05-11 Content 1 Getting Started with Core Data Services....4 1.1 Developing Native SAP HANA Applications....5 1.2 Roles and Permissions....7 1.3

More information

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0

Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Oracle FLEXCUBE Direct Banking Android Tab Client Installation Guide Release 12.0.3.0.0 Part No. E52543-01 April 2014 Oracle Financial Services Software Limited Oracle Park Off Western Express Highway

More information

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x

Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Step-by-Step guide for SSO from MS Sharepoint 2010 to SAP EP 7.0x Sverview Trust between SharePoint 2010 and ADFS 2.0 Use article Federated Collaboration with Shibboleth 2.0 and SharePoint 2010 Technologies

More information

Fiori Frequently Asked Technical Questions

Fiori Frequently Asked Technical Questions Fiori Frequently Asked Technical Questions Table of Contents SAP Fiori General Overview... 1 SAP Fiori Technical Overview... 1 SAP Fiori Applications... 3 SRM Applications... 3 Approval Applications...

More information

SAP Predictive Analytics Roadmap Charles Gadalla SAP SESSION CODE: #####

SAP Predictive Analytics Roadmap Charles Gadalla SAP SESSION CODE: ##### SAP Predictive Analytics Roadmap Charles Gadalla SAP SESSION CODE: ##### LEARNING POINTS What are SAP s Advanced Analytics offerings Advanced Analytics gives a competitive advantage, it can no longer be

More information

SAP Crystal Reports & SAP HANA: Integration & Roadmap Kenneth Li SAP SESSION CODE: 0401

SAP Crystal Reports & SAP HANA: Integration & Roadmap Kenneth Li SAP SESSION CODE: 0401 SAP Crystal Reports & SAP HANA: Integration & Roadmap Kenneth Li SAP SESSION CODE: 0401 LEARNING POINTS Learn about Crystal Reports for HANA Glance at the road map for the product Overview of deploying

More information

Mobilize workforce using Fiori apps: Graybar Story

Mobilize workforce using Fiori apps: Graybar Story Mobilize workforce using Fiori apps: Graybar Story AGENDA Introduction Graybar Fiori Project Graybar Fiori Apps App Lifecycle Management Security Demo Key Learning Questions INTRODUCTION A leading distributor

More information

The Simple Way to Build and Extend SAP Fiori and SAPUI5 Applications

The Simple Way to Build and Extend SAP Fiori and SAPUI5 Applications SAP Web IDE The Simple Way to Build and Extend SAP Fiori and SAPUI5 Applications Frequently Asked Questions 18-Dec-2015 SAP Web IDE is a web-based tool that empowers users to rapidly create apps for browser

More information

Work Better Connected.

Work Better Connected. Work Better Connected. Work Better Connected. Orange County Convention Center May 5-7, 2015 Orlando, Florida Orange County Convention Center May 5-7, 2015 Orlando, Florida SAP HANA Cloud Portal Overview

More information

2016-03-23. SAP Web IDE Hybrid App Toolkit Add-on

2016-03-23. SAP Web IDE Hybrid App Toolkit Add-on 2016-03-23 Content 1 SAP Web IDE Hybrid App Toolkit Add-on for Cloud Deployments.... 5 1.1 What's New in Hybrid App Toolkit 1.13....7 1.2 Hybrid App Toolkit 1.12.... 9 1.3 Hybrid App Toolkit 1.11....10

More information

How To... Model a Gateway Service Based on Business Entities

How To... Model a Gateway Service Based on Business Entities How-To Guide SAP NetWeaver 7.40 SP07 Document Version: 2.0-2015-01-21 How To... Model a Gateway Service Based on Business Entities Assignment with the Mapping Editor in the SAP Gateway Service Builder

More information

My Inbox in SAP Fiori Simplifying Workflow for End Users

My Inbox in SAP Fiori Simplifying Workflow for End Users My Inbox in SAP Fiori Simplifying Workflow for End Users Benjamin Notheis, Product Manager BPM, SAP SE ASUG Annual Conference, May 2015 Session Code: BT1072 Public Enterprise Architecture Data Modeling

More information

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02 Data Integration using Integration Gateway SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC02000-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved.

More information

Sabre Red Apps. Developer Toolkit Overview. October 2014

Sabre Red Apps. Developer Toolkit Overview. October 2014 Sabre Red Apps Developer Toolkit Overview October 2014 Red Apps are optional, authorized applications that extend the capabilities of Sabre Red Workspace. Red Apps are Sabre's branded version of an Eclipse

More information

SAP Mobile Documents. December, 2015

SAP Mobile Documents. December, 2015 SAP Mobile Documents December, 2015 Disclaimer This presentation outlines our general product direction and should not be relied on in making a purchase decision. This presentation is not subject to your

More information

The new SAP HCM User Experience: HR Renewal

The new SAP HCM User Experience: HR Renewal The new SAP HCM User Experience: HR Renewal Gertrud Beisel, SAP HCM Product Management May, 2015 Customer Agenda Introduction What is HR Renewal? HR Renewal and Fiori Additional Information and Conclusion

More information

Take full advantage of IBM s IDEs for end- to- end mobile development

Take full advantage of IBM s IDEs for end- to- end mobile development Take full advantage of IBM s IDEs for end- to- end mobile development ABSTRACT Mobile development with Rational Application Developer 8.5, Rational Software Architect 8.5, Rational Developer for zenterprise

More information

SAP NetWeaver Fiori. For more information, see "Creating and enabling a trusted provider for Centrify" on page 108-10.

SAP NetWeaver Fiori. For more information, see Creating and enabling a trusted provider for Centrify on page 108-10. Chapter 108 Configuring SAP NetWeaver Fiori The following is an overview of the steps required to configure the SAP NetWeaver Fiori Web application for single sign-on (SSO) via SAML. SAP NetWeaver Fiori

More information

SAP Fiori Architecture overview

SAP Fiori Architecture overview SAP Fiori Architecture overview Agenda SAP Fiori Architecture overview Prerequisites SAP Fiori components delivery NetWeaver Gateway deployment option Typical landscape Future plan 2013 SAP AG or an SAP

More information

SAP HANA SPS 09 - What s New? Development Tools

SAP HANA SPS 09 - What s New? Development Tools SAP HANA SPS 09 - What s New? Development Tools (Delta from SPS 08 to SPS 09) SAP HANA Product Management November, 2014 2014 SAP SE or an SAP affiliate company. All rights reserved. 1 Overview What s

More information

SRM User Interface Add-On 1.0 Overview. Michael Jud March 2013

SRM User Interface Add-On 1.0 Overview. Michael Jud March 2013 SRM User Interface Add-On 1.0 Overview Michael Jud March 2013 Legal Disclaimer This presentation is not subject to your license agreement or any other agreement with SAP. SAP has no obligation to pursue

More information

SAP HANA Cloud Portal Overview and Scenarios

SAP HANA Cloud Portal Overview and Scenarios SAP HANA Cloud Portal Overview and Scenarios HERUG 2014 Conference - Montevideo April 2014 Twitter: @portal_sap / #hanacloudportal HERUG 2014 Conference Event Website Event overview Information and Agenda

More information

Silvia Gonzalez - Johnson&Johnson

Silvia Gonzalez - Johnson&Johnson SAP Payroll Control Center: Johnson & Johnson Co-Innovation with SAP Silvia Gonzalez - Johnson&Johnson Julia Yatskar - SAP SESSION CODE: HM690 Legal disclaimer The information in this presentation is confidential

More information

Getting Started with SAPUI5

Getting Started with SAPUI5 Table of Contents 1 Introduction.... 3 2....4 3 Choose Your Browser....6 3.1 Browser Support: SAPUI5 for Desktop.... 6 3.1.1 Degradations by Feature.... 7 3.1.2 Degradations by Control.... 9 3.2 Browser

More information

File S1: Supplementary Information of CloudDOE

File S1: Supplementary Information of CloudDOE File S1: Supplementary Information of CloudDOE Table of Contents 1. Prerequisites of CloudDOE... 2 2. An In-depth Discussion of Deploying a Hadoop Cloud... 2 Prerequisites of deployment... 2 Table S1.

More information

Installing the Android SDK

Installing the Android SDK Installing the Android SDK To get started with development, we first need to set up and configure our PCs for working with Java, and the Android SDK. We ll be installing and configuring four packages today

More information

Getting Started with Android Development

Getting Started with Android Development Getting Started with Android Development By Steven Castellucci (v1.1, January 2015) You don't always need to be in the PRISM lab to work on your 4443 assignments. Working on your own computer is convenient

More information

Working with the ERP Integration Service of EMC Documentum Process Services for SAP

Working with the ERP Integration Service of EMC Documentum Process Services for SAP Working with the ERP Integration Service of EMC Documentum Process Services for SAP Applied Technology Abstract EMC Documentum Process Services for SAP is a new product that integrates with EMC Documentum

More information

Administration Guide for SAP HANA Smart Data Integration and SAP HANA Smart Data Quality

Administration Guide for SAP HANA Smart Data Integration and SAP HANA Smart Data Quality PUBLIC SAP HANA Platform SPS 12 Document Version: 1.0 2016-05-11 Administration Guide for SAP HANA Smart Data Integration and SAP HANA Smart Data Content 1 Getting Started....8 1.1 Open a Support Connection....8

More information

Tutorial: setting up a web application

Tutorial: setting up a web application Elective in Software and Services (Complementi di software e servizi per la società dell'informazione) Section Information Visualization Number of credits : 3 Tutor: Marco Angelini e- mail: angelini@dis.uniroma1.it

More information

JBoss Portal 2.4. Quickstart User Guide

JBoss Portal 2.4. Quickstart User Guide Portal 2.4 Quickstart User Guide Table of Contents Portal - Overview... iii 1. Tutorial Forward...1 2. Installation...2 2.1. Downloading and Installing...2 2.2. Starting Portal...3 3. Portal Terminology...5

More information

Sybase Unwired Platform 2.1.x

Sybase Unwired Platform 2.1.x white paper Sybase Unwired Platform 2.1.x Development Paradigm www.sybase.com Table of Contents 1 Sybase Unwired Platform 2 Mobile Application Development 3 Mobile Business Object (MBO) Development 5 Mobile

More information

CRM WebClient UI & Netweaver Enterprise Portal Integration

CRM WebClient UI & Netweaver Enterprise Portal Integration CRM WebClient UI & Netweaver Enterprise Portal Integration Contents INTRODUCTION... 4 External Integration... 4 Architecture... 4 Tight/Classic Integration... 5 Architecture... 5 Integration via OBN...

More information

EMC Documentum Composer

EMC Documentum Composer EMC Documentum Composer Version 6.5 User Guide P/N 300 007 217 A02 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 2008 EMC Corporation. All rights

More information

SAP Business Intelligence Adoption V7.41:Software and Delivery Requirements. SAP Business Intelligence Adoption August 2015 English

SAP Business Intelligence Adoption V7.41:Software and Delivery Requirements. SAP Business Intelligence Adoption August 2015 English Business Intelligence Adoption August 2015 English Business Intelligence Adoption V7.41:Software and Delivery Requirements SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Document Revisions Date 0 6/26/2015

More information

Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows

Download and Installation Instructions. Android SDK and Android Development Tools (ADT) Microsoft Windows Download and Installation Instructions for Android SDK and Android Development Tools (ADT) on Microsoft Windows Updated September, 2013 This document will describe how to download and install the Android

More information

Workshop for WebLogic introduces new tools in support of Java EE 5.0 standards. The support for Java EE5 includes the following technologies:

Workshop for WebLogic introduces new tools in support of Java EE 5.0 standards. The support for Java EE5 includes the following technologies: Oracle Workshop for WebLogic 10g R3 Hands on Labs Workshop for WebLogic extends Eclipse and Web Tools Platform for development of Web Services, Java, JavaEE, Object Relational Mapping, Spring, Beehive,

More information

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0

NS DISCOVER 4.0 ADMINISTRATOR S GUIDE. July, 2015. Version 4.0 NS DISCOVER 4.0 ADMINISTRATOR S GUIDE July, 2015 Version 4.0 TABLE OF CONTENTS 1 General Information... 4 1.1 Objective... 4 1.2 New 4.0 Features Improvements... 4 1.3 Migrating from 3.x to 4.x... 5 2

More information

What s New in IBM Web Experience Factory 8.5. 2014 IBM Corporation

What s New in IBM Web Experience Factory 8.5. 2014 IBM Corporation What s New in IBM Web Experience Factory 8.5 2014 IBM Corporation Recent history and roadmap Web Experience Factory 8.0 2012 Multi-channel Client-side mobile Aligned with Portal 8 Developer productivity

More information

TERAcloud w w w. t e r a c l o u d. u k

TERAcloud w w w. t e r a c l o u d. u k Accessing your account Once you have received the confirmation email, there will be a link to your personal area where you can download the backup application. In the example here we are using the support

More information

1) SETUP ANDROID STUDIO

1) SETUP ANDROID STUDIO 1) SETUP ANDROID STUDIO This process takes approximately 15-20 Minutes dependent upon internet speed and computer power. We will only be covering the install on Windows. System Requirements Android Studio

More information

Who is my SAP HANA DBA? What can I expect from her/him? HANA DBA Role & Responsibility. Rajesh Gupta, Deloitte. Consulting September 24, 2015

Who is my SAP HANA DBA? What can I expect from her/him? HANA DBA Role & Responsibility. Rajesh Gupta, Deloitte. Consulting September 24, 2015 Who is my SAP HANA DBA? What can I expect from her/him? HANA DBA Role & Responsibility Rajesh Gupta, Deloitte. Consulting September 24, 2015 Introduction Rajesh Gupta - rajgupta@deloitte.com Lead SAP HANA

More information

SAP Fiori Design rapid-deployment solution

SAP Fiori Design rapid-deployment solution SAP Fiori Design rapid-deployment solution V2.731 Customer Contents Overview of SAP Rapid Deployment Solutions SAP Fiori Design rapid-deployment solution Overview and Details SAP Fiori Design rapid-deployment

More information

Roadmap from On-Premise to Cloud based Integration solutions from SAP

Roadmap from On-Premise to Cloud based Integration solutions from SAP Roadmap from On-Premise to Cloud based Integration solutions from SAP Sindhu Gangadharan, Chief Product Owner SAP NetWeaver PI and SAP HANA Cloud Integration Agenda SAP NetWeaver Process Integration today

More information

Maintenance Planner User Guide

Maintenance Planner User Guide User Guide Document Version: 1.5 2016-07-08 Typographic Conventions Type Style Example Description Words or characters quoted from the screen. These include field names, screen titles, pushbuttons labels,

More information

Create and run apps on HANA Cloud in SAP Web IDE

Create and run apps on HANA Cloud in SAP Web IDE SAP Web IDE How-To Guide Provided by Customer Experience Group Create and run apps on HANA Cloud in SAP Web IDE Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Document History Document

More information

T320 E-business technologies: foundations and practice

T320 E-business technologies: foundations and practice T320 E-business technologies: foundations and practice Configuring an Application Server in Eclipse Prepared for the course team by Neil Simpkins Introduction 1 Viewing the configured servers 2 Configuring

More information

SAP HANA Cloud Platform

SAP HANA Cloud Platform SAP HANA Cloud Platform Introduction Rui Nogueira, SAP AG - TIP CORE June 12 th, 2013 Building An Application For The Cloud 2013 SAP AG or an SAP affiliate company. All rights reserved. 2 Building an Enterprise-Ready

More information

3. Installation and Configuration. 3.1 Java Development Kit (JDK)

3. Installation and Configuration. 3.1 Java Development Kit (JDK) 3. Installation and Configuration 3.1 Java Development Kit (JDK) The Java Development Kit (JDK) which includes the Java Run-time Environment (JRE) is necessary in order for Apache Tomcat to operate properly

More information

Fahim Uddin http://fahim.cooperativecorner.com email@fahim.cooperativecorner.com. 1. Java SDK

Fahim Uddin http://fahim.cooperativecorner.com email@fahim.cooperativecorner.com. 1. Java SDK PREPARING YOUR MACHINES WITH NECESSARY TOOLS FOR ANDROID DEVELOPMENT SEPTEMBER, 2012 Fahim Uddin http://fahim.cooperativecorner.com email@fahim.cooperativecorner.com Android SDK makes use of the Java SE

More information

Host: http://studynest.org/ INTRODUCTION TO SAP CRM WEB UI

Host: http://studynest.org/ INTRODUCTION TO SAP CRM WEB UI SAP CRM WEBCLIENT UI 7.0 EHP1 Online course Content Contact: +61 413159465 (Melbourne, Australia) Host: INTRODUCTION TO SAP CRM WEB UI Demo1: Why SAP CRM? Why an organization Need SAP CRM Web Client User

More information

Epidefender Studio Installation notice

Epidefender Studio Installation notice Institut de Médecine et de Physiologie Spatiales Epidefender Studio Installation notice MEDES Institut de Médecine et Physiologie Spatiales CHU Rangueil - 1 avenue du Professeur Jean Poulhès - 31403 Toulouse

More information

Session Code*: 0310 Demystifying Authentication and SSO Options in Business Intelligence. Greg Wcislo

Session Code*: 0310 Demystifying Authentication and SSO Options in Business Intelligence. Greg Wcislo Session Code*: 0310 Demystifying Authentication and SSO Options in Business Intelligence Greg Wcislo Introduction We will not go into detailed how-to, however links to multiple how-to whitepapers will

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Introduction to J2EE Development in NetBeans IDE...1 Configuring the IDE for J2EE Development...2 Getting

More information

Design & Innovation from SAP AppHaus Realization with SAP HANA Cloud Platform. Michael Sambeth, Business Development HCP, SAP (Suisse) SA 18.06.

Design & Innovation from SAP AppHaus Realization with SAP HANA Cloud Platform. Michael Sambeth, Business Development HCP, SAP (Suisse) SA 18.06. Design & Innovation from SAP AppHaus Realization with SAP HANA Cloud Platform Michael Sambeth, Business Development HCP, SAP (Suisse) SA 18.06.2015 Legal disclaimer The information in this presentation

More information

Using Oracle Cloud to Power Your Application Development Lifecycle

Using Oracle Cloud to Power Your Application Development Lifecycle Using Oracle Cloud to Power Your Application Development Lifecycle Srikanth Sallaka Oracle Product Management Dana Singleterry Oracle Product Management Greg Stachnick Oracle Product Management Using Oracle

More information

SAML 2.0 Configurations at SAP NetWeaver AS ABAP and Microsoft ADFS

SAML 2.0 Configurations at SAP NetWeaver AS ABAP and Microsoft ADFS SAML 2.0 Configurations at SAP NetWeaver AS ABAP and Microsoft ADFS Applies to: SAP Gateway 2.0 Summary This guide describes how you install and configure SAML 2.0 on Microsoft ADFS server and SAP NetWeaver

More information

Portal Instructions for Mac

Portal Instructions for Mac Portal Instructions for Mac Table of Contents Introduction... 1 Preparing Safari... 2 Advanced Access Instructions... 3 Installing Java... 3 Setting the Default Browser... 3 Installing the Browser Plug-in...

More information