P_EmpStatusUnion

DDL: P_EMPSTATUSUNION SQL: PEMPSTATUSUNION Type: view BASIC Package: WFD_OBSOLETE

Employee Status Union

P_EmpStatusUnion is a Basic CDS View that provides data about "Employee Status Union" in SAP S/4HANA. It reads from 1 data source (P_EmployStatusOp) and exposes 4 fields with key fields EmploymentInternalID, PersonnelNumber, ValidityStartDate. Part of development package WFD_OBSOLETE.

Data Sources (1)

SourceAliasJoin Type
P_EmployStatusOp P_EmployStatusOp from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName PEMPSTATUSUNION view
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY EmploymentInternalID EmploymentInternalID WorkForce Assgmt ID
KEY PersonnelNumber PersonnelNumber Personnel No.
KEY ValidityStartDate ValidityStartDate Validity Start Date
ValidityEndDate ValidityEndDate ValidTo

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 P_EmpStatusUnion.
-- 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: PEMPSTATUSUNION

CREATE VIEW P_EmpStatusUnion AS
SELECT
  EmploymentInternalID,
  PersonnelNumber,
  ValidityStartDate,
  ValidityEndDate
FROM P_EmployStatusOp
;