I_FldLogsReceivedItems
Field Logistics Received items
I_FldLogsReceivedItems is a Composite CDS View that provides data about "Field Logistics Received items" in SAP S/4HANA. It reads from 1 data source (I_MaterialDocumentItem_2) and exposes 6 fields with key fields MaterialDocument, MaterialDocumentItem, MaterialDocumentYear.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_MaterialDocumentItem_2 | MaterialDocumentItem | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFLDLOGRCVD | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Field Logistics Received items | view | |
| VDM.viewType | #COMPOSITE | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaterialDocument | I_MaterialDocumentItem_2 | MaterialDocument | |
| KEY | MaterialDocumentItem | I_MaterialDocumentItem_2 | MaterialDocumentItem | |
| KEY | MaterialDocumentYear | I_MaterialDocumentItem_2 | MaterialDocumentYear | |
| PurchaseOrder | PurchaseOrder | |||
| PurchaseOrderItem | PurchaseOrderItem | |||
| QuantityInBaseUnit | QuantityInBaseUnit |
@AbapCatalog.sqlViewName: 'IFLDLOGRCVD'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Field Logistics Received items'
@VDM.viewType: #COMPOSITE
@ObjectModel.usageType: {serviceQuality: #A,
dataClass: #TRANSACTIONAL,
sizeCategory: #L}
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_FldLogsReceivedItems
as select from I_MaterialDocumentItem_2 as MaterialDocumentItem
{
key MaterialDocumentItem.MaterialDocument,
key MaterialDocumentItem.MaterialDocumentItem,
key MaterialDocumentItem.MaterialDocumentYear,
PurchaseOrder,
PurchaseOrderItem,
QuantityInBaseUnit
}
where
(
GoodsMovementType = '105'
or GoodsMovementType = '109'
)
and GoodsMovementIsCancelled <> 'X'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MATERIALDOCUMENTITEM_2"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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