I_EmplContactCard

DDL: I_EMPLCONTACTCARD SQL: IEMPLCONTACTCARD Type: view COMPOSITE Package: ODATA_HCM_CATS_REPORTING

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. It is exposed through 2 OData services (ASQL_F2582, UI_SOURCINGPROJECT_MANAGE). Part of development package ODATA_HCM_CATS_REPORTING.

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

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F2582 ASQL_F2582 C2 NOT_RELEASED
UI_SOURCINGPROJECT_MANAGE UI_SOURCINGPROJECT_MANAGE V2 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PersonWorkAgreement I_PersonWorkAgreement_1 PersonWorkAgreement Personnel No.
PersonExternalID
PersonasBusinessPartner 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]
;