I_EmplContactCard

DDL: I_EMPLCONTACTCARD SQL: IEMPLCONTACTCARD Type: view COMPOSITE

Employee Contact Card for CATS Applications

I_EmplContactCard is a Composite CDS View that provides data about "Employee Contact Card for CATS Applications" in SAP S/4HANA. It reads from 1 data source (I_PersonWorkAgreement_1) and exposes 3 fields with key field PersonWorkAgreement. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PersonWorkAgreement_1 _PersonWorkAgreement from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_WorkforcePersonImageURL _WorkforcePersonImageURL _WorkforcePersonImageURL.Person = _PersonWorkAgreement.Person

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEMPLCONTACTCARD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Employee Contact Card for CATS Applications view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.personalData.blocking #REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PersonWorkAgreement I_PersonWorkAgreement_1 PersonWorkAgreement Personnel No.
PersonExternalID
IsBusinessPurposeCompleted Name

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_EmplContactCard.
-- 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.
-- SQL view name: IEMPLCONTACTCARD

CREATE VIEW I_EmplContactCard AS
SELECT
  _PersonWorkAgreement.PersonWorkAgreement AS PersonWorkAgreement,
  _PersonWorkAgreement._WorkforcePerson.PersonExternalID AS PersonExternalID
FROM I_PersonWorkAgreement_1 AS _PersonWorkAgreement
LEFT OUTER JOIN I_WorkforcePersonImageURL AS _WorkforcePersonImageURL ON _WorkforcePersonImageURL.Person = _PersonWorkAgreement.Person  -- association [0..1]
;