P_StorePOSMovementTypes_F4674
POS relevant movement types by store
P_StorePOSMovementTypes_F4674 is a Composite CDS View that provides data about "POS relevant movement types by store" in SAP S/4HANA. It reads from 2 data sources (I_RetailStoreUserAssignment, I_Site) and exposes 5 fields with key field Store. Part of development package RFM_STORE_MY_STORE_OVERVIEW.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_RetailStoreUserAssignment | I_RetailStoreUserAssignment | from |
| I_Site | Site | inner |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Store | Store | ||
| AggrgdSlsSalesGdsMvtType | ||||
| AggrgdSlsReturnsGdsMvtType | ||||
| SlsAsPerRcptsSalesGdsMvtType | ||||
| SlsAsPerRcptsReturnsGdsMvtType |
@AbapCatalog.sqlViewName: 'PPOSMVTTYSTF4674'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #COMPOSITE
@VDM.private: true
define view P_StorePOSMovementTypes_F4674
as select from I_RetailStoreUserAssignment
inner join I_Site as Site on Site.Site = I_RetailStoreUserAssignment.Store
and Site.SiteCategory = 'A'
{
key 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
}
where
AssignedUser = $session.user
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA