I_InventoryTransactionTypeT

DDL: I_INVENTORYTRANSACTIONTYPET Type: view_entity BASIC Package: MM_IM_VDM_PI

Inventory Transaction Type - Text

I_InventoryTransactionTypeT is a Basic CDS View that provides data about "Inventory Transaction Type - Text" in SAP S/4HANA. It reads from 1 data source (t158w) and exposes 5 fields with key fields InventoryTransactionType, Language. It has 2 associations to related views. Part of development package MM_IM_VDM_PI.

Data Sources (1)

SourceAliasJoin Type
t158w t158w from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_InventoryTransactionType _InventoryTransactionType $projection.InventoryTransactionType = _InventoryTransactionType.InventoryTransactionType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
EndUserText.label Inventory Transaction Type - Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.representativeKey InventoryTransactionType view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.sapObjectNodeType.name InventoryTransactionTypeText view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InventoryTransactionType vgart
KEY Language spras
InventoryTransactionTypeText
_InventoryTransactionType _InventoryTransactionType
_Language _Language
 @AbapCatalog.entityBuffer.definitionAllowed: true
 @EndUserText.label: 'Inventory Transaction Type - Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
                usageType:{
                            sizeCategory: #S,
                            serviceQuality: #A,
                            dataClass:#CUSTOMIZING
                          },
                 representativeKey: 'InventoryTransactionType',
                 dataCategory: #TEXT,
                 modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
                 sapObjectNodeType.name: 'InventoryTransactionTypeText',
                 supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE]
               }
@VDM: {
        viewType: #BASIC,
        lifecycle.contract.type: #PUBLIC_LOCAL_API
      }
@Metadata.ignorePropagatedAnnotations: true
@Analytics.dataExtraction.enabled: true


define view entity I_InventoryTransactionTypeT
  as

  select from t158w

  association [0..1] to I_InventoryTransactionType as _InventoryTransactionType on $projection.InventoryTransactionType = _InventoryTransactionType.InventoryTransactionType
  association [0..1] to I_Language                 as _Language                 on $projection.Language = _Language.Language

{

  key vgart as InventoryTransactionType,

      @Semantics.language: true
  key spras as Language,

      @Semantics.text: true
      cast ( ltext as pi_transaction_type_text preserving type ) as InventoryTransactionTypeText,

      _InventoryTransactionType,
      _Language

}