I_FldLogsToBeReceivedItmType

DDL: I_FLDLOGSTOBERECEIVEDITMTYPE Type: view_entity COMPOSITE

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)

SourceAliasJoin Type
I_FldLogsDateFuncVH I_FldLogsDateFuncVH from

Parameters (1)

NameTypeDefault
P_DateFunction datefunctionid

Annotations (7)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/