I_SupDmndAssgdSupTypeText

DDL: I_SUPDMNDASSGDSUPTYPETEXT SQL: IASSGDSUPTYPTXT Type: view BASIC

Assigned Supply Type Text

I_SupDmndAssgdSupTypeText is a Basic CDS View that provides data about "Assigned Supply Type Text" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 5 fields with key fields AssignedSupplyType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SupDmndAssgdSupType _SupDmndRqmtType $projection.AssignedSupplyType = _SupDmndRqmtType.AssignedSupplyType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IASSGDSUPTYPTXT view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AssignedSupplyType view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #X view
EndUserText.label Assigned Supply Type Text view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AssignedSupplyType Lower Value
KEY Language dd07v ddlanguage Lang.
DomainValue dd07v domvalue_l Lower Value
AssignedSupplyTypeName ddtext Short text
_SupDmndRqmtType _SupDmndRqmtType

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_SupDmndAssgdSupTypeText.
-- 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.
-- SQL view name: IASSGDSUPTYPTXT

CREATE VIEW I_SupDmndAssgdSupTypeText AS
SELECT
  cast( domvalue_l as arun_bskz ) AS AssignedSupplyType,
  dd07v.ddlanguage AS Language,
  dd07v.domvalue_l AS DomainValue,
  ddtext AS AssignedSupplyTypeName
FROM dd07v
LEFT OUTER JOIN I_SupDmndAssgdSupType AS _SupDmndRqmtType ON AssignedSupplyType = _SupDmndRqmtType.AssignedSupplyType  -- association [0..1]
;