C_EntProjCustomerContactCard

DDL: C_ENTPROJCUSTOMERCONTACTCARD Type: view_entity CONSUMPTION

Enterprise Project Customer Details

C_EntProjCustomerContactCard is a Consumption CDS View that provides data about "Enterprise Project Customer Details" in SAP S/4HANA. It reads from 1 data source (I_Customer) and exposes 9 fields with key field Customer. It is exposed through 1 OData service (UI_ENTPROJCTRLPROFNLSRVC).

Data Sources (1)

SourceAliasJoin Type
I_Customer I_Customer from

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.representativeKey Customer view
VDM.viewType #CONSUMPTION view
EndUserText.label Enterprise Project Customer Details view

OData Services (1)

ServiceBindingVersionContractRelease
UI_ENTPROJCTRLPROFNLSRVC UI_ENTPROJCTRLPROFNLSRVC V4 C1 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Customer Customer Sold-to Party
CustomerName CustomerName Name of Customer
StreetName StreetName Text
CityName CityName Name
PostalCode PostalCode Postal Code
Country Country Venue: Ctry/Reg
CustomerAccountGroup CustomerAccountGroup Account group
AuthorizationGroup AuthorizationGroup AuthorizGroup
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed

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 C_EntProjCustomerContactCard.
-- 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 C_EntProjCustomerContactCard AS
SELECT
  Customer,
  CustomerName,
  StreetName,
  CityName,
  PostalCode,
  Country,
  CustomerAccountGroup,
  AuthorizationGroup,
  IsBusinessPurposeCompleted
FROM I_Customer
;