I_FuncLocationStructureText

DDL: I_FUNCLOCATIONSTRUCTURETEXT SQL: IFLOCSTRUCTXT Type: view BASIC Package: ILOM

Functional Location Structure - Text

I_FuncLocationStructureText is a Basic CDS View that provides data about "Functional Location Structure - Text" in SAP S/4HANA. It reads from 1 data source (t370s_t) and exposes 7 fields with key fields FuncLocationStructure, Language. It has 2 associations to related views. Part of development package ILOM.

Data Sources (1)

SourceAliasJoin Type
t370s_t t370s_t from

Associations (2)

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

Annotations (12)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
EndUserText.label Functional Location Structure - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFLOCSTRUCTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey FuncLocationStructure view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY FuncLocationStructure t370s_t tplkz
KEY Language t370s_t spras
FuncLocationStructureDesc t370s_t tplxt
IdentifyingLabel t370s_t level_kz_desc
SecondIdentifyingLabel t370s_t level_kz2_desc
_FuncLocationStructure _FuncLocationStructure
_Language _Language
@AbapCatalog.compiler.compareFilter: true
@EndUserText.label: 'Functional Location Structure - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFLOCSTRUCTXT'
@AccessControl.authorizationCheck:#NOT_REQUIRED
@ObjectModel.representativeKey: 'FuncLocationStructure'

@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT  ]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

@Metadata.ignorePropagatedAnnotations

define view I_FuncLocationStructureText
  as select from t370s_t

  association [0..1] to I_FuncLocationStructure as _FuncLocationStructure on _FuncLocationStructure.FuncLocationStructure = $projection.FuncLocationStructure
  association [0..1] to I_Language              as _Language              on _Language.Language = $projection.Language
{
      @ObjectModel.foreignKey.association: '_Funclocationstructure'
  key t370s_t.tplkz          as FuncLocationStructure,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key t370s_t.spras          as Language,
      @Semantics.text: true
      t370s_t.tplxt          as FuncLocationStructureDesc,
      t370s_t.level_kz_desc  as IdentifyingLabel,
      t370s_t.level_kz2_desc as SecondIdentifyingLabel,
      _FuncLocationStructure,
      _Language
}