I_SpecValAssgmtType

DDL: I_SPECVALASSGMTTYPE SQL: ISPECVATYPE Type: view BASIC Package: VDM_PLMB_SPC_VA

Specification Value Assignment Type

I_SpecValAssgmtType is a Basic CDS View that provides data about "Specification Value Assignment Type" in SAP S/4HANA. It reads from 1 data source (tcg11) and exposes 5 fields with key field SpecValAssgmtType. Part of development package VDM_PLMB_SPC_VA.

Data Sources (1)

SourceAliasJoin Type
tcg11 tcg11 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName ISPECVATYPE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SpecValAssgmtType 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 Value Assignment Type view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SpecValAssgmtType estcat Val. Asst Type
SpecValAssgmtCategory esttype Value Ass. Cat.
SpecValAssgmtClass clvanam Class (ValAss.)
SpecValAssgmtIsInternal flgint Int. VA type
_SpecValAssgmtTypeText _SpecValAssgmtTypeText

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_SpecValAssgmtType.
-- 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: ISPECVATYPE

CREATE VIEW I_SpecValAssgmtType AS
SELECT
  estcat AS SpecValAssgmtType,
  esttype AS SpecValAssgmtCategory,
  clvanam AS SpecValAssgmtClass,
  flgint AS SpecValAssgmtIsInternal
FROM tcg11
;