abap platform 7.4/7.5 overview - ovärderlig · pdf filedocument, except if such ......

37
ABAP Platform 7.4/7.5 Overview Technology Core Platform Product Management, SAP SE March 22 th , 2017

Upload: doanthuy

Post on 19-Feb-2018

231 views

Category:

Documents


3 download

TRANSCRIPT

ABAP Platform 7.4/7.5 – Overview

Technology Core Platform Product Management, SAP SE

March 22th, 2017

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 2Public

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 license agreement or any other agreement

with SAP. SAP has no obligation to pursue any course of business outlined in this presentation or to

develop or release any functionality mentioned in this presentation. This presentation and SAP's

strategy and possible future developments are subject to change and may be changed by SAP at any

time for any reason without notice. This document is provided without a warranty of any kind, either

express or implied, including but not limited to, the implied warranties of merchantability, fitness for a

particular purpose, or non-infringement. SAP assumes no responsibility for errors or omissions in this

document, except if such damages were caused by SAP intentionally or grossly negligent.

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 3Public

Agenda

ABAP Platform Overview

ABAP Platform 7.4/7.5 Product Highlights

ABAP Platform Summary

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 4Public

ABAP PLATFORM

OVERVIEW

A short introduction

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 5Public

ABAP platformInnovations driven by SAP HANA and SAP S/4HANA

SAP

NetWeaver

7.x

Any DB

SAP

Business

Suite

EHP x

SAP NW AS for ABAP 7.x

SAP

NetWeaver

7.4

Any DB

incl. SAP HANA

SAP

Business

Suite

EHP 7

SAP NW AS for ABAP 7.4

SAP HANA SAP S/4HANA

SAP Fiori UX

Cloud

≤ 2014

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 6Public

ABAP platformABAP platform 7.5 – Role in SAP S/4HANA

SAP

NetWeaver

7.5

Any DB

incl. SAP HANA

SAP

Business

Suite

EHP 8

Only

SAP HANA

SAP Business Suite code line

SAP

S/4HANA

Finance

3.0

SAP

S/4HANA

on-premise

edition

1511

SAP

S/4HANA

cloud

edition

SAP Business Suite codeline SAP S/4HANA codeline

SAP NW AS for ABAP 7.5 / 7.6x package in the Cloud

SAP S/4HANA specific SAP_ABA component

[General availability: Q4 2015 | Unicode systems only]

2015

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 7Public

FOCUS OF THE

ABAP PLATFORM

DEVELOPMENT

ABAP platformABAP platform 7.51 – Role in SAP S/4HANA

SAP NW

AS for

ABAP 7.51

Innovation

Package

Any DB

incl. SAP HANA

Only

SAP HANA

SAP

S/4HANA

on-premise

edition

1611

SAP

S/4HANA

cloud

edition

SAP S/4HANA codeline

SAP NW AS for ABAP 7.51 / 7.6x package in the Cloud

SAP S/4HANA specific SAP_ABA component

[General availability: Q4 2016 | Unicode systems only]

2016

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 8Public

ABAP platform 7.4/7.5x

New ABAP language features for more simple and concise code

ABAP application development further optimized for SAP HANA

Increased coverage of SQL standard

Efficient ABAP programming model for SAP Fiori appsReal-time event-driven programming

and Industrial IoT support

Increased developer efficiency in Eclipse©

Advanced quality assurance tools and support for SAP S/4HANA

conversion

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 9Public

ABAP PLATFORM 7.4/7.5

Product highlights

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 10Public

Modern ABAP Language Declarative and functional ABAP modernization

Write simplified ABAP using new language features

Extensively expression-oriented syntax

Advanced table operations

JSON support in sXML-Library

Inline code documentation with ABAP Doc

Modern

ABAP

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 11Public

Modern ABAP Language More simple and concise ABAP code

DATA: it1 TYPE tt1,wa1 LIKE LINE OF it1.

wa1-a = 7. wa1-b = 9.INSERT wa1 INTO TABLE it1.wa1-a = 3. wa1-b = 5.INSERT wa1 INTO TABLE it1.

FIELD-SYMBOLS <wa1> LIKE LINE OF it1.DATA wa2 LIKE LINE OF it2.LOOP AT it1 ASSIGNING <wa1>.

wa2 = t1_to_t2( <wa1> ).INSERT wa2 INTO TABLE it2.

ENDLOOP.

DATA: ref TYPE REF TO class1,tmp TYPE string.

READ TABLE it1 WITH KEY a = 3 ASSIGNING <wa1>.CREATE OBJECT ref.tmp = <wa1>-b.ref->do_something( tmp ).

