P_CHMLCMPLRQRSLTVERSCT

CDS View

P_CHMLCMPLRQRSLTVERSCT is a CDS View in S/4HANA. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
P_ChmlCmplRqRsltCt view from COMPOSITE
@AbapCatalog:
{
  sqlViewName: 'PCCRQRSLTVCT',
  compiler.compareFilter: true
}

--Access Control: Authorizations Checks
@AccessControl:
{
  authorizationCheck: #NOT_REQUIRED
}

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

--VDM view type
@VDM.viewType: #COMPOSITE
@VDM.private: true

define view P_ChmlCmplRqRsltVersCt
  as select from I_CmplRqRslt
{
  ChmlCmplncInfoUUID,
  CmplRqVersUUID,
 
  count(*) as recordCount
}
where 
//CmplRqRsltProcessingStatus <> 'HI'

  CmplRqRsltProcessingStatus = 'RE' or
  CmplRqRsltProcessingStatus = 'IP'
group by 
  ChmlCmplncInfoUUID,
  CmplRqVersUUID
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CMPLRQRSLT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/