I_CustSuplrDataControllerusge

DDL: I_CUSTSUPLRDATACONTROLLERUSGE Type: view_entity BASIC

Customer and Supplier Datacntrlr Usge

I_CustSuplrDataControllerusge is a Basic CDS View that provides data about "Customer and Supplier Datacntrlr Usge" in SAP S/4HANA. It reads from 6 data sources and exposes 5 fields with key fields Customer, Supplier, BusinessPartner, DataControllerName, Purpose.

Data Sources (6)

SourceAliasJoin Type
but000 But inner
cvi_cust_link CustLink inner
but_dc_link DcLink from
kna1 Kna1 inner
lfa1 lfa1 inner
cvi_vend_link vendlink inner

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Customer and Supplier Datacntrlr Usge 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 (5)

KeyFieldSource TableSource FieldDescription
KEY Customer kna1 kunnr Stock customer
KEY Supplier lfa1 lifnr Vendor no.
KEY BusinessPartner but_dc_link partner With Partner
KEY DataControllerName but_dc_link data_ctrlr Data Controller
KEY Purpose but_dc_link 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_CustSuplrDataControllerusge.
-- 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_CustSuplrDataControllerusge AS
SELECT
  kna1.kunnr AS Customer,
  lfa1.lifnr AS Supplier,
  DcLink.partner AS BusinessPartner,
  DcLink.data_ctrlr AS DataControllerName,
  DcLink.purpose AS Purpose
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 cvi_vend_link AS vendlink ON /* join condition not captured in parsed metadata */
INNER JOIN lfa1 ON /* join condition not captured in parsed metadata */
;