A_ExciseTaxCmmdtyText

DDL: A_EXCISETAXCMMDTYTEXT SQL: AEXSTXCMMDTYT Type: view COMPOSITE Package: ET_COMMON

Commodity Code Text for Excise Tax

A_ExciseTaxCmmdtyText is a Composite CDS View that provides data about "Commodity Code Text for Excise Tax" in SAP S/4HANA. It reads from 1 data source (I_ExciseTaxCmmdtyText) and exposes 7 fields with key fields Language, Country, ValidityStartDate, CommodityCode. It has 1 association to related views. It is exposed through 1 OData service (API_EXCISETAXCMMDTY_SRV). Part of development package ET_COMMON.

Data Sources (1)

SourceAliasJoin Type
I_ExciseTaxCmmdtyText _Text from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_ExciseTaxCmmdty _CommodityCode _Text.CommodityCode = _CommodityCode.CommodityCode and _Text.Country = _CommodityCode.Country and _Text.ValidityStartDate = _CommodityCode.ValidityStartDate

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName AEXSTXCMMDTYT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Commodity Code Text for Excise Tax view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #TEXT view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
API_EXCISETAXCMMDTY_SRV API_EXCISETAXCMMDTY_SRV V2 C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY Language Language
KEY Country Country
KEY ValidityStartDate ValidityStartDate
KEY CommodityCode CommodityCode
ValidityEndDate ValidityEndDate
CommodityCodeText CommodityCodeText
_CommodityCode _CommodityCode
@AbapCatalog.sqlViewName: 'AEXSTXCMMDTYT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED

@EndUserText.label: 'Commodity Code Text for Excise Tax'

@ObjectModel.usageType.sizeCategory: 'L'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.dataCategory: #TEXT
@ObjectModel.createEnabled: false
@ObjectModel.updateEnabled: false

@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

define view A_ExciseTaxCmmdtyText as select from I_ExciseTaxCmmdtyText as _Text

  association [0..1] to A_ExciseTaxCmmdty as _CommodityCode on  _Text.CommodityCode     = _CommodityCode.CommodityCode
                                                            and _Text.Country           = _CommodityCode.Country
                                                            and _Text.ValidityStartDate = _CommodityCode.ValidityStartDate

{
  
  @Semantics.language:true
  key Language          as Language,
  key Country           as Country,
  key ValidityStartDate as ValidityStartDate,
  key CommodityCode     as CommodityCode,
      ValidityEndDate   as ValidityEndDate,
      @Semantics.text:true
      CommodityCodeText as CommodityCodeText,
      
  _CommodityCode
      
}