P_Bprrbsdflow
P_Bprrbsdflow is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (I_SDDocumentMultiLevelProcFlow) and exposes 6 fields with key fields PrecedingDocument, PrecedingDocumentItem.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SDDocumentMultiLevelProcFlow | I_SDDocumentMultiLevelProcFlow | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PBARRBSD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PrecedingDocument | I_SDDocumentMultiLevelProcFlow | PrecedingDocument | |
| KEY | PrecedingDocumentItem | I_SDDocumentMultiLevelProcFlow | PrecedingDocumentItem | |
| SubsequentDocument | I_SDDocumentMultiLevelProcFlow | SubsequentDocument | ||
| SubsequentDocumentItem | I_SDDocumentMultiLevelProcFlow | SubsequentDocumentItem | ||
| CreationDate | ||||
| CreationTime |
@AbapCatalog.sqlViewName: 'PBARRBSD'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private: true
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
define view P_Bprrbsdflow as select from I_SDDocumentMultiLevelProcFlow {
key I_SDDocumentMultiLevelProcFlow.PrecedingDocument,
key I_SDDocumentMultiLevelProcFlow.PrecedingDocumentItem,
I_SDDocumentMultiLevelProcFlow.SubsequentDocument,
I_SDDocumentMultiLevelProcFlow.SubsequentDocumentItem,
max (I_SDDocumentMultiLevelProcFlow.CreationDate) as CreationDate,
max (I_SDDocumentMultiLevelProcFlow.CreationTime) as CreationTime
} where I_SDDocumentMultiLevelProcFlow.SubsequentDocumentCategory = 'L' or
I_SDDocumentMultiLevelProcFlow.SubsequentDocumentCategory = 'K'
group by PrecedingDocument, PrecedingDocumentItem, SubsequentDocument, SubsequentDocumentItem
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SDDOCUMENTMULTILEVELPROCFLOW"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA