C_RO_SAFTOwner
RO SAFT Owner IDs
C_RO_SAFTOwner is a Consumption CDS View that provides data about "RO SAFT Owner IDs" in SAP S/4HANA. It reads from 2 data sources (I_ValuationArea, I_SupplierCompany) and exposes 7 fields.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_ValuationArea | _DetermineCcode | inner |
| I_SupplierCompany | _SupplierCompany | inner |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CROSAFTOWNER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| EndUserText.label | RO SAFT Owner IDs | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| CompanyCode | I_ValuationArea | CompanyCode | ||
| VATRegistration | _Owners | VATRegistration | ||
| SupplierName | ||||
| ShortCityName | ||||
| Country | ||||
| RO_SAFTOwnerID | _Owners | RO_SAFTOwnerID | ||
| ReconciliationAccount |
@AbapCatalog.sqlViewName: 'CROSAFTOWNER'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MIXED
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.personalData.blocking: #NOT_REQUIRED
@EndUserText.label: 'RO SAFT Owner IDs'
define view C_RO_SAFTOwner
as select distinct from I_RO_SAFTOwner as _Owners
inner join I_ValuationArea as _DetermineCcode on _Owners.Plant = _DetermineCcode.ValuationArea
inner join I_SupplierCompany as _SupplierCompany on _Owners.RO_SAFTSupplierID = _SupplierCompany.Supplier
and _DetermineCcode.CompanyCode = _SupplierCompany.CompanyCode
{
_DetermineCcode.CompanyCode as CompanyCode,
_Owners.VATRegistration as VATRegistration,
_SupplierCompany._Supplier.SupplierName as SupplierName,
_SupplierCompany._Supplier.CityName as ShortCityName,
_SupplierCompany._Supplier.Country as Country,
_Owners.RO_SAFTOwnerID as RO_SAFTOwnerID,
cast( '8038' as saknr ) as ReconciliationAccount
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RO_SAFTOWNER",
"I_SUPPLIER",
"I_SUPPLIERCOMPANY",
"I_VALUATIONAREA"
],
"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