FINOC_RULE_RAR_DEFAULT

DDL: FINOC_RULE_RAR_DEFAULT Type: view_entity

Orgl Change-Rule: Perf. Obligation Dflt

FINOC_RULE_RAR_DEFAULT is a CDS View that provides data about "Orgl Change-Rule: Perf. Obligation Dflt" in SAP S/4HANA. It reads from 2 data sources (FINOC_RULE_RAR_BASE, I_PrftCtrToRAPerfObligation) and exposes 15 fields with key fields pob_id, orgl_change.

Data Sources (2)

SourceAliasJoin Type
FINOC_RULE_RAR_BASE base from
I_PrftCtrToRAPerfObligation rt left_outer

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #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-Rule: Perf. Obligation Dflt view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY pob_id FINOC_RULE_RAR_BASE pob_id POB
KEY orgl_change FINOC_RULE_RAR_BASE orgl_change Organizational Change
kokrs FINOC_RULE_RAR_BASE kokrs Org. Value
bukrs FINOC_RULE_RAR_BASE bukrs Value
prctr_old FINOC_RULE_RAR_BASE prctr_old Old Profit Center
prctr FINOC_RULE_RAR_BASE prctr Profit Centers
segment_old FINOC_RULE_RAR_BASE segment_old Segment number
segment FINOC_RULE_RAR_BASE segment Segment number
srce_kdauf FINOC_RULE_RAR_BASE srce_kdauf Source Sales Order
srce_kdpos FINOC_RULE_RAR_BASE srce_kdpos Source Sales Order Item
srce_pob_id FINOC_RULE_RAR_BASE srce_pob_id
srce_matnr FINOC_RULE_RAR_BASE srce_matnr Source Product
srce_werks FINOC_RULE_RAR_BASE srce_werks Source Plant
srce_aufnr FINOC_RULE_RAR_BASE srce_aufnr Source Order
contract_id FINOC_RULE_RAR_BASE contract_id Contract ID

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_RAR_DEFAULT.
-- 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_RAR_DEFAULT AS
SELECT
  base.pob_id AS pob_id,
  base.orgl_change AS orgl_change,
  base.kokrs AS kokrs,
  base.bukrs AS bukrs,
  base.prctr_old AS prctr_old,
  base.prctr AS prctr,
  base.segment_old AS segment_old,
  base.segment AS segment,
  base.srce_kdauf AS srce_kdauf,
  base.srce_kdpos AS srce_kdpos,
  base.srce_pob_id AS srce_pob_id,
  base.srce_matnr AS srce_matnr,
  base.srce_werks AS srce_werks,
  base.srce_aufnr AS srce_aufnr,
  base.contract_id AS contract_id
FROM FINOC_RULE_RAR_BASE AS base
LEFT OUTER JOIN I_PrftCtrToRAPerfObligation AS rt ON /* join condition not captured in parsed metadata */
;