I_TaxDefCondType

DDL: I_TAXDEFCONDTYPE SQL: ISDTAXCONDTYP Type: view BASIC

Tax Definition Condition Type

I_TaxDefCondType is a Basic CDS View that provides data about "Tax Definition Condition Type" in SAP S/4HANA. It reads from 1 data source (j_1iexcdefn) and exposes 3 fields with key fields PricingProcedure, ConditionType.

Data Sources (1)

SourceAliasJoin Type
j_1iexcdefn j_1iexcdefn from

Annotations (9)

NameValueLevelField
ObjectModel.usageType.serviceQuality #C view
AbapCatalog.sqlViewName ISDTAXCONDTYP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Tax Definition Condition Type view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PricingProcedure kalsm Search Proced.
KEY ConditionType kschl Tax Item Type
IndianTaxConditionName cond_name Condition Name

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_TaxDefCondType.
-- 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: ISDTAXCONDTYP

CREATE VIEW I_TaxDefCondType AS
SELECT
  kalsm AS PricingProcedure,
  kschl AS ConditionType,
  cond_name AS IndianTaxConditionName
FROM j_1iexcdefn
;