P_PT_SAFTTAXLANDSUP

DDL: P_PT_SAFTTAXLANDSUP SQL: PPTSAFTTXLSUP Type: view COMPOSITE Package: GLO_FIN_IS_SAFT_PT

SAFT PT Tax Land for Suppliers

P_PT_SAFTTAXLANDSUP is a Composite CDS View that provides data about "SAFT PT Tax Land for Suppliers" in SAP S/4HANA. It reads from 2 data sources (I_SAFTSupTaxRegnNmbr, I_Supplier) and exposes 2 fields with key field Supplier. Part of development package GLO_FIN_IS_SAFT_PT.

Data Sources (2)

SourceAliasJoin Type
I_SAFTSupTaxRegnNmbr a from
I_Supplier b inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PPTSAFTTXLSUP view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Supplier I_SAFTSupTaxRegnNmbr Supplier Supplier
SupplierCountry

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_PT_SAFTTAXLANDSUP.
-- 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: PPTSAFTTXLSUP

CREATE VIEW P_PT_SAFTTAXLANDSUP AS
SELECT
  a.Supplier AS Supplier,
  max(b.Country) AS SupplierCountry
FROM I_SAFTSupTaxRegnNmbr AS a
INNER JOIN I_Supplier AS b ON /* join condition not captured in parsed metadata */
;