I_OrderMasterDataWithCrcy
Order Master Data
I_OrderMasterDataWithCrcy is a Basic CDS View that provides data about "Order Master Data" in SAP S/4HANA. It reads from 1 data source (aufk) and exposes 8 fields with key field OrderID. Part of development package VDM_CPM_WS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| aufk | aufk | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IORDMSTRDATACRCY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Order Master Data | view | |
| AbapCatalog.preserveKey | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderID | aufnr | ||
| WBSElementInternalID | pspel | |||
| ControllingObject | objnr | |||
| OrderDescription | ktext | |||
| OrderCategory | autyp | |||
| OrderType | auart | |||
| Plant | werks | |||
| Currency | waers |
@AbapCatalog.sqlViewName: 'IORDMSTRDATACRCY'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@VDM.viewType: #BASIC
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #D
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Order Master Data'
@AbapCatalog.preserveKey:true
define view I_OrderMasterDataWithCrcy
as select from aufk {
key aufnr as OrderID,
pspel as WBSElementInternalID,
objnr as ControllingObject,
ktext as OrderDescription,
autyp as OrderCategory,
auart as OrderType,
werks as Plant,
waers as Currency
}
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