P_StorePOSMovementTypes_F4674

DDL: P_STOREPOSMOVEMENTTYPES_F4674 SQL: PPOSMVTTYSTF4674 Type: view COMPOSITE

P_StorePOSMovementTypes_F4674 is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_RetailStoreUserAssignment, I_Site) and exposes 5 fields with key field Store.

Data Sources (2)

SourceAliasJoin Type
I_RetailStoreUserAssignment I_RetailStoreUserAssignment from
I_Site Site inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PPOSMVTTYSTF4674 view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Store Store Plant
AggrgdSlsSalesGdsMvtType
AggrgdSlsReturnsGdsMvtType
SlsAsPerRcptsSalesGdsMvtType
SlsAsPerRcptsReturnsGdsMvtType

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_StorePOSMovementTypes_F4674.
-- 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: PPOSMVTTYSTF4674

CREATE VIEW P_StorePOSMovementTypes_F4674 AS
SELECT
  Store,
  _SitePointOfSale._PointOfSaleInboundProfile._AggregatedSalesSettings.SalesGoodsMovementType AS AggrgdSlsSalesGdsMvtType,
  _SitePointOfSale._PointOfSaleInboundProfile._AggregatedSalesSettings.ReturnsGoodsMovementType AS AggrgdSlsReturnsGdsMvtType,
  _SitePointOfSale._PointOfSaleInboundProfile._SalesAsPerReceiptsSettings.SalesGoodsMovementType AS SlsAsPerRcptsSalesGdsMvtType,
  _SitePointOfSale._PointOfSaleInboundProfile._SalesAsPerReceiptsSettings.ReturnsGoodsMovementType AS SlsAsPerRcptsReturnsGdsMvtType
FROM I_RetailStoreUserAssignment
INNER JOIN I_Site AS Site ON /* join condition not captured in parsed metadata */
;