I_RetailStoreOrderBusinessData
Business Data for Retail Store Order
I_RetailStoreOrderBusinessData is a Basic CDS View that provides data about "Business Data for Retail Store Order" in SAP S/4HANA. It reads from 1 data source (vbkd) and exposes 5 fields with key fields ReferenceStorePickUpOrder, ReferenceStorePickupOrderItem. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| vbkd | vbkd | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_SalesOrder | _SalesOrder | $projection.ReferenceStorePickUpOrder = _SalesOrder.SalesOrder |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Business Data for Retail Store Order | view |
//@AbapCatalog.sqlViewName: 'ISTRPKORDBUSDATA'
@VDM.viewType: #BASIC
@ObjectModel: { usageType.serviceQuality: #B,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL
}
// #Check is deprecated #mandatory is replcement for auth check
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking:#('TRANSACTIONAL_DATA')
@EndUserText.label: 'Business Data for Retail Store Order'
define view entity I_RetailStoreOrderBusinessData as select from vbkd
association [1..1] to I_SalesOrder as _SalesOrder on $projection.ReferenceStorePickUpOrder = _SalesOrder.SalesOrder
{
key vbkd.vbeln as ReferenceStorePickUpOrder,
key vbkd.posnr as ReferenceStorePickupOrderItem,
vbkd.bstkd as RetailStoreCustomerReference,
vbkd.ihrez as RetailStoreExternalReference,
_SalesOrder
}
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