P_LatestGIRltdMatDocDate
Latest Goods Issue Related Material Document Date
P_LatestGIRltdMatDocDate is a Basic CDS View that provides data about "Latest Goods Issue Related Material Document Date" in SAP S/4HANA. It reads from 1 data source (I_SDDocumentProcessFlow) and exposes 3 fields with key fields PrecedingDocument, PrecedingDocumentCategory. Part of development package ODATA_LE_PROCESSFLOW.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SDDocumentProcessFlow | Flow | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PLTSTGIRLTDDAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PrecedingDocument | I_SDDocumentProcessFlow | PrecedingDocument | |
| KEY | PrecedingDocumentCategory | I_SDDocumentProcessFlow | PrecedingDocumentCategory | |
| MaxCreationDate |
@AbapCatalog.sqlViewName: 'PLTSTGIRLTDDAT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private: true
@VDM.viewType: #BASIC
define view P_LatestGIRltdMatDocDate
as select from I_SDDocumentProcessFlow as Flow
{
key Flow.PrecedingDocument,
key Flow.PrecedingDocumentCategory,
max(CreationDate) as MaxCreationDate
}
where Flow.SubsequentDocumentCategory = 'R'
or Flow.SubsequentDocumentCategory = 'h'
group by PrecedingDocument,
PrecedingDocumentCategory
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