I_ProdCmplncEvtCntctCard

DDL: I_PRODCMPLNCEVTCNTCTCARD Type: view COMPOSITE

I view for Person Contact Card

I_ProdCmplncEvtCntctCard is a Composite CDS View that provides data about "I view for Person Contact Card" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 18 fields with key field ContactCardID.

Data Sources (1)

SourceAliasJoin Type
I_UserContactCard I_UserContactCard from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IPCEPERSCONTCARD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label I view for Person Contact Card view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
UI.headerInfo.typeName Initiated By view
UI.headerInfo.typeNamePlural Initiated By view
UI.headerInfo.title.value FullName view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.personalData.blocking #REQUIRED view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY ContactCardID ContactCardID User name
BusinessPartnerUUID BusinessPartnerUUID UUID
Person Person Person/ Farm/ Field
FirstName FirstName First Name
LastName LastName Last Name
FullName FullName Name
UserDescription UserDescription Full Name
AddressID AddressID Ship-to address
PhoneNumber PhoneNumber Telephone no.
MobilePhoneNumber MobilePhoneNumber Telephone
FaxNumber FaxNumber Fax Number
EmailAddress EmailAddress E-Mail Address
Department Department Department
FunctionalTitleName FunctionalTitleName Unit Func.
ContactCardRole ContactCardRole
ContactCardType ContactCardType
ContactCardNavLinkSemanticObj ContactCardNavLinkSemanticObj
ContactCardNavLinkQueryPart ContactCardNavLinkQueryPart

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_ProdCmplncEvtCntctCard.
-- 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_ProdCmplncEvtCntctCard AS
SELECT
  ContactCardID,
  BusinessPartnerUUID,
  Person,
  FirstName,
  LastName,
  FullName,
  UserDescription,
  AddressID,
  PhoneNumber,
  MobilePhoneNumber,
  FaxNumber,
  EmailAddress,
  Department,
  FunctionalTitleName,
  ContactCardRole,
  ContactCardType,
  ContactCardNavLinkSemanticObj,
  ContactCardNavLinkQueryPart
FROM I_UserContactCard
;