DATA(it1) = VALUE tt1( ( a = 7 b = 9 )( a = 3 b = 5 ) ).

it2 = VALUE #( FOR <wa1> IN it1( t1_to_t2( <wa1> ) ) ).

NEW class1( )->do_something(CONV #( it1[ a = 3 ]-b ) ).

ABAP < 7.40 ABAP ≥ 7.40

Inline declaration

with inferred type

Constructor

expression

Table

comprehension

Object creation

Value conversion

to inferred typeTable selection

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 12Public

Modern ABAP Language What’s new with ABAP 7.5

New built-in ABAP data type int801

Further expression enablement02

Advanced table operations like

CORRESPONDING() operator,

grouping and filtering03

Type inspection for object reference

variables using IS INSTANCE OF

and CASE TYPE OF04

Easy raising of T100 messages via

class-based exception05

Test seams and injections for

ABAP unit testing06

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 13Public

Database-centric optimizationsABAP managed code pushdown

Utilization of SAP HANA capabilities

Effort for

code

pushdown

LOW HIGH

MORE

LESS

Transparent

optimizations

Fast Data Access

For all entries

Reuse components

ALV with integrated

data access

Enhanced search help

Advanced SQL

programming

Open SQL

enhancements

Advanced view

building with Core

Data Services (CDS)

Exploit

SAP HANA native

features

ABAP managed

database procedures

(AMDP)

CDS table functions

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 14Public

Database-centric optimizations Enhancement of Open SQL

Broader coverage of SQL standard for higher

expressiveness in Open SQL statements

Code pushdown support thru new language

features and reduction of existing limitations

Various SQL functions and expressions

Enhanced JOIN support, increased number of sub-queries

Flexible consumption of CDS views and roles

New syntax required for new features

SQL-92 Standard

Enhanced

Open SQL(≥ ABAP 7.5)

Incl. CDS

Associations

Enhanced

Open SQL(≥ ABAP 7.4)Open SQL

(before ABAP

7.4)

Enhanced

Open SQL(≥ ABAP 7.51)

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 15Public

Database-centric optimizations Open SQL – Release 7.5 feature overview

New and

enhanced SQL

functions and

expressions like

CONCAT,

REPLACE, LPAD

and COALESCE

Support of

UNION and

UNION ALL

Enhanced JOIN

support, incl.

dynamic ON

condition

Support of field

completion by

placing FROM

before the

field list

Flexible

consumption of

CDS modelling

entities and

declarative

authorizations

Access to global

temporary tables

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 16Public

Database-centric optimizationsCore Data Services (CDS) in a nutshell

Next generation data definition and access

for database centric applications

Uses and extends SQL for higher productivity

Improved programing model for all types of

applications

Integrates with platform lifecycle managementAB

AP

HA

NA

XS

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 17Public

Database-centric optimizationsAdvanced data building with ABAP CDS

Semantically rich data models

Domain specific languages (DDL, QL, DML, DCL)

Declarative, close to conceptual thinking

Compatible with any DB

Fully integrated in the ABAP infrastructure

Generated and managed SQL views

Native integration in SAP HANA

Rich set of built-in functions

Generic expressions, string, arithmetic, date,

time, aggregate and special conversion functions

Domain-specific annotations

Enabler for domain-specific consumption

e.g. for UI, Analytics, OData, BW,…

Associations

Simple definition of view relationships

Path expressions to navigate along relations

Extensible

On model level thru extensions

On meta-model level thru annotations

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 18Public

Database-centric optimizationsExample of a ABAP CDS view definition

Group by clause

CASE statement

Name

list

Annotations

JOINs

Aggregation

Built-in

functions

SQL view nameCDS view entity name

Where clause

ABAP DDL Source

Select list

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 19Public

Database-centric optimizationsCDS – Release 7.5 feature overview

01 New and enhanced SQL functions and expressions like

CONCAT, REPLACE, LPAD, enhanced COALESCE, …

02 Enhanced JOIN support, incl. dynamic ON condition and

usage of associations in CDS view extensions

03 Flexible consumption of CDS modelling entities and

declarative authorizations

04 CDS table functions for supporting SAP HANA breakout

scenarios

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 20Public

Database-centric optimizationsABAP Managed Database Procedures (AMDP)

ABAP

HANA

SAP HANA offers procedures in SQLScript for

processing application logic directly in the database

Expression of complex logic (incl. if/else, …)

Local variables

Parameterized requests

Multiple result sets

AMDP are developed with ABAP tools in Eclipse and

fully managed by the ABAP infrastructure

Easy access to SAP HANA specialized engines and

function libraries

Seamless integration in CDS via CDS table functions

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 21Public

Efficient development of state of the

art web-based applications

SAP Fiori user experience on all devices

drives the model

Continuous work, device switch and

collaboration

Combination of transactions, search and

analytics in a process

Optimized for SAP HANA

Common cloud qualities (e.g. extensibility)

ABAP development of SAP HANA optimized SAP Fiori appsSAP S/4HANA applications – Product qualities

SAP

Fiori

SAP

HANA

SAP

Gateway

Core Data

Services

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 22Public

ABAP development of SAP HANA optimized SAP Fiori appsEfficient programming model* for all types of apps

SAP Fiori

SAP HANA

AS ABAP

Gateway

SQL

OData

ABAP

Development

Core Data

Services

Application

Frameworks

One common data modelling technology for all scenarios

Core Data Services

Decouple UI logic from backend semantics

OData services via SAP Gateway

Transactional, search, query push down, error and event

handling services

Effective and efficient application development

Modern ABAP language and development toolset

Freestyle or templates based UI development

SAP Fiori Elements and SAPUI5

Exploit SAP HANA features and performance

AMDP & CDS Table Functions

* Introduced with ABAP 7.50

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 23Public

ABAP system

ABAP ChannelsSay goodbye to polling. Collaboration. Industrial IoT.

ABAP SYSTEM

Application server Application server

User

interface

Sensors /

machines

ABAP Push

Channel

Direct TCP/IP

communication

ABAP Push Channel – No more polling

Bi-directional communication via WebSockets in ABAP

User interface is automatically updated when data

changes

ABAP Messaging Channel – Collaborate

Publish / subscribe infrastructure to exchange

messages between sessions

Data changes are published to subscribed clients

immediately

Direct communication with sensors/machines

Support native TCP/IP protocols

User

session

User

session

ABAP Messaging

Channel (pub/sub)

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 24Public

AS ABAP 7.40

Communication with ABAP server through WebSockets

ABAP server only as a stateless ABAP Push Channel server

ABAP Messaging Channels: one-to-many communication

AS ABAP 7.50

Communication between ABAP server and devices through TCP Sockets

ABAP server as ABAP Push Channel server or client, stateful and stateless

ABAP Messaging Channels: point-to-point communication

AS ABAP 7.51

Unlimited amount of data thru ABAP Channels (large messages, configurable)

Improve browser handling for WebSockets: multiplexing, keep-alive

Create ABAP Push Channel in ABAP Development Tools in Eclipse

AS ABAP

WebSocket TCP Socket

ABAP ChannelsWhat’s in

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 25Public

Central update site

ABAP Development Tools in EclipseOverview

Superior toolset for all ABAP-based developments

High developer productivity

Flexible UI with powerful code editor incl. refactoring support

New SQL development tools for CDS and AMDP, incl.

ABAP SQL console

Troubleshooting tools like debugger, tracing, dump analysis

Quality tools for static code checks and unit testing

New code documentation capabilities with ABAP Doc

Open & Extensible

One IDE for different development aspects

SDK for partner and customer extensions

Eclipse Marketplace & Community

SAP Cloud

Platform

https://tools.hana.ondemand.com

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 26Public

ABAP Development Tools in EclipseRelease 7.5 features overview

Source-based editor for dictionary structure

New AMDP debugger

Native BOPF business objects editor in Eclipse

Form-based editor for data elements

Source-based editor for Simple Transformations

Further developer productivity enhancements

Like new Web Dynpro ABAP tools, offline ABAP Doc,

Quick Fixes and enhanced CDS editing support

Find more information here: http://scn.sap.com/community/abap/eclipse/blog/2015/10/22/out-now-adt-version-251-for-the-brand-new-as-abap-750

i

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 27Public

Standard Code Inspector checks incl. SLIN

Advanced quality assurance toolsWhy to use ABAP Test Cockpit?

Central infrastructure for functional, performance,

security code checks

Extensible checks infrastructure

Uniform quality criteria for your whole system

landscape

New quality assurance processes minimize errors

in productive systems

Smooth migration of ABAP code to SAP HANA

and S/4HANA

SAP HANA Checks (FUNCTIONAL_DB)

Syntax Check

Customer specific checks...

ABAP Unit Tests

Security Checks (CVA)

ABAP

Test

Cockpit

(ATC)

based on

Code

Inspector

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 28Public

Advanced quality assurance toolsRemote code analysis with central ATC as of release 7.51

One ATC central check system in your landscape

for all static code checks

ATC central check system accessing and checking

multiple systems with latest ATC checks via RFC call

Remote stubs returning custom code metadata to be

implemented in all systems to be checked

(SAP Note 2270689)

Basis for smooth SAP HANA migration and

SAP S/4HANA conversion

Central Check System (SAP_BASIS 7.51)

RFC

ABAP Test Cockpit (ATC)

Checked

System A

( ≥7.00 )

Customer

Code

Checked

System B

( ≥7.00 )

Checked

System C

( ≥7.00 )

Remote stubs

Customer

Code

Customer

Code

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 29Public

Advanced quality assurance toolsSQL Monitor

secret

secret

Runtime analysis tools for productive systems

Collects runtime information of all executedSQL statements (transaction SQLM)

Provides the transparent SQL profile

Monitored data are linked to the

related process

Various aggregation and drill-down options

SQL Trace integration

For more detailed investigations

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 30Public

Application specific

follow-up activities

Application specific

follow-up activities

Database migration

Software update

Data conversion

Custom code preparation

SAP S/4HANA system conversionCustom code related process

Preparation phase Realization phase

System requirementsMaintenance

plannerPre checks

Software Update

Manager (SUM)

Remove obsolete code

based on Usage Procedure

Log (UPL)

Check SAP HANA related

changes like ORDER BY

Adaptation of necessary

changes

Check SAP S/4HANA

related changes like data

model changes

Custom

code

evaluation

SAP HANA

checks

SAP

S/4HANA

checks

Performance

tuning

Tune performance of

critical database queries

Functional

adaption

Adapt custom code to SAP

HANA and SAP S/4HANA

related changes

Adapt modifications in

SPDD/SPAU

Unicode conversion

Custom code preparation

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 31Public

SAP S/4HANA system conversionMigration of custom ABAP code – Tool support

Download Simplification

Database from SMP and upload

to analysis system1Run Custom Code Extractor and

transfer metadata to analysis

system2Optional: Get usage data to

restrict effort for productively

used custom code 3

Work on customer specific hits4

Analysis SystemTask

Simplification DB

Changed/deprecated functionality

Changed/deprecated business processes

Customer ERP DEV or Q System

Custom Code Extractor

Custom code metadata

Used SAP objects

Extended SAP objects

Modified SAP objects

Customer specific metadata

Usage data from productive System

Result of Analysis

Affected custom code

Affected extensions

Affected modifications

&

&

=

Customer ERP Productive System

Collect Usage Data

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 32Public

ABAP PLATFORM

OUTLOOK & SUMMARY

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 33Public

ABAP Platform Cloud

ABAP programming model for

SAP HANA optimized SAP Fiori apps

Custom ABAP code adaptations

for SAP HANA and SAP S/4HANA

ABAP platformOutlook – Contributions to SAP S/4HANA

FOCUS OF THE

ABAP PLATFORM

DEVELOPMENT

Only

SAP HANA

SAP

S/4HANA

on premise

edition

1611

SAP

S/4HANA

cloud

edition

SAP S/4HANA codeline

ABAP Platform / ABAP Platform Cloud

SAP S/4HANA specific SAP_ABA component

≥ 2017

This is the current state of planning and may be changed by SAP at any time.

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 34Public

ABAP platformKey takeaways

ABAP platform

03

01

02

The ABAP platform provides the basis for

thousands of critical productive ERP systems

The ABAP platform is the foundation

underlying SAP S/4HANA

The ABAP programming model changes rapidly

in order to support and unleash the power of

SAP HANA, Cloud scenarios and SAP Fiori

ABAP developers have to get familiar with the new techniques and tools

in order to deliver highly desirable and scalable applications.

35© 2017 SAP SE or an SAP affiliate company. All rights reserved. 35Public

Further Information

SAP Public WebABAP 7.51 Landing Page

ABAP 7.5 Landing Page

Getting Started with ABAP Programming Model for SAP Fiori Apps

Expressions in ABAP Programming Guidelines

SAP Community ABAP Development

Developer on sap.com

Trial Versions und Downloads

www.sap.com

Product road maps available on sap.com/roadmaps

> SAP NetWeaver Application Server for ABAP

Thank youContact information:

Carine Tchoutouo Djomo

Product Management

Technology Core Platform, SAP SE

[email protected]

Olga Dolinskaja

Product Management

Technology Core Platform, SAP SE

[email protected]

© 2017 SAP SE or an SAP affiliate company. All rights reserved. 37Public

© 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.