I_SupDmndRqmtTypeText

DDL: I_SUPDMNDRQMTTYPETEXT SQL: IRQMTTYPTXT Type: view BASIC

Requirement Type Text

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

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SupDmndRqmtType _RequirementType $projection.RequirementType = _RequirementType.RequirementType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IRQMTTYPTXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RequirementType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #X view
EndUserText.label Requirement Type Text view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RequirementType Lower Value
KEY Language dd07v ddlanguage Lang.
DomainValue dd07v domvalue_l Lower Value
RequirementTypeName ddtext Short text
_RequirementType _RequirementType

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_SupDmndRqmtTypeText.
-- 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: IRQMTTYPTXT

CREATE VIEW I_SupDmndRqmtTypeText AS
SELECT
  cast( domvalue_l as arun_sdo_reqmt_type ) AS RequirementType,
  dd07v.ddlanguage AS Language,
  dd07v.domvalue_l AS DomainValue,
  ddtext AS RequirementTypeName
FROM dd07v
LEFT OUTER JOIN I_SupDmndRqmtType AS _RequirementType ON RequirementType = _RequirementType.RequirementType  -- association [0..1]
;