I_CAOtherTaxCode

DDL: I_CAOTHERTAXCODE Type: view_entity BASIC Package: FKKB

Other Tax Code

I_CAOtherTaxCode is a Basic CDS View that provides data about "Other Tax Code" in SAP S/4HANA. It reads from 1 data source (tfk007f) and exposes 7 fields with key fields Country, CAOtherTaxCode. It has 2 associations to related views. It is exposed through 1 OData service (UI_CADOCUMENT_MNG). Part of development package FKKB.

Data Sources (1)

SourceAliasJoin Type
tfk007f tfk007f from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Country _Country $projection.Country = _Country.Country
[0..*] I_CAOtherTaxCodeText _Text $projection.Country = _Text.Country and $projection.CAOtherTaxCode = _Text.CAOtherTaxCode

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Other Tax Code view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey CAOtherTaxCode view
ObjectModel.sapObjectNodeType.name ContrAcctgOtherTaxCode view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view

OData Services (1)

ServiceBindingVersionContractRelease
UI_CADOCUMENT_MNG UI_CADOCUMENT_MNG V4 C1 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Country land
KEY CAOtherTaxCode strkz
CAOtherTaxPercentage pertax
CACategoriesAreUsedForOtherTax xkschl
CAIsValidForUSTelcomTaxCode xustc
_Country _Country
_Text _Text
@AccessControl.authorizationCheck: #NOT_REQUIRED

@EndUserText.label: 'Other Tax Code'

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel: { modelingPattern: #NONE,
                representativeKey: 'CAOtherTaxCode',
                sapObjectNodeType.name: 'ContrAcctgOtherTaxCode',
                supportedCapabilities: [ #CDS_MODELING_ASSOCIATION_TARGET,
                                         #CDS_MODELING_DATA_SOURCE,
                                         #SQL_DATA_SOURCE ],
                usageType: { dataClass: #CUSTOMIZING,
                             serviceQuality: #A,
                             sizeCategory: #S } }

@VDM.viewType: #BASIC

define view entity I_CAOtherTaxCode
  as select from tfk007f

  association [0..1] to I_Country            as _Country on  $projection.Country = _Country.Country
  association [0..*] to I_CAOtherTaxCodeText as _Text    on  $projection.Country        = _Text.Country
                                                         and $projection.CAOtherTaxCode = _Text.CAOtherTaxCode
{
      @ObjectModel.foreignKey.association: '_Country'
  key land   as Country,
      @ObjectModel.text.association: '_Text'
  key strkz  as CAOtherTaxCode,

      pertax as CAOtherTaxPercentage,
      xkschl as CACategoriesAreUsedForOtherTax,
      xustc  as CAIsValidForUSTelcomTaxCode,
      //    xspgl,


      _Country,
      _Text
}