A_ClfnProductSalesTax

DDL: A_CLFNPRODUCTSALESTAX SQL: ACLFNPRODSLSTAX Type: view BASIC

Sales Tax Data

A_ClfnProductSalesTax is a Basic CDS View that provides data about "Sales Tax Data" in SAP S/4HANA. It reads from 1 data source (I_ProductSalesTax) and exposes 5 fields with key fields Product, Country, TaxCategory, TaxClassification. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ProductSalesTax I_ProductSalesTax from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_Product _Product $projection.Product = _Product.Product

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACLFNPRODSLSTAX view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Sales Tax Data view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
OData.entitySet.name A_ProductSalesTax view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Product Product Product Sold
KEY Country Country Venue: Ctry/Reg
KEY TaxCategory TaxCategory Tax Code
KEY TaxClassification TaxClassification Tax class.
_Product _Product

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 A_ClfnProductSalesTax.
-- 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: ACLFNPRODSLSTAX

CREATE VIEW A_ClfnProductSalesTax AS
SELECT
  Product,
  Country,
  TaxCategory,
  TaxClassification
FROM I_ProductSalesTax
LEFT OUTER JOIN A_Product AS _Product ON Product = _Product.Product  -- association [1..1]
;