P_SUPDMNDALLDOCPURGCONTRREL

CDS View

P_SUPDMNDALLDOCPURGCONTRREL is a CDS View in S/4HANA. It contains 2 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_SupDmndAllDocPurgContrRefC view from COMPOSITE Cube View for Purchasing Contract Reference Details

Fields (2)

KeyField CDS FieldsUsed in Views
KEY PurchasingDocumentCategory PurchasingDocumentCategory 1
ReleasedQuantity ReleasedQuantity 1
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
  viewType: #COMPOSITE,
  private: true
}
@AccessControl: {
  authorizationCheck: #NOT_REQUIRED,
  personalData.blocking: #('TRANSACTIONAL_DATA')
}
@AbapCatalog: {
  sqlViewName: 'PSUPDMNDADPCREL',
  compiler.compareFilter: true,
  preserveKey: true
 }
@ObjectModel: {
   usageType: {
     dataClass:      #TRANSACTIONAL,
     serviceQuality: #B,
     sizeCategory:   #XXL
   }
}
//@EndUserText.label: 'View for Purchasing Contract Release Quantity'

define view P_SupDmndAllDocPurgContrRel
  as select from I_SupDmndAllDocPurgContrRel as PurgContrRel
{
  key cast(PurchaseContract as abap.char(12))    as PurchaseContract,
  key cast(PurchaseContractItem as abap.char(5)) as PurchaseContractItem,
  key PurchasingDocumentCategory,
      Plant,
      sum(ReleasedQuantity)                      as ReleasedQuantity
}
group by
  PurchaseContract,
  PurchaseContractItem,
  PurchasingDocumentCategory,
  Plant
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SUPDMNDALLDOCPURGCONTRREL"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/