I_ProductionSupplyAreaText

DDL: I_PRODUCTIONSUPPLYAREATEXT SQL: IPPPRODNSUPAREAT Type: view BASIC

Production Supply Area - Text

I_ProductionSupplyAreaText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Manufacturing

I_ProductionSupplyAreaText is a Basic CDS View that provides data about "Production Supply Area - Text" in SAP S/4HANA. It reads from 1 data source (pvkt) and exposes 6 fields with key fields ProductionSupplyArea, Plant, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentPP-KAB-VDM
CapabilitiesData Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities, Language-Dependent Text
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the names of production supply areas in different languages.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
pvkt pvkt from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Plant _Plant $projection.Plant = _Plant.Plant
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IPPPRODNSUPAREAT view
AbapCatalog.preserveKey true view
EndUserText.label Production Supply Area - Text view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ProductionSupplyArea view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ProductionSupplyArea pvkt prvbe Production Supply Area
KEY Plant pvkt werks Receiving Plant
KEY Language pvkt spras Off. Language
ProductionSupplyAreaName Production Supply Area Name
_Plant _Plant
_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_ProductionSupplyAreaText.
-- 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: IPPPRODNSUPAREAT

CREATE VIEW I_ProductionSupplyAreaText AS
SELECT
  pvkt.prvbe AS ProductionSupplyArea,
  pvkt.werks AS Plant,
  pvkt.spras AS Language,
  cast(pvkt.pvbtx as vdm_pvbtx preserving type) AS ProductionSupplyAreaName
FROM pvkt
LEFT OUTER JOIN I_Plant AS _Plant ON Plant = _Plant.Plant  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
;