A_MDORULE

DDL: A_MDORULE Type: view_entity

MDO: Data Ownership Model - Rule

A_MDORULE is a CDS View that provides data about "MDO: Data Ownership Model - Rule" in SAP S/4HANA. It reads from 1 data source (R_MDORULE) and exposes 6 fields with key field Id. It is exposed through 1 OData service (REPLICATEDATAOWNERSHIP).

Data Sources (1)

SourceAliasJoin Type
R_MDORULE R_MDORULE projection

Annotations (3)

NameValueLevelField
EndUserText.label MDO: Data Ownership Model - Rule view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.allowExtensions true view

OData Services (1)

ServiceBindingVersionContractRelease
REPLICATEDATAOWNERSHIP MDO_REPLICATEDATAOWNERSHIP V4 C2 NOT_RELEASED

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Id Id WorklistID
RuleNumber RuleNumber Sequence
OwnerSystem OwnerSystem Business System
Summary Summary Summary
ParentId ParentId UUID
OwnershipModelId OwnershipModelId UUID

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 A_MDORULE.
-- 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 A_MDORULE AS
SELECT
  Id,
  RuleNumber,
  OwnerSystem,
  Summary,
  ParentId,
  OwnershipModelId
FROM R_MDORULE
;