I_InventoryTransactionTypeT

DDL: I_INVENTORYTRANSACTIONTYPET Type: view BASIC

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.

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 (18)

NameValueLevelField
AbapCatalog.sqlViewName IINVTRANSTYPET view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 1 view
EndUserText.label Inventory Transaction Type - Text view
ClientHandling.algorithm #SESSION_VARIABLE 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
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InventoryTransactionType vgart
KEY Language spras
InventoryTransactionTypeText ltext
_InventoryTransactionType _InventoryTransactionType
_Language _Language
@AbapCatalog: {
                sqlViewName: 'IINVTRANSTYPET',
                preserveKey: true,
                compiler.compareFilter: true,
                buffering : { status : #ACTIVE, type: #GENERIC, numberOfKeyFields: 1 }
              }
@EndUserText.label: 'Inventory Transaction Type - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
                usageType:{
                            sizeCategory: #S,
                            serviceQuality: #A,
                            dataClass:#CUSTOMIZING
                          },
                 representativeKey: 'InventoryTransactionType',
                 dataCategory: #TEXT,
                 modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
                 supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
               }
@VDM: {
        viewType: #BASIC,
        lifecycle.contract.type: #PUBLIC_LOCAL_API
      }
@Metadata.ignorePropagatedAnnotations: true

define view 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
      ltext as InventoryTransactionTypeText,

      _InventoryTransactionType,
      _Language

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T158W"
],
"ASSOCIATED":
[
"I_INVENTORYTRANSACTIONTYPE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/