MMIMSUPPLIERBATCHVH

DDL: MMIMSUPPLIERBATCHVH SQL: MMIMSUPPLBATCHVH Type: view Package: MBND_CLOUD_BL

Value Help for Supplier Batches

MMIMSUPPLIERBATCHVH is a CDS View that provides data about "Value Help for Supplier Batches" in SAP S/4HANA. It reads from 1 data source (I_Batch) and exposes 6 fields with key fields Batch, Plant, Material. Part of development package MBND_CLOUD_BL.

Data Sources (1)

SourceAliasJoin Type
I_Batch I_Batch from

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName MMIMSUPPLBATCHVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.personalData.blocking #NOT_REQUIRED view
ObjectModel.dataCategory #VALUE_HELP view
EndUserText.label Value Help for Supplier Batches view
Search.searchable true view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Batch Batch Lot No.
KEY Plant Plant Valuation Area
KEY Material Material Vehicle Model
Supplier Supplier Supplier
BatchBySupplier BatchBySupplier Supplier Batch
AuthorizationGroup _Supplier AuthorizationGroup AuthorizGroup

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 MMIMSUPPLIERBATCHVH.
-- 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: MMIMSUPPLBATCHVH

CREATE VIEW MMIMSUPPLIERBATCHVH AS
SELECT
  Batch,
  Plant,
  Material,
  Supplier,
  BatchBySupplier,
  _Supplier.AuthorizationGroup AS AuthorizationGroup
FROM I_Batch
;