I_KanbanContainerStdVH

DDL: I_KANBANCONTAINERSTDVH SQL: IPPKNBNCNTSTDVH Type: view COMPOSITE

Kanban Container

I_KanbanContainerStdVH is a Composite CDS View that provides data about "Kanban Container" in SAP S/4HANA. It reads from 1 data source (I_KanbanContainer) and exposes 5 fields with key field KanbanContainer.

Data Sources (1)

SourceAliasJoin Type
I_KanbanContainer I_KanbanContainer from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IPPKNBNCNTSTDVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Kanban Container view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey KanbanContainer view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #COMPOSITE view
Search.searchable true view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY KanbanContainer
Plant Plant Valuation Area
Supplier Supplier Supplier
_Supplier _Supplier
_SupplierCompanyByPlant _SupplierCompanyByPlant

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_KanbanContainerStdVH.
-- 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: IPPKNBNCNTSTDVH

CREATE VIEW I_KanbanContainerStdVH AS
SELECT
  cast(KanbanContainer as vdm_pkkey_alpha preserving type) AS KanbanContainer,
  Plant,
  Supplier
FROM I_KanbanContainer
;