I_SuplrInvcTransactionTypeDesc

DDL: I_SUPLRINVCTRANSACTIONTYPEDESC SQL: ISIVTRANSACTDESC Type: view BASIC Package: VDM_MM_IV_SI

Translation for Invoice Transaction Type

I_SuplrInvcTransactionTypeDesc is a Basic CDS View that provides data about "Translation for Invoice Transaction Type" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SupplierInvoiceTransactionType, Language. It has 2 associations to related views. Part of development package VDM_MM_IV_SI.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = $session.system_language
[1..1] I_SuplrInvcTransactionType _SuplrInvcTransactionType $projection.SupplierInvoiceTransactionType = _SuplrInvcTransactionType.SupplierInvoiceTransactionType

Annotations (13)

NameValueLevelField
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SupplierInvoiceTransactionType view
EndUserText.label Translation for Invoice Transaction Type view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AbapCatalog.sqlViewName ISIVTRANSACTDESC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SupplierInvoiceTransactionType
KEY Language ddlanguage
SuplrInvcTransactionTypeDesc
_SuplrInvcTransactionType _SuplrInvcTransactionType
_Language _Language
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SupplierInvoiceTransactionType'
@EndUserText.label: 'Translation for Invoice Transaction Type'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AbapCatalog.sqlViewName: 'ISIVTRANSACTDESC'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
//This is a technical view only returning texts for the account assignment type

@AccessControl.personalData.blocking: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter: true

define view I_SuplrInvcTransactionTypeDesc
  as select from dd07t
  association [0..1] to I_Language        as _Language          on $projection.Language = $session.system_language
  association [1..1] to I_SuplrInvcTransactionType as _SuplrInvcTransactionType on $projection.SupplierInvoiceTransactionType = _SuplrInvcTransactionType.SupplierInvoiceTransactionType
{
      // Substring() so that domvalue_l is of same length and type as mmiv_acct_assgmt_desc

  key cast ( substring( domvalue_l, 1, 1 ) as mmiv_transactiontype_desc preserving type)      as SupplierInvoiceTransactionType,
      @Semantics.language: true
  key ddlanguage                                                                              as Language,
      cast ( ddtext as mmiv_description_text preserving type)                                 as SuplrInvcTransactionTypeDesc,

      //association

      _SuplrInvcTransactionType,
      _Language
}
where
      domname  = 'MMIV_TRANSACTIONTYPE_DESC'
  and as4local = 'A'