P_IntactvABOPRqmtAddlFields
IBOP Requirements Additional Fields View
P_IntactvABOPRqmtAddlFields is a Composite CDS View that provides data about "IBOP Requirements Additional Fields View" in SAP S/4HANA. It reads from 2 data sources (I_SalesDocumentScheduleLine, I_StockTransptOrdScheduleLine) and exposes 6 fields with key fields ATPRelevantDocument, ATPRelevantDocumentItem, ATPRelevantDocScheduleLine, ATPRelevantDocumentItem, ATPRelevantDocScheduleLine.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_SalesDocumentScheduleLine | _SalesDocumentScheduleLine | from |
| I_StockTransptOrdScheduleLine | _StockTransptOrdScheduleLine | union |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | IBOP Requirements Additional Fields View | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ATPRelevantDocument | SalesDocument | ||
| KEY | ATPRelevantDocumentItem | SalesDocumentItem | ||
| KEY | ATPRelevantDocScheduleLine | ScheduleLine | ||
| KEY | ATPRelevantDocumentItem | |||
| KEY | ATPRelevantDocScheduleLine | ScheduleLine | ||
| ATPFCFSPriorityValue |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'IBOP Requirements Additional Fields View'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #M,
dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
@VDM.private: true
define view entity P_IntactvABOPRqmtAddlFields
as select from I_SalesDocumentScheduleLine as _SalesDocumentScheduleLine
{
key SalesDocument as ATPRelevantDocument,
key SalesDocumentItem as ATPRelevantDocumentItem,
key ScheduleLine as ATPRelevantDocScheduleLine,
cast(ATPFCFSPriorityValue as timestamp) as ATPFCFSPriorityValue
}
union select from I_StockTransptOrdScheduleLine as _StockTransptOrdScheduleLine
{
key PurchaseOrder as ATPRelevantDocument,
key concat('0',PurchaseOrderItem) as ATPRelevantDocumentItem,
key ScheduleLine as ATPRelevantDocScheduleLine,
cast(ATPFCFSPriorityValue as timestamp) as ATPFCFSPriorityValue
}
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