P_CHMLCMPLRQRSLTVERSCT
P_CHMLCMPLRQRSLTVERSCT is a CDS View in S/4HANA. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| 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