I_GenericPriorityTypeText

DDL: I_GENERICPRIORITYTYPETEXT SQL: IGENPRIOTYPETXT Type: view BASIC

Generic Priority Type Text

I_GenericPriorityTypeText is a Basic CDS View that provides data about "Generic Priority Type Text" in SAP S/4HANA. It reads from 1 data source (t356a_t) and exposes 5 fields with key fields Language, GenericPriorityType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t356a_t t356a_t from

Associations (2)

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

Annotations (12)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IGENPRIOTYPETXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Generic Priority Type Text view
ObjectModel.representativeKey GenericPriorityType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.viewType #BASIC view
AbapCatalog.preserveKey true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language t356a_t spras
KEY GenericPriorityType t356a_t artpr
GenericPriorityTypeDesc t356a_t artprx
_GenericPriorityType _GenericPriorityType
_Language _Language
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.sqlViewName: 'IGENPRIOTYPETXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Generic Priority Type Text'
@ObjectModel.representativeKey: 'GenericPriorityType'
@ObjectModel: {
   dataCategory: #TEXT,
   usageType.serviceQuality: #A,
   usageType.sizeCategory: #S,
   usageType.dataClass: #CUSTOMIZING
}
@VDM.viewType: #BASIC
@AbapCatalog.preserveKey: true

define view I_GenericPriorityTypeText
  as select from t356a_t
  association [0..1] to I_GenericPriorityType as _GenericPriorityType on _GenericPriorityType.GenericPriorityType = $projection.GenericPriorityType
  
  association [0..1] to I_Language            as _Language            on _Language.Language = $projection.Language
{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key t356a_t.spras  as Language,
  
      @ObjectModel.foreignKey.association: '_GenericPriorityType'
  key t356a_t.artpr  as GenericPriorityType,

      @Semantics.text: true
      t356a_t.artprx as GenericPriorityTypeDesc,

      // Propagate association(s)

      _GenericPriorityType,
      _Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T356A_T"
],
"ASSOCIATED":
[
"I_GENERICPRIORITYTYPE",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/