C_CAInvcgUserContact

DDL: C_CAINVCGUSERCONTACT Type: view_entity COMPOSITE

Benutzerkontaktdaten

C_CAInvcgUserContact is a Composite CDS View that provides data about "Benutzerkontaktdaten" in SAP S/4HANA. It reads from 1 data source (I_UserContactCard) and exposes 6 fields with key field ContactCardID.

Data Sources (1)

SourceAliasJoin Type
I_UserContactCard _User from

Annotations (8)

NameValueLevelField
VDM.viewType #COMPOSITE view
EndUserText.label Benutzerkontaktdaten view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.representativeKey ContactCardID view
Analytics.technicalName CCAUSERCONTACT view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ContactCardID ContactCardID User name
FullName I_UserContactCard FullName Name
Department I_UserContactCard Department Department
FunctionalTitleName I_UserContactCard FunctionalTitleName Unit Func.
PhoneNumber I_UserContactCard PhoneNumber Telephone no.
EmailAddress I_UserContactCard EmailAddress E-Mail Address

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_CAInvcgUserContact.
-- 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_CAInvcgUserContact AS
SELECT
  ContactCardID,
  _User.FullName AS FullName,
  _User.Department AS Department,
  _User.FunctionalTitleName AS FunctionalTitleName,
  _User.PhoneNumber AS PhoneNumber,
  _User.EmailAddress AS EmailAddress
FROM I_UserContactCard AS _User
;