P_ActyTypeValidLatest

DDL: P_ACTYTYPEVALIDLATEST SQL: PACTYLTST Type: view BASIC

Cost Center Activity Types With Max End Date

P_ActyTypeValidLatest is a Basic CDS View that provides data about "Cost Center Activity Types With Max End Date" in SAP S/4HANA. It reads from 1 data source (I_CostCenterActivityType) and exposes 3 fields with key fields ControllingArea, CostCtrActivityType.

Data Sources (1)

SourceAliasJoin Type
I_CostCenterActivityType I_CostCenterActivityType from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName PACTYLTST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #BASIC view
EndUserText.label Cost Center Activity Types With Max End Date view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea ControllingArea Controlling Area
KEY CostCtrActivityType CostCtrActivityType Activity Type
ValidityEndDate

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_ActyTypeValidLatest.
-- 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: PACTYLTST

CREATE VIEW P_ActyTypeValidLatest AS
SELECT
  ControllingArea,
  CostCtrActivityType,
  max(ValidityEndDate) AS ValidityEndDate
FROM I_CostCenterActivityType
;