FINOC_RULE_PC_EXAMPLE

DDL: FINOC_RULE_PC_EXAMPLE Type: view_entity

Orgl Change: Example Rule for Profit Ctr

FINOC_RULE_PC_EXAMPLE is a CDS View that provides data about "Orgl Change: Example Rule for Profit Ctr" in SAP S/4HANA. It reads from 1 data source (FINOC_RULE_PC_BASE) and exposes 5 fields with key fields kokrs, prctr.

Data Sources (1)

SourceAliasJoin Type
FINOC_RULE_PC_BASE FINOC_RULE_PC_BASE from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Orgl Change: Example Rule for Profit Ctr view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY kokrs ControllingArea Controlling Area
KEY prctr ProfitCenter Profit Center
orgl_change OrganizationalChange Organizational Change
segment_old SegmentBeforeOrglChange Segment number
segment SegmentByOrglChange Segment number

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_RULE_PC_EXAMPLE.
-- 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.

CREATE VIEW FINOC_RULE_PC_EXAMPLE AS
SELECT
  ControllingArea AS kokrs,
  ProfitCenter AS prctr,
  OrganizationalChange AS orgl_change,
  SegmentBeforeOrglChange AS segment_old,
  SegmentByOrglChange AS segment
FROM FINOC_RULE_PC_BASE
;