P_RSHResourceSrvcCostLvlSlice

DDL: P_RSHRESOURCESRVCCOSTLVLSLICE SQL: PRSHRESSRVCSTSL Type: view COMPOSITE

P_RSHResourceSrvcCostLvlSlice is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_PersonWorkAgrmtSrvcCostLevel) and exposes 3 fields with key field EmploymentInternalId.

Data Sources (1)

SourceAliasJoin Type
I_PersonWorkAgrmtSrvcCostLevel I_PersonWorkAgrmtSrvcCostLevel from

Parameters (2)

NameTypeDefault
P_StartDate syst_datum
P_EndDate syst_datum

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PRSHRESSRVCSTSL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
VDM.private true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EmploymentInternalId PersonWorkAgreement Personnel No.
StartDate
EndDate

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_RSHResourceSrvcCostLvlSlice.
-- 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: PRSHRESSRVCSTSL
-- Parameters: P_StartDate : syst_datum, P_EndDate : syst_datum

CREATE VIEW P_RSHResourceSrvcCostLvlSlice AS
SELECT
  PersonWorkAgreement AS EmploymentInternalId,
  min(StartDate) AS StartDate,
  min(EndDate) AS EndDate
FROM I_PersonWorkAgrmtSrvcCostLevel
;