Saturday 14 December 2019

CDS based data extraction – Part I Overview

Anyone interested in the state of the art extracting data in the SAP universe and beyond? This blog (series) is meant to provide a comprehensive overview of the topic, highlight the main features but also make sure you understand the meaning and implication of all available annotations related to the topic. I am aware of the fact that various documents/blogs have been published on the topic already, but for sake of completeness I will repeat parts here which you might already know.

While this blog post is focused on the Core Data Services (CDS) flavor based extraction from SAP S/4HANA Cloud Edition (CE) to SAP BW and SAP BW/4HANA please, be aware that the examples explained here are meant to be seen in a wider scope, finally provisioning all SAP solutions, may it be cloud or on-premise, with data warehouse grade extraction capabilities. This is happening in the context of the SAP Cloud Data Integration (CDI)

Possible Sources (aka Data providers):

◉ SAP S/4HANA (CE/OP)
◉ SAP Success Factors
◉ SAP C/4HANA
◉ SAP Ariba
◉ SAP Field Glass
◉ SAP Concur
◉ ….

Possible Targets (aka Data consumers):

◉ SAP Analytics Cloud
◉ SAP BW4/HANA, SAP BW
◉ SAP Data Warehouse Cloud
◉ SAP Data Hub
◉ …

Here we go…

If you are familiar with an SAP S/4HANA system you surely will have come across CDS views as part of the Virtual Data Model (VDM), may it be in the context of operational analytics, (planning) transactions or other. To harnish the power of SAP HANA under the SAP S/4HANA, SAP has introduced CDS modeling and has spent a great deal of effort into creating CDS data models on top of all applications consistently reflecting and exposing all entities.

Why not use this as a base for data extraction, similarly to the way in which extractors have worked before?

Some time ago SAP has released CDS view annotations which enable you to use a CDS view as an extractor aka DataSource on BW side.

Starting with SAP S/4HANA CE1905, SAP has started rolling out extraction enabled standard CDS views and has been extending the coverage since.

In an SAP S/4HANA system CDS based extraction is handled by the Operational Data Provisioning (ODP) framework, the context is called ODP – ABAP CDS Views  (ODP_CDS).

On BW side your source system will need to be connected in context ABAP CDS Views (ODP_CDS).

Below you can see the architecture in detail

SAP S/4HANA, SAP BW/4HANA, SAP S/4HANA Cloud, SAP HANA Tutorial and Materials, SAP HANA Certifications, SAP HANA Online Exam

Availability


The enablement of ABAP CDS views for extraction has been available since SAP S/4HANA OP1808

Technically speaking this requires…

on provider side:

◉ SAP BW 7.50 >= SP5
◉ SAP BW/4HANA 1.0 >= SP01

on consumer side (using the ODP Source System with Context ODP_CDS)

◉ SAP BW > 7.3x
◉ SAP BW/4HANA 1.0 >= SP00

A CDS view can be enabled for data extraction by just adding the following annotation
@Analytics.dataExtraction.enabled
or
@Analytics.dataExtraction.enabled : true
After adding this annotation, the CDS view is available for extraction by the ODP frame work and visible for its data consumers.

Authorizations


Well one step back, it will not be visible by default for the data consumers. You first will have to have the proper authorizations in place for the communication arrangement / remote user.

In case of an SAP S/4HANA CE system, this comes out of the box when setting up the communication arrangement ( SAP_COM_0042) for the source system connection as described here -> Details -> Set-up instructions.

In case of an SAP S/4HANA OP system, please follow the instructions as described in note 2716363 for your remote connection user (“ALEREMOTE” if you will). One side note regarding the authorizations for the remote connection user. The standard CDS views, enabled for extraction, that SAP delivers are bound to stability contract Contract for system-internal use (C1). 

You need to make sure to set the authorizations for the connection user accordingly to only have these “C1 released”-CDS views displayed and be used as DataSources.

For customer created CDS views the authorizations need to be maintained in a similar way. It is highly recommended

◉ to apply naming conventions for custom CDS views
◉ to work with the API release state for these CDS views

This way you will be able to only expose the CDS views to consumers that are meant for extraction.

Classification of CDS views


Furthermore you are encouraged to classify your CDS view, i.e. are we talking about transactional data, attributes, texts, or hierarchies? This will also help the consuming applications to correctly use the view.

Either by

specifying a value for
@Analytics.dataCategory

◉ #FACT for transaction data
◉ #DIMENSION for master data attributes
◉ #CUBE (only to be used in exceptional cases)

or specifiying a value for
@ObjectModel.dataCategory

◉ #TEXT for text views
◉ #HIERARCHY for hierarchy views

With these steps in place you have a first easy extraction enabled CDS view, in full mode.

In full mode, all available data is extracted in one data extraction run. For potentially smaller data volumes (~ < 1,000,000 data records) without any complex logic and load time considerations, a full extraction can cover the most straightforward cases.

Apart from the number of records, the breadth of the CDS view needs to be taken into consideration as well, as both factors will determine load volume and duration. Full extraction can mostly be applied for master data and text loads. For the update mode full extraction, no further annotations need to be assigned to the CDS view.

Please note that CDS views with (input) parameters only support full extraction.

After that you will be able to find this CDS view on SAP BW side, i.e. create a DataSource. Please note that you will need to search for the technical SQL view name (@AbapCatalog.sqlViewName) of the CDS view, not the CDS view name.

So in case of the CDS view for Sales Organization, you will need to search for CSDSALESORGDX and not for C_SalesOrganizationDEX.

CDS View in source system:

SAP S/4HANA, SAP BW/4HANA, SAP S/4HANA Cloud, SAP HANA Tutorial and Materials, SAP HANA Certifications, SAP HANA Online Exam

Data Source view on SAP BW(/4HANA) side:

Right-click on your ODP_CDS source system in the SAP BW modeling tools. In case you do not see the New -> DataSource option please make sure you have the latest version of the BW Modeling tools installed .

SAP S/4HANA, SAP BW/4HANA, SAP S/4HANA Cloud, SAP HANA Tutorial and Materials, SAP HANA Certifications, SAP HANA Online Exam

Choose next

SAP S/4HANA, SAP BW/4HANA, SAP S/4HANA Cloud, SAP HANA Tutorial and Materials, SAP HANA Certifications, SAP HANA Online Exam

Choose option Proposal from Operational Data Provider

SAP S/4HANA, SAP BW/4HANA, SAP S/4HANA Cloud, SAP HANA Tutorial and Materials, SAP HANA Certifications, SAP HANA Online Exam

Search for the sqlViewName of your CDS view

SAP S/4HANA, SAP BW/4HANA, SAP S/4HANA Cloud, SAP HANA Tutorial and Materials, SAP HANA Certifications, SAP HANA Online Exam

Provide an application component and a Description. The DataSource Type is derived from the @Analytics.dataCategory/@ObjectModel.dataCategory defined in the CDS view.

SAP S/4HANA, SAP BW/4HANA, SAP S/4HANA Cloud, SAP HANA Tutorial and Materials, SAP HANA Certifications, SAP HANA Online Exam

Voila, there is your DataSource.

SAP S/4HANA, SAP BW/4HANA, SAP S/4HANA Cloud, SAP HANA Tutorial and Materials, SAP HANA Certifications, SAP HANA Online Exam

No comments:

Post a Comment