I_CnsmpnTaxControlCodeText

DDL: I_CNSMPNTAXCONTROLCODETEXT SQL: ICNTRLCODETEXT Type: view BASIC Package: GLO_LOG_IN

Control Code for consumption taxes description

I_CnsmpnTaxControlCodeText is a Basic CDS View that provides data about "Control Code for consumption taxes description" in SAP S/4HANA. It reads from 1 data source (t604n) and exposes 7 fields with key fields Language, CountryCode, ConsumptionTaxCtrlCode. It has 3 associations to related views. Part of development package GLO_LOG_IN.

Data Sources (1)

SourceAliasJoin Type
t604n Control_Code_Text from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_Country _Country $projection.CountryCode = _Country.Country
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_ConsumptionTaxControlCode _ControlCode $projection.ConsumptionTaxCtrlCode = _ControlCode.ConsumptionTaxCtrlCode and $projection.CountryCode = _ControlCode.CountryCode

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ICNTRLCODETEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Control Code for consumption taxes description view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language t604n spras
KEY CountryCode t604n land1
KEY ConsumptionTaxCtrlCode t604n steuc
ConsumptionTaxCntrlCodeDesc t604n text1
_ControlCode _ControlCode
_Language _Language
_Country _Country
@AbapCatalog.sqlViewName: 'ICNTRLCODETEXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Control Code for consumption taxes description'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #MIXED 
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: [ 'ConsumptionTaxCtrlCode' ]
define view I_CnsmpnTaxControlCodeText as
  select from t604n as Control_Code_Text 
  association [0..1] to I_Country              as _Country     on  $projection.CountryCode = _Country.Country
  association [0..1] to I_Language             as _Language    on  $projection.Language = _Language.Language
 association [0..1] to I_ConsumptionTaxControlCode as _ControlCode on $projection.ConsumptionTaxCtrlCode = _ControlCode.ConsumptionTaxCtrlCode
                                                                and $projection.CountryCode = _ControlCode.CountryCode
    {
    
    @Semantics.language: true
    @ObjectModel.foreignKey.association:'_Language'
    key Control_Code_Text.spras as Language,
    
    @ObjectModel.foreignKey.association:'_Country'
    key Control_Code_Text.land1 as CountryCode,
      
    @ObjectModel.foreignKey.association:'_ControlCode'
    key Control_Code_Text.steuc as ConsumptionTaxCtrlCode,
    
     @Semantics.text: true
    Control_Code_Text.text1 as  ConsumptionTaxCntrlCodeDesc,
    
    _ControlCode,
    _Language,
    _Country
    
}