P_RO_SAFTOneTimeSupplier

DDL: P_RO_SAFTONETIMESUPPLIER SQL: PROSAFTOTS Type: view COMPOSITE Package: GLO_FIN_IS_SAFT_RO

One Time Supplier Data for RO SAFT

P_RO_SAFTOneTimeSupplier is a Composite CDS View that provides data about "One Time Supplier Data for RO SAFT" in SAP S/4HANA. It reads from 1 data source (I_RO_SAFTOneTimeSupplier) and exposes 9 fields with key fields CompanyCode, Supplier, VATRegistration. Part of development package GLO_FIN_IS_SAFT_RO.

Data Sources (1)

SourceAliasJoin Type
I_RO_SAFTOneTimeSupplier I_RO_SAFTOneTimeSupplier from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PROSAFTOTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.private true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #BLOCKED_DATA_INCLUDED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label One Time Supplier Data for RO SAFT view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY Supplier Supplier Supplier
KEY VATRegistration VATRegistration VAT Registration No.
SupplierName
CountryISOCode
Region
PostalCode
CityName
StreetName

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_RO_SAFTOneTimeSupplier.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: PROSAFTOTS

CREATE VIEW P_RO_SAFTOneTimeSupplier AS
SELECT
  CompanyCode,
  Supplier,
  VATRegistration,
  max(SupplierName) AS SupplierName,
  cast(max(Country) as land1 ) AS CountryISOCode,
  max(Region) AS Region,
  max(PostalCode) AS PostalCode,
  max(CityName) AS CityName,
  max(StreetName) AS StreetName
FROM I_RO_SAFTOneTimeSupplier
;