C_RO_SAFTOwner

DDL: C_RO_SAFTOWNER SQL: CROSAFTOWNER Type: view CONSUMPTION

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)

SourceAliasJoin Type
I_ValuationArea _DetermineCcode inner
I_SupplierCompany _SupplierCompany inner

Annotations (11)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/