I_IN_TaxDefConditionType
India Tax condition Type
I_IN_TaxDefConditionType is a Composite CDS View that provides data about "India Tax condition Type" in SAP S/4HANA. It reads from 2 data sources (I_Country, I_TaxDefCondType) and exposes 3 fields with key fields PricingProcedure, ConditionType. Part of development package GLO_FIN_GST_IN.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_Country | I_Country | inner |
| I_TaxDefCondType | I_TaxDefCondType | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | India Tax condition Type | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PricingProcedure | I_TaxDefCondType | PricingProcedure | |
| KEY | ConditionType | I_TaxDefCondType | ConditionType | |
| IndianTaxConditionName | I_TaxDefCondType | IndianTaxConditionName |
@EndUserText.label: 'India Tax condition Type'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
@VDM.viewType: #COMPOSITE
define view entity I_IN_TaxDefConditionType
as select from I_TaxDefCondType
inner join I_Country on I_Country.TaxCalculationProcedure = I_TaxDefCondType.PricingProcedure
and I_Country.Country = 'IN'
{
key I_TaxDefCondType.PricingProcedure,
key I_TaxDefCondType.ConditionType,
I_TaxDefCondType.IndianTaxConditionName
}
where
I_TaxDefCondType.IndianTaxConditionName = 'IGSTAR'
or I_TaxDefCondType.IndianTaxConditionName = 'CGSTAR'
or I_TaxDefCondType.IndianTaxConditionName = 'SGSTAR'
or I_TaxDefCondType.IndianTaxConditionName = 'UTGSTAR'
or I_TaxDefCondType.IndianTaxConditionName = 'CCPSOFFAR'
or I_TaxDefCondType.IndianTaxConditionName = 'CCQSOFFAR'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA