I_GoodsMvtTypeBySpclStkIndT

DDL: I_GOODSMVTTYPEBYSPCLSTKINDT Type: view_entity BASIC Package: MM_IM_VDM_STOCK

Goods Movement Type by Special Stock Indicator Text

I_GoodsMvtTypeBySpclStkIndT is a Basic CDS View that provides data about "Goods Movement Type by Special Stock Indicator Text" in SAP S/4HANA. It reads from 1 data source (t156t) and exposes 13 fields with key fields GoodsMovementType, InventorySpecialStockType, GoodsMovementRefDocType, GoodsReceiptType, ConsumptionPosting. It has 6 associations to related views. Part of development package MM_IM_VDM_STOCK.

Data Sources (1)

SourceAliasJoin Type
t156t t156t from

Associations (6)

CardinalityTargetAliasCondition
[0..1] I_GoodsMovementType _GoodsMovementType $projection.GoodsMovementType = _GoodsMovementType.GoodsMovementType
[0..1] I_InventorySpecialStockType _InventorySpecialStockType $projection.InventorySpecialStockType = _InventorySpecialStockType.InventorySpecialStockType
[0..1] I_GoodsMovementRefDocType _GoodsMovementRefDocType $projection.GoodsMovementRefDocType = _GoodsMovementRefDocType.GoodsMovementRefDocType
[0..1] I_GoodsReceiptType _GoodsReceiptType $projection.GoodsReceiptType = _GoodsReceiptType.GoodsReceiptType
[0..1] I_ConsumptionPostingIndicator _ConsumptionPosting $projection.ConsumptionPosting = _ConsumptionPosting.ConsumptionPosting
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Goods Movement Type by Special Stock Indicator Text view
VDM.viewType #BASIC view
ObjectModel.representativeKey GoodsMovementType view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName IGDSMVTBYSPSTINT view
Metadata.ignorePropagatedAnnotations true view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY GoodsMovementType bwart Valuation Type
KEY InventorySpecialStockType sobkz Special Stock
KEY GoodsMovementRefDocType kzbew Movement ind.
KEY GoodsReceiptType kzzug Receipt Ind.
KEY ConsumptionPosting kzvbr Consumption
KEY Language spras Off. Language
GoodsMovementTypeName btext Stock type
_GoodsMovementType _GoodsMovementType
_InventorySpecialStockType _InventorySpecialStockType
_GoodsMovementRefDocType _GoodsMovementRefDocType
_ConsumptionPosting _ConsumptionPosting
_GoodsReceiptType _GoodsReceiptType
_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_GoodsMvtTypeBySpclStkIndT.
-- 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.

CREATE VIEW I_GoodsMvtTypeBySpclStkIndT AS
SELECT
  bwart AS GoodsMovementType,
  sobkz AS InventorySpecialStockType,
  kzbew AS GoodsMovementRefDocType,
  kzzug AS GoodsReceiptType,
  kzvbr AS ConsumptionPosting,
  spras AS Language,
  btext AS GoodsMovementTypeName
FROM t156t
LEFT OUTER JOIN I_GoodsMovementType AS _GoodsMovementType ON GoodsMovementType = _GoodsMovementType.GoodsMovementType  -- association [0..1]
LEFT OUTER JOIN I_InventorySpecialStockType AS _InventorySpecialStockType ON InventorySpecialStockType = _InventorySpecialStockType.InventorySpecialStockType  -- association [0..1]
LEFT OUTER JOIN I_GoodsMovementRefDocType AS _GoodsMovementRefDocType ON GoodsMovementRefDocType = _GoodsMovementRefDocType.GoodsMovementRefDocType  -- association [0..1]
LEFT OUTER JOIN I_GoodsReceiptType AS _GoodsReceiptType ON GoodsReceiptType = _GoodsReceiptType.GoodsReceiptType  -- association [0..1]
LEFT OUTER JOIN I_ConsumptionPostingIndicator AS _ConsumptionPosting ON ConsumptionPosting = _ConsumptionPosting.ConsumptionPosting  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;