I_FLDLOGSPURGDOCSCHEDLINE

CDS View

FL specific Purchasing Schedule Line

I_FLDLOGSPURGDOCSCHEDLINE is a CDS View in S/4HANA. FL specific Purchasing Schedule Line. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_FldLogsPurOrdOpenQty view from COMPOSITE Purchase order open quantity
@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
}