I_FldLogsPurgDocSchedLine
FL specific Purchasing Schedule Line
I_FldLogsPurgDocSchedLine is a Basic CDS View that provides data about "FL specific Purchasing Schedule Line" in SAP S/4HANA. It reads from 1 data source (eket) and exposes 7 fields with key fields PurchasingDocument, PurchasingDocumentItem, ScheduleLine. It has 1 association to related views. Part of development package ODATA_FLOG_PROCESS_RECEIPTS.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| eket | _eket | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_FldLogsPurchasingDocItem | _PurchaseItem | _eket.ebeln = _PurchaseItem.PurchasingDocument and _eket.ebelp = _PurchaseItem.PurchasingDocumentItem |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | FL specific Purchasing Schedule Line | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #BASIC | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchasingDocument | eket | ebeln | |
| KEY | PurchasingDocumentItem | eket | ebelp | |
| KEY | ScheduleLine | etenr | ||
| ScheduleLineDeliveryDate | eindt | |||
| Batch | charg | |||
| mengewemngendasScheduleLineOpenQuantity | ||||
| OrderQuantityUnit | _PurchaseItem | OrderQuantityUnit |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'FL specific Purchasing Schedule Line'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #TRANSACTIONAL
}
@VDM.viewType: #BASIC
define view entity I_FldLogsPurgDocSchedLine
as select from eket as _eket
association [0..1] to I_FldLogsPurchasingDocItem as _PurchaseItem on _eket.ebeln = _PurchaseItem.PurchasingDocument
and _eket.ebelp = _PurchaseItem.PurchasingDocumentItem
{
key _eket.ebeln as PurchasingDocument,
key _eket.ebelp as PurchasingDocumentItem,
key etenr as ScheduleLine,
eindt as ScheduleLineDeliveryDate,
charg as Batch,
@Semantics.quantity.unitOfMeasure: 'OrderQuantityUnit'
case
when
_eket.menge > _eket.wemng
then
(_eket.menge - wemng ) end as ScheduleLineOpenQuantity,
_PurchaseItem.OrderQuantityUnit
}
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