I_EWA_BusinessPartnerVH

DDL: I_EWA_BUSINESSPARTNERVH Type: view_entity COMPOSITE

Customer Values

I_EWA_BusinessPartnerVH is a Composite CDS View that provides data about "Customer Values" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner) and exposes 3 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartner I_BusinessPartner from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Customer Values view
VDM.viewType #COMPOSITE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey BusinessPartner view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner Business Partner
BusinessPartnerFullName BusinessPartnerFullName Business Partner Full Name
BusinessPartnerCategory BusinessPartnerCategory Business Partner Category

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_EWA_BusinessPartnerVH.
-- 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_EWA_BusinessPartnerVH AS
SELECT
  BusinessPartner,
  BusinessPartnerFullName,
  BusinessPartnerCategory
FROM I_BusinessPartner
;