I_ORDERCONFLONGTEXT
Order Confirmation Long Text
I_ORDERCONFLONGTEXT is a CDS View in S/4HANA. Order Confirmation Long Text. It contains 3 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_MfgOrderConfirmationLongText | view_entity | from | COMPOSITE | Manufacturing Order Confirmation - Text |
| R_MaintOrderConfLongTextTP | view_entity | from | COMPOSITE | Maintenance Order Confirmation Long text |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | ConfirmationGroup | MfgOrderConfirmationGroup | 1 |
| KEY | OrderConfirmation | MfgOrderConfirmationCount | 1 |
| PlainLongText | MfgOrderConfirmationLongText | 1 |
@AbapCatalog.sqlViewName: 'IORDCONFLTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Order Confirmation Long Text'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'OrderConfirmation'
define view I_OrderConfLongText as select from afru_text
association [0..*] to I_TextObjectPlainLongText as _TextObjectPlainLongText on _TextObjectPlainLongText.TextObjectKey = $projection.TextObjectKey
and _TextObjectPlainLongText.TextObjectCategory = 'AUFK'
and _TextObjectPlainLongText.TextObjectType = 'RMEL'
{
key rueck as ConfirmationGroup,
key rmzhl as OrderConfirmation,
tdname as TextObjectKey,
_TextObjectPlainLongText.Language as Language,
_TextObjectPlainLongText.PlainLongText as PlainLongText
}