P_IntactvABOPRqmtAddlFields

DDL: P_INTACTVABOPRQMTADDLFIELDS Type: view_entity COMPOSITE

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)

SourceAliasJoin Type
I_SalesDocumentScheduleLine _SalesDocumentScheduleLine from
I_StockTransptOrdScheduleLine _StockTransptOrdScheduleLine union

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}