I_CustomerDataControllerUsage

DDL: I_CUSTOMERDATACONTROLLERUSAGE Type: view_entity BASIC

Customer DataController Usage

I_CustomerDataControllerUsage is a Basic CDS View that provides data about "Customer DataController Usage" in SAP S/4HANA. It reads from 7 data sources and exposes 6 fields with key field Customer.

Data Sources (7)

SourceAliasJoin Type
but000 But inner
cvi_cust_link CustLink inner
but_dc_link dclink from
kna1 Kna1 inner
mdbpcv_dc mdbp union_all
P_TF_CV_DCP P_TF_CV_DCP inner
P_TF_CV_DCP P_TF_CV_DCP inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Customer DataController Usage view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Customer kna1 kunnr Stock customer
DataControllerName but_dc_link data_ctrlr Data Controller
client
idnumberasCustomer
DataControllerName mdbpcv_dc data_ctrlr Data Controller
BPDataPurposeText mdbpcv_dc purpose Purpose Type

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CustomerDataControllerUsage.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_CustomerDataControllerUsage AS
SELECT
  Kna1.kunnr AS Customer,
  dclink.data_ctrlr AS DataControllerName,
  dclink.purpose as BPDataPurposeText AS client,
  mdbp.purpose AS BPDataPurposeText
FROM but_dc_link AS dclink
INNER JOIN but000 AS But ON /* join condition not captured in parsed metadata */
INNER JOIN cvi_cust_link AS CustLink ON /* join condition not captured in parsed metadata */
INNER JOIN kna1 AS Kna1 ON /* join condition not captured in parsed metadata */
INNER JOIN P_TF_CV_DCP ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): mdbpcv_dc
;