I_SupDmndAllDocSupSource

DDL: I_SUPDMNDALLDOCSUPSOURCE Type: view BASIC

Description for Supply Source for All Documents

I_SupDmndAllDocSupSource (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Cross Applications

I_SupDmndAllDocSupSource is a Basic CDS View (Dimension) that provides data about "Description for Supply Source for All Documents" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 2 fields with key field SupAssgmtSource. It has 1 association to related views.

SAP Help Documentation

CategoryBasic CDS Views
Purpose
This CDS view retrieves data for supply sources for assignment.

Prerequisites
Authorizations No authorization objects are assigned to this CDS view.

Structure
Further Important Fields Important fields in this view include the following: Field Name Description SupAssgmtSource Supply Assignment Source

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentLO-RFM-ARN
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source in SQL Select
PackageCross Applications for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves data for supply sources for assignment.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SupDmndAllDocSupSourceT _Text $projection.SupAssgmtSource = _Text.SupAssgmtSource

Annotations (16)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISUPDMNDADSUPSC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey SupAssgmtSource view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Description for Supply Source for All Documents view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SupAssgmtSource Stock Source for All Documents of Supply Demand Overview
SupAssgmtSourceName ddtext Short Text for Fixed Values

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 I_SupDmndAllDocSupSource.
-- 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 I_SupDmndAllDocSupSource AS
SELECT
  cast( dd07v.domvalue_l as arun_sdo_alldoc_stock_source ) AS SupAssgmtSource,
  ddtext AS SupAssgmtSourceName
FROM dd07v
LEFT OUTER JOIN I_SupDmndAllDocSupSourceT AS _Text ON SupAssgmtSource = _Text.SupAssgmtSource  -- association [0..*]
;