I_SpecHeaderStsDfndAttribText

DDL: I_SPECHEADERSTSDFNDATTRIBTEXT SQL: ISPECSTATUSDFATX Type: view BASIC Package: VDM_PLMB_SPC_BAS

Specification Header Status Defined Attribute Text

I_SpecHeaderStsDfndAttribText is a Basic CDS View that provides data about "Specification Header Status Defined Attribute Text" in SAP S/4HANA. It reads from 1 data source (/plmb/sam_objact) and exposes 5 fields with key fields SpecificationHdrStsAttribute, Language. It has 2 associations to related views. Part of development package VDM_PLMB_SPC_BAS.

Data Sources (1)

SourceAliasJoin Type
/plmb/sam_objact /plmb/sam_objact from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_SpecHeaderStsDfndAttrib _HeaderStatusAttrib $projection.SpecificationHdrStsAttribute = _HeaderStatusAttrib.SpecificationHdrStsAttribute

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISPECSTATUSDFATX view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SpecificationHdrStsAttribute 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 Header Status Defined Attribute Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SpecificationHdrStsAttribute /plmb/sam_objact activity VAT Activity
KEY Language /plmb/sam_objact language Report Text Language
SpecificationHdrStsAttribDesc /plmb/sam_objact descr WSS Profile
_HeaderStatusAttrib _HeaderStatusAttrib
_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_SpecHeaderStsDfndAttribText.
-- 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: ISPECSTATUSDFATX

CREATE VIEW I_SpecHeaderStsDfndAttribText AS
SELECT
  /plmb/sam_objact.activity AS SpecificationHdrStsAttribute,
  /plmb/sam_objact.language AS Language,
  /plmb/sam_objact.descr AS SpecificationHdrStsAttribDesc
FROM /plmb/sam_objact
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
LEFT OUTER JOIN I_SpecHeaderStsDfndAttrib AS _HeaderStatusAttrib ON SpecificationHdrStsAttribute = _HeaderStatusAttrib.SpecificationHdrStsAttribute  -- association [0..1]
;