I_SerialNmbrPhysInvtryTypeText

DDL: I_SERIALNMBRPHYSINVTRYTYPETEXT Type: view_entity BASIC Package: ODATA_LO_SN_HISTORY

Physical Inventory Type - Text

I_SerialNmbrPhysInvtryTypeText is a Basic CDS View that provides data about "Physical Inventory Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields SerialNumberPhysicalInvtryType, Language. It has 1 association to related views. Part of development package ODATA_LO_SN_HISTORY.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Physical Inventory Type - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SerialNumberPhysicalInvtryType
KEY Language ddlanguage
SrlNumberPhysicalInvtryTypeTxt ddtext
_Language _Language
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Physical Inventory Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #A,
  sizeCategory: #S,
  dataClass: #MIXED
}
@ObjectModel.dataCategory:#TEXT
@VDM.viewType: #BASIC
define view entity I_SerialNmbrPhysInvtryTypeText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key      cast(substring(domvalue_l,1,1) as losn_srl_nmbr_phys_invtry_type preserving type ) as SerialNumberPhysicalInvtryType,
           @ObjectModel.foreignKey.association: '_Language'
           @Semantics.language:true
  key      ddlanguage                                                                         as Language,
           @Semantics.text:true
           ddtext                                                                             as SrlNumberPhysicalInvtryTypeTxt,

           _Language

}
where
  (
    domname  = 'LOSN_SRL_NMBR_PHYS_INVTRY_TYPE'
  )
  and(
    as4local = 'A'
  );