Deprecated
This CDS view is deprecated in S/4HANA. Use I_StockDeterminationGroupText instead. View all deprecated CDS views →

C_Stkdtrmntngrptexttemp

DDL: C_STKDTRMNTNGRPTEXTTEMP SQL: CSTKDTRMNGRPTXT Type: view CONSUMPTION

Stock determination group text

C_Stkdtrmntngrptexttemp is a Consumption CDS View that provides data about "Stock determination group text" in SAP S/4HANA. It reads from 1 data source (t434h) and exposes 5 fields with key fields Plant, Language, StockDeterminationGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t434h t434h from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Plant _Plant $projection.Plant = _Plant.Plant

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CSTKDTRMNGRPTXT view
ObjectModel.dataCategory #TEXT view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_StockDeterminationGroupText view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Stock determination group text view
ObjectModel.representativeKey StockDeterminationGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Plant werks Receiving Plant
KEY Language t434h spras Off. Language
KEY StockDeterminationGroup eprio Withdr.Seq.Grp
Name bezei TrContType name
_Plant _Plant

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 C_Stkdtrmntngrptexttemp.
-- 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: CSTKDTRMNGRPTXT

CREATE VIEW C_Stkdtrmntngrptexttemp AS
SELECT
  werks AS Plant,
  t434h.spras AS Language,
  eprio AS StockDeterminationGroup,
  bezei AS Name
FROM t434h
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [0..1]
;