I_UsedConstructionTypeVH

DDL: I_USEDCONSTRUCTIONTYPEVH SQL: IUSEDCONSTTYPEVH Type: view COMPOSITE

Used Construction Type Value Help

I_UsedConstructionTypeVH is a Composite CDS View that provides data about "Used Construction Type Value Help" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProductText _ProductText $projection.ConstructionMaterial = _ProductText.Product

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IUSEDCONSTTYPEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Used Construction Type Value Help view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey ConstructionMaterial view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
Search.searchable false view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ConstructionMaterial I_EquipmentTimeSeg ConstructionMaterial ConstType
ConstructionMaterial ConstType
_ProductText _ProductText

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_UsedConstructionTypeVH.
-- 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: IUSEDCONSTTYPEVH

CREATE VIEW I_UsedConstructionTypeVH AS
SELECT
  I_EquipmentTimeSeg.ConstructionMaterial AS ConstructionMaterial
LEFT OUTER JOIN I_ProductText AS _ProductText ON ConstructionMaterial = _ProductText.Product  -- association [0..*]
;