I_IN_TaxDefConditionType

DDL: I_IN_TAXDEFCONDITIONTYPE Type: view_entity COMPOSITE Package: GLO_FIN_GST_IN

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)

SourceAliasJoin Type
I_Country I_Country inner
I_TaxDefCondType I_TaxDefCondType from

Annotations (6)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'