I_BPCustomerTaxIndicator

DDL: I_BPCUSTOMERTAXINDICATOR Type: view_entity BASIC Package: MDC_CUST_GOV_BO

BP Customer Tax Indicator Active Data

I_BPCustomerTaxIndicator is a Basic CDS View that provides data about "BP Customer Tax Indicator Active Data" in SAP S/4HANA. It reads from 1 data source (knvi) and exposes 5 fields with key fields Customer, DepartureCountry, CustomerTaxCategory. It has 1 association to related views. Part of development package MDC_CUST_GOV_BO.

Data Sources (1)

SourceAliasJoin Type
knvi knvi from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Customer _Customer $projection.Customer = _Customer.Customer

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label BP Customer Tax Indicator Active Data view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Customer kunnr
KEY DepartureCountry aland
KEY CustomerTaxCategory tatyp
CustomerTaxClassification taxkd
_Customer _Customer
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'BP Customer Tax Indicator Active Data'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #L,
  dataClass: #MASTER
}
@VDM.viewType: #BASIC
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view entity I_BPCustomerTaxIndicator
  as select from knvi
  association [1..1] to I_Customer as _Customer on $projection.Customer = _Customer.Customer
{
  key kunnr as Customer,
  key aland as DepartureCountry,
  key tatyp as CustomerTaxCategory,
      taxkd as CustomerTaxClassification,
      
      _Customer
}