I_OrderLongText

DDL: I_ORDERLONGTEXT SQL: IORDLTXT Type: view BASIC

Order Long Text

I_OrderLongText is a Basic CDS View that provides data about "Order Long Text" in SAP S/4HANA. It reads from 1 data source (aufk_text) and exposes 3 fields with key field OrderID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
aufk_text aufk_text from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_TextObjectPlainLongText _TextObjectPlainLongText _TextObjectPlainLongText.TextObjectKey = $projection.TextObjectKey and _TextObjectPlainLongText.TextObjectCategory = 'AUFK' and _TextObjectPlainLongText.TextObjectType = 'KOPF'

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IORDLTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Order Long Text view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey OrderID view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY OrderID aufnr
TextObjectKey tdname
PlainLongText _TextObjectPlainLongText PlainLongText
@AbapCatalog.sqlViewName: 'IORDLTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Order Long Text'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'OrderID'
define view I_OrderLongText as select from aufk_text
association [0..*] to I_TextObjectPlainLongText as _TextObjectPlainLongText on  _TextObjectPlainLongText.TextObjectKey      = $projection.TextObjectKey
                                                                              and _TextObjectPlainLongText.TextObjectCategory = 'AUFK'
                                                                              and _TextObjectPlainLongText.TextObjectType     = 'KOPF'
{
    
    key aufnr as OrderID, 
    tdname as  TextObjectKey,
    _TextObjectPlainLongText.PlainLongText as PlainLongText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_TEXTOBJECTPLAINLONGTEXT",
"AUFK_TEXT"
],
"ASSOCIATED":
[
"I_TEXTOBJECTPLAINLONGTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/