P_MfgOrderLongText
Order Long Text
P_MfgOrderLongText is a Composite CDS View that provides data about "Order Long Text" in SAP S/4HANA. It reads from 2 data sources (P_MfgOrderAORList, I_OrderLongText) and exposes 3 fields with key field OrderID. Part of development package ODATA_MPE_MFGORDER.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| P_MfgOrderAORList | _AORList | inner |
| I_OrderLongText | LongTxt | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.representativeKey | OrderID | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | OrderID | I_OrderLongText | OrderID | |
| TextObjectKey | I_OrderLongText | TextObjectKey | ||
| PlainLongText | I_OrderLongText | PlainLongText |
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'Order Long Text'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #M
//@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'OrderID'
@VDM.viewType: #COMPOSITE
@VDM.private: true
// only used for Supervisor apps
define view entity P_MfgOrderLongText as select from I_OrderLongText as LongTxt
inner join P_MfgOrderAORList as _AORList on _AORList.OrderID = LongTxt.OrderID
{
key LongTxt.OrderID,
LongTxt.TextObjectKey,
LongTxt.PlainLongText
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA