C_EntProjMemberContactCard

DDL: C_ENTPROJMEMBERCONTACTCARD Type: view_entity CONSUMPTION

Enterprise Project Member Details

C_EntProjMemberContactCard is a Consumption CDS View that provides data about "Enterprise Project Member Details" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner) and exposes 8 fields with key field BusinessPartnerUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartner BusinessPartner from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_BusinessUserBasic _ContactData $projection.BusinessPartner = _ContactData.BusinessPartner

Annotations (10)

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

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerUUID I_BusinessPartner BusinessPartnerUUID UUID
BusinessPartner I_BusinessPartner BusinessPartner Issuing Authority
PersonFullName I_BusinessPartner PersonFullName Full Name
NormalizedPhoneNumber
DefaultEmailAddress
PersonExternalID
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_EntProjMemberContactCard.
-- 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_EntProjMemberContactCard AS
SELECT
  BusinessPartner.BusinessPartnerUUID AS BusinessPartnerUUID,
  BusinessPartner.BusinessPartner AS BusinessPartner,
  BusinessPartner.PersonFullName AS PersonFullName,
  _ContactData._WorkplaceAddress.NormalizedPhoneNumber AS NormalizedPhoneNumber,
  _ContactData._WorkplaceAddress.DefaultEmailAddress AS DefaultEmailAddress,
  _BuPaIdentification[1: BPIdentificationType = 'HCM001'].BPIdentificationNumber AS PersonExternalID,
  AuthorizationGroup,
  IsBusinessPurposeCompleted
FROM I_BusinessPartner AS BusinessPartner
LEFT OUTER JOIN I_BusinessUserBasic AS _ContactData ON BusinessPartner = _ContactData.BusinessPartner  -- association [0..1]
;