FINOC_RT_CCR_FILL_TIME_SLICED

DDL: FINOC_RT_CCR_FILL_TIME_SLICED SQL: FINOCV_RTCCRFILP Type: view

Orgl Change: CCTR with prev. time slice

FINOC_RT_CCR_FILL_TIME_SLICED is a CDS View that provides data about "Orgl Change: CCTR with prev. time slice" in SAP S/4HANA. It reads from 2 data sources (I_CostCenter, I_CostCenter) and exposes 4 fields with key fields ControllingArea, CostCenter, ValidityStartDate.

Data Sources (2)

SourceAliasJoin Type
I_CostCenter CostCenter from
I_CostCenter CostCenterPreceedingTimeSlice inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName FINOCV_RTCCRFILP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Orgl Change: CCTR with prev. time slice view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ControllingArea I_CostCenter ControllingArea Controlling Area
KEY CostCenter I_CostCenter CostCenter Cost Center
KEY ValidityStartDate I_CostCenter ValidityStartDate Validity Start Date
ValidityEndDatePreviousSlice

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 FINOC_RT_CCR_FILL_TIME_SLICED.
-- 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: FINOCV_RTCCRFILP

CREATE VIEW FINOC_RT_CCR_FILL_TIME_SLICED AS
SELECT
  CostCenter.ControllingArea AS ControllingArea,
  CostCenter.CostCenter AS CostCenter,
  CostCenter.ValidityStartDate AS ValidityStartDate,
  max( CostCenterPreceedingTimeSlice.ValidityEndDate ) AS ValidityEndDatePreviousSlice
FROM I_CostCenter AS CostCenter
INNER JOIN I_CostCenter AS CostCenterPreceedingTimeSlice ON /* join condition not captured in parsed metadata */
;