P_ATPLiveCacheAnchorMigration

DDL: P_ATPLIVECACHEANCHORMIGRATION Type: view_entity BASIC

P_ATPLiveCacheAnchorMigration is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (I_ProductPlantBasic, tmvf) and exposes 2 fields with key fields Product, Plant.

Data Sources (2)

SourceAliasJoin Type
I_ProductPlantBasic _MaterialPlantData from
tmvf tmvf inner

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Product I_ProductPlantBasic Product Product Sold
KEY Plant I_ProductPlantBasic Plant Valuation Area

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 P_ATPLiveCacheAnchorMigration.
-- 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 P_ATPLiveCacheAnchorMigration AS
SELECT
  _MaterialPlantData.Product AS Product,
  _MaterialPlantData.Plant AS Plant
FROM I_ProductPlantBasic AS _MaterialPlantData
INNER JOIN tmvf ON /* join condition not captured in parsed metadata */
;