I_SpecComponentType

DDL: I_SPECCOMPONENTTYPE SQL: ISPECCOMPTYPE Type: view BASIC

Specification Component Type

I_SpecComponentType is a Basic CDS View that provides data about "Specification Component Type" in SAP S/4HANA. It reads from 1 data source (tcg76) and exposes 3 fields with key field SpecificationComponentType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tcg76 tcg76 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SpecComponentTypeText _SpecComponentTypeText $projection.SpecificationComponentType = _SpecComponentTypeText.SpecificationComponentType

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISPECCOMPTYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE 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 view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SpecificationComponentType compcat Component Type
SpecComponentTypeAssgmtIsAllwd csubflg Component Assgt
_SpecComponentTypeText _SpecComponentTypeText

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_SpecComponentType.
-- 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: ISPECCOMPTYPE

CREATE VIEW I_SpecComponentType AS
SELECT
  compcat AS SpecificationComponentType,
  csubflg AS SpecComponentTypeAssgmtIsAllwd
FROM tcg76
LEFT OUTER JOIN I_SpecComponentTypeText AS _SpecComponentTypeText ON SpecificationComponentType = _SpecComponentTypeText.SpecificationComponentType  -- association [0..*]
;