P_ACMMaterialDocumentRecord

DDL: P_ACMMATERIALDOCUMENTRECORD SQL: PACMMATDOC Type: view BASIC

P_ACMMaterialDocumentRecord is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (matdoc) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
matdoc matdoc from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PACMMATDOC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
PurchaseOrder ebeln
PurchaseOrderItem ebelp
DeliveryDocument vbeln_im
DeliveryDocumentItem vbelp_im
@AbapCatalog.sqlViewName: 'PACMMATDOC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private: true

@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #TRANSACTIONAL

@ClientHandling.algorithm: #SESSION_VARIABLE

define view P_ACMMaterialDocumentRecord
  as select from matdoc
{
  ebeln    as PurchaseOrder,
  ebelp    as PurchaseOrderItem,
  vbeln_im as DeliveryDocument,
  vbelp_im as DeliveryDocumentItem
  //  cast(vbelp_im as nsdm_delivery_document_item preserving type) as DeliveryDocumentItem

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"MATDOC"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/