I_EQUIPMENTLONGTEXT
Equipment Long Text
I_EQUIPMENTLONGTEXT is a CDS View in S/4HANA. Equipment Long Text. It contains 5 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_EquipmentLongText | view_entity | inner | COMPOSITE | Equipment Long Text |
| R_EquipmentLongTextTP | view_entity | inner | TRANSACTIONAL | Equipment Long Text |
Fields (5)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | Equipment | Equipment | 2 |
| KEY | Language | Language | 2 |
| TextObjectCategory | TextObjectCategory | 2 | |
| TextObjectKey | TextObjectKey | 1 | |
| TextObjectType | TextObjectType | 2 |
@AbapCatalog.sqlViewName: 'IEQUILTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Equipment Long Text'
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #XL, dataClass: #MIXED}
@VDM.viewType: #COMPOSITE
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_EquipmentLongText as select from I_Equipment
association [0..1] to I_TextObject as _TextObjectInSessionLanguage on _TextObjectInSessionLanguage.TextObjectKey = $projection.Equipment
and _TextObjectInSessionLanguage.TextObjectType = 'LTXT'
and _TextObjectInSessionLanguage.TextObjectCategory = 'EQUI'
and _TextObjectInSessionLanguage.Language = $session.system_language
association [0..1] to I_TextObject as _TextObjectInNotifLanguage on _TextObjectInNotifLanguage.TextObjectKey = $projection.Equipment
and _TextObjectInNotifLanguage.TextObjectType = 'LTXT'
and _TextObjectInNotifLanguage.TextObjectCategory = 'EQUI'
and _TextObjectInNotifLanguage.Language = $session.system_language
association [1..1] to I_Equipment as _Equipment on $projection.TextObjectKey = _Equipment.Equipment
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
//association [0..1] to I_Indicator as _LongTextIsNotChangeable on $projection.LongTextIsNotChangeable = _LongTextIsNotChangeable.IndicatorValue
{
key Equipment,
Equipment as TextObjectKey,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
cast( coalesce( _TextObjectInSessionLanguage.Language,
_TextObjectInNotifLanguage.Language ) as spras preserving type ) as Language,
cast( 'EQUI' as tdobject ) as TextObjectCategory,
cast( 'LTXT' as tdid preserving type ) as TextObjectType,
@Semantics.text: true
@UI.multiLineText: true
cast('' as eams_ltext ) as EquipmentLongText,
@Semantics.text: true
@UI.multiLineText: true
cast('' as eams_ltext ) as EquipmentLongTextForEdit,
//@ObjectModel.foreignKey.association: '_LongTextIsNotChangeable'
//cast( _MaintenanceNotification._PMNotificationType.LongTextIsNotChangeable as boole_d ) as LongTextIsNotChangeable,
_Equipment,
_Language
//_LongTextIsNotChangeable
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_EQUIPMENT",
"I_TEXTOBJECT"
],
"ASSOCIATED":
[
"I_EQUIPMENT",
"I_LANGUAGE",
"I_TEXTOBJECT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/