P_NextCostCtrActivityType

DDL: P_NEXTCOSTCTRACTIVITYTYPE Type: view_entity COMPOSITE Package: FINS_FIS_FICO

N

P_NextCostCtrActivityType is a Composite CDS View that provides data about "N" in SAP S/4HANA. It reads from 1 data source (I_CostCenterActivityType) and exposes 3 fields with key fields ControllingArea, CostCtrActivityType. Part of development package FINS_FIS_FICO.

Data Sources (1)

SourceAliasJoin Type
I_CostCenterActivityType I_CostCenterActivityType from

Parameters (1)

NameTypeDefault
P_KeyDate sydate

Annotations (8)

NameValueLevelField
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.representativeKey CostCtrActivityType view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea I_CostCenterActivityType ControllingArea Controlling Area
KEY CostCtrActivityType I_CostCenterActivityType 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_NextCostCtrActivityType.
-- 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.
-- Parameters: P_KeyDate : sydate

CREATE VIEW P_NextCostCtrActivityType AS
SELECT
  I_CostCenterActivityType.ControllingArea AS ControllingArea,
  I_CostCenterActivityType.CostCtrActivityType AS CostCtrActivityType,
  min( I_CostCenterActivityType.ValidityEndDate ) AS ValidityEndDate
FROM I_CostCenterActivityType
;