I_FldLogsPurchaseRequisition

DDL: I_FLDLOGSPURCHASEREQUISITION Type: view_entity BASIC Package: FLOG_SHIPMENT

Purchase Requisition Basic Data

I_FldLogsPurchaseRequisition is a Basic CDS View that provides data about "Purchase Requisition Basic Data" in SAP S/4HANA. It reads from 1 data source (eban) and exposes 3 fields with key fields PurchaseRequisition, PurchaseRequisitionItem. Part of development package FLOG_SHIPMENT.

Data Sources (1)

SourceAliasJoin Type
eban eban from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchase Requisition Basic Data view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PurchaseRequisition
KEY PurchaseRequisitionItem
IsEndOfPurposeBlocked iseopblocked
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Purchase Requisition Basic Data'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #M
define view entity I_FldLogsPurchaseRequisition
  as select from eban
{
  key cast (banfn as vdm_purchaserequisition preserving type )     as PurchaseRequisition,
  key cast (bnfpo as vdm_purchaserequisitionitem preserving type ) as PurchaseRequisitionItem,
      @Semantics.booleanIndicator : true
      iseopblocked                                                 as IsEndOfPurposeBlocked
}