I_IN_PlantStdVH

DDL: I_IN_PLANTSTDVH SQL: INPLANTSTDVH Type: view BASIC Package: J1I_GST_LOG_APP

Value Help for Plant

I_IN_PlantStdVH is a Basic CDS View that provides data about "Value Help for Plant" in SAP S/4HANA. It reads from 1 data source (t001w) and exposes 5 fields with key field Plant. Part of development package J1I_GST_LOG_APP.

Data Sources (1)

SourceAliasJoin Type
t001w t001w from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName INPLANTSTDVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Value Help for Plant view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
VDM.viewType #BASIC view
AccessControl.personalData.blocking #REQUIRED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Plant werks Plant
PlantName2 name2 Plant Name
Country land1 Country
Supplier lifnr Vendor no.
BusinessPlace I_BR_Plant BusinessPlace Business place

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_IN_PlantStdVH.
-- 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: INPLANTSTDVH

CREATE VIEW I_IN_PlantStdVH AS
SELECT
  werks AS Plant,
  name2 AS PlantName2,
  land1 AS Country,
  lifnr AS Supplier,
  I_BR_Plant.BusinessPlace AS BusinessPlace
FROM t001w
;