I_FldLogsToBeReceivedItmType
To be Received by Item Type
I_FldLogsToBeReceivedItmType is a Composite CDS View that provides data about "To be Received by Item Type" in SAP S/4HANA. It reads from 1 data source (I_FldLogsDateFuncVH) and exposes 8 fields with key field FldLogsSuplrItemUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_FldLogsDateFuncVH | I_FldLogsDateFuncVH | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| P_DateFunction | datefunctionid |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | To be Received by Item Type | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | FldLogsSuplrItemUUID | _ProcessReceipts | FldLogsSuplrItemUUID | |
| FldLogsItemType | _ProcessReceipts | FldLogsItemType | ||
| DeliveryDate | _ProcessReceipts | DeliveryDate | ||
| FldLogsNumberOfItmsToBeRcvd | ||||
| Plant | _ProcessReceipts | Plant | ||
| Supplier | _ProcessReceipts | Supplier | ||
| Material | _ProcessReceipts | Material | ||
| FldLogsPurOrdItem | _ProcessReceipts | FldLogsPurOrdItem |
@EndUserText.label: 'To be Received by Item Type'
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #XL,
dataClass: #MIXED
}
@VDM.viewType: #COMPOSITE
define view entity I_FldLogsToBeReceivedItmType
with parameters
P_DateFunction : datefunctionid
as select from I_FldLogsDateFuncVH ( P_DateFunction :$parameters.P_DateFunction ) as _DateFunVH
association [0..1] to I_FldLogsProcRcptSrchEnbld as _ProcessReceipts on(
_ProcessReceipts.DeliveryDate >= _DateFunVH.StartDate
and _ProcessReceipts.DeliveryDate <= _DateFunVH.EndDate
)
{
key _ProcessReceipts.FldLogsSuplrItemUUID,
_ProcessReceipts.FldLogsItemType,
_ProcessReceipts.DeliveryDate,
cast(1 as abap.int4) as FldLogsNumberOfItmsToBeRcvd,
_ProcessReceipts.Plant,
_ProcessReceipts.Supplier,
_ProcessReceipts.Material,
_ProcessReceipts.FldLogsPurOrdItem
}
where
_ProcessReceipts.FldLogsItmIsToBeReceived = 'X'
and _ProcessReceipts.DeliveryDate is not initial
and _ProcessReceipts.FldLogsItemType <> 'NA'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_FLDLOGSDATEFUNCVH",
"I_FLDLOGSPROCRCPTSRCHENBLD"
],
"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