I_BusPartTaxType

DDL: I_BUSPARTTAXTYPE SQL: IBPTAXTYPE Type: view BASIC

Business Partner Tax Type

I_BusPartTaxType is a Basic CDS View that provides data about "Business Partner Tax Type" in SAP S/4HANA. It reads from 1 data source (tfktaxnumtype) and exposes 2 fields with key field BPTaxType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tfktaxnumtype tfktaxnumtype from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusPartTaxTypeText _Text $projection.BPTaxType = _Text.BPTaxType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IBPTAXTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Business Partner Tax Type view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BPTaxType taxtype Tax Type
_Text _Text

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 I_BusPartTaxType.
-- 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: IBPTAXTYPE

CREATE VIEW I_BusPartTaxType AS
SELECT
  taxtype AS BPTaxType
FROM tfktaxnumtype
LEFT OUTER JOIN I_BusPartTaxTypeText AS _Text ON BPTaxType = _Text.BPTaxType  -- association [0..*]
;