I_ProdBufPositioningCache

DDL: I_PRODBUFPOSITIONINGCACHE Type: view_entity BASIC Package: PPH_DD_VDM_BUFPOS

Cache View

I_ProdBufPositioningCache is a Basic CDS View that provides data about "Cache View" in SAP S/4HANA. It reads from 1 data source (pph_dd_bufpos) and exposes 10 fields with key fields Material, Plant, MRPArea. Part of development package PPH_DD_VDM_BUFPOS.

Data Sources (1)

SourceAliasJoin Type
pph_dd_bufpos pph_dd_bufpos from

Annotations (6)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
EndUserText.label Cache View view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY Material Vehicle Model
KEY Plant werks Receiving Plant
KEY MRPArea berid Single-Character Flag
DecoupledLeadTime decoupled_lead_time Decoupled Lead Time
MaterialBaseUnit adu_unit Base Unit
CreatedByUser created_by Version Created By
CreationTime created_time Time Stamp
DecoupledLeadTmeChgdByUsr dltchanged_by DLT Changed By
DecoupledLeadTmeChgdOn
IsYesNoValueSelected

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_ProdBufPositioningCache.
-- 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_ProdBufPositioningCache AS
SELECT
  cast(matnr as productnumber preserving type ) AS Material,
  werks AS Plant,
  berid AS MRPArea,
  decoupled_lead_time AS DecoupledLeadTime,
  adu_unit AS MaterialBaseUnit,
  created_by AS CreatedByUser,
  created_time AS CreationTime,
  dltchanged_by AS DecoupledLeadTmeChgdByUsr,
  tstmp_to_dats(dltchanged_time, abap_system_timezone( $session.client,'NULL' ), $session.client, 'INITIAL') AS DecoupledLeadTmeChgdOn,
  cast('X' as boole_d) AS IsYesNoValueSelected
FROM pph_dd_bufpos
;