I_SpecComponentTypeText

DDL: I_SPECCOMPONENTTYPETEXT SQL: ISPECCOMPTYPET Type: view BASIC

Specification Component Type Text

I_SpecComponentTypeText is a Basic CDS View that provides data about "Specification Component Type Text" in SAP S/4HANA. It reads from 1 data source (tcg77) and exposes 5 fields with key fields SpecificationComponentType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
tcg77 tcg77 from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SpecComponentType _SpecificationComponentType $projection.SpecificationComponentType = _SpecificationComponentType.SpecificationComponentType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISPECCOMPTYPET view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SpecificationComponentType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Specification Component Type Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SpecificationComponentType compcat Component Type
KEY Language langu Primary lang.
SpecificationComponentTypeDesc compnam Component Type
_SpecificationComponentType _SpecificationComponentType
_Language _Language

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_SpecComponentTypeText.
-- 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: ISPECCOMPTYPET

CREATE VIEW I_SpecComponentTypeText AS
SELECT
  compcat AS SpecificationComponentType,
  langu AS Language,
  compnam AS SpecificationComponentTypeDesc
FROM tcg77
LEFT OUTER JOIN I_SpecComponentType AS _SpecificationComponentType ON SpecificationComponentType = _SpecificationComponentType.SpecificationComponentType  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;