I_FUNCTIONALLOCATIONTEXT
Functional Location - Text
I_FUNCTIONALLOCATIONTEXT is a CDS View in S/4HANA. Functional Location - Text. It contains 4 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_TechnicalObjectText | view | union_all | COMPOSITE | Technical Object - Text |
Fields (4)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| _Language | _Language | 1 | |
| FuncnlLocHasLongText | TechnicalObjectHasLongText | 1 | |
| IsPrimaryLanguage | IsPrimaryLanguage | 1 | |
| Language | Language | 1 |
@EndUserText.label: 'Functional Location - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog: { sqlViewName: 'IFLOCTEXT', preserveKey }
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck:#CHECK
@ObjectModel.representativeKey: 'FunctionalLocation'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@Metadata.ignorePropagatedAnnotations: true
@Analytics: {
dataExtraction: {
enabled: true,
delta.changeDataCapture.automatic
}
}
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]
define view I_FunctionalLocationText
as select from iflotx
association [0..1] to I_FunctionalLocation as _FunctionalLocation on _FunctionalLocation.FunctionalLocation = $projection.FunctionalLocation
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
-- Extension, do not expose as association:
association [0..1] to E_FunctionalLocation as _FunctionalLocationExtension on _FunctionalLocationExtension.FunctionalLocation = $projection.FunctionalLocation
{
@ObjectModel.foreignKey.association: '_FunctionalLocation'
key iflotx.tplnr as FunctionalLocation,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key iflotx.spras as Language,
@Semantics.text: true
@EndUserText.label: 'Description'
iflotx.pltxt as FunctionalLocationName,
iflotx.kzmla as IsPrimaryLanguage,
iflotx.kzltx as FuncnlLocHasLongText,
@Semantics.systemDateTime.lastChangedAt: true
iflotx.textchangeddatetime as LastChangeDateTime,
// Propagate association
_FunctionalLocation,
_Language
}