I_RO_SAFTGoodsService
RO SAFT Goods and Service
I_RO_SAFTGoodsService is a Basic CDS View that provides data about "RO SAFT Goods and Service" in SAP S/4HANA. It reads from 1 data source (/ceecv/rocgoodsv) and exposes 2 fields with key field MaterialType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /ceecv/rocgoodsv | _GoodsService | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IROSAFTGOODSRVS | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | RO SAFT Goods and Service | view | |
| ObjectModel.representativeKey | MaterialType | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaterialType | /ceecv/rocgoodsv | mtart | |
| RO_SAFTGoodsService | /ceecv/rocgoodsv | goodserv |
// active core entity
@AbapCatalog: {
sqlViewName: 'IROSAFTGOODSRVS',
preserveKey: true
}
@VDM.viewType: #BASIC
@AccessControl: {
authorizationCheck: #CHECK
}
@EndUserText.label: 'RO SAFT Goods and Service'
@ObjectModel.representativeKey: 'MaterialType'
@AbapCatalog.compiler.compareFilter:true
@Analytics.internalName:#LOCAL
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory : #XL
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_RO_SAFTGoodsService as select from /ceecv/rocgoodsv as _GoodsService
{
key _GoodsService.mtart as MaterialType,
_GoodsService.goodserv as RO_SAFTGoodsService
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/CEECV/ROCGOODSV"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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