A_MDODistributionScopeV4

DDL: A_MDODISTRIBUTIONSCOPEV4 Type: view_entity

Distribution Scope

A_MDODistributionScopeV4 is a CDS View that provides data about "Distribution Scope" in SAP S/4HANA. It reads from 1 data source (I_MDODistributionScope) and exposes 9 fields with key field Id. It is exposed through 1 OData service (REPLICATEDISTRIBUTION).

Data Sources (1)

SourceAliasJoin Type
I_MDODistributionScope I_MDODistributionScope projection

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Distribution Scope view
Metadata.allowExtensions false view

OData Services (1)

ServiceBindingVersionContractRelease
REPLICATEDISTRIBUTION MDO_REPLICATEDISTRIBUTION V4 C2 NOT_RELEASED

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY Id id WorklistID
ValuePath valuepath Value Path
CanonicalPath canonicalpath Canonical Path
Sign sign Type of SIGN component in row type of a Ranges type
Operator operator Type of OPTION component in row type of a Ranges type
LowValue lowvalue Low Value
HighValue highvalue High Value
to_Parent_Id parentid UUID
LastChangeDate lastchangedate Time Stamp

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_MDODistributionScopeV4.
-- 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_MDODistributionScopeV4 AS
SELECT
  Id,
  ValuePath,
  CanonicalPath,
  Sign,
  Operator,
  LowValue,
  HighValue,
  parentid AS to_Parent_Id,
  LastChangeDate
FROM I_MDODistributionScope
;