I_ProductionOrderStdVH

DDL: I_PRODUCTIONORDERSTDVH SQL: IPRNO__VH Type: view COMPOSITE Package: VDM_PP_SFC

Production Order

I_ProductionOrderStdVH is a Composite CDS View that provides data about "Production Order" in SAP S/4HANA. It reads from 1 data source (I_ProductionOrder) and exposes 5 fields with key field ProductionOrder. It is exposed through 1 OData service (UI_RFM_SUPPLY_SORTRULE). Part of development package VDM_PP_SFC.

Data Sources (1)

SourceAliasJoin Type
I_ProductionOrder I_ProductionOrder from

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IPRNO__VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey ProductionOrder view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label Production Order view

OData Services (1)

ServiceBindingVersionContractRelease
UI_RFM_SUPPLY_SORTRULE UI_RFM_SUPPLY_SORTRULE V2 C1 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProductionOrder ProductionOrder
ProductionOrderText ProductionOrderText
OrderCategory OrderCategory
ProductionOrderType ProductionOrderType
ProductionPlant ProductionPlant
@AbapCatalog.sqlViewName: 'IPRNO__VH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.modelingPattern: #NONE
@ObjectModel.representativeKey: 'ProductionOrder'
@ObjectModel.supportedCapabilities: [#SEARCHABLE_ENTITY, #VALUE_HELP_PROVIDER]
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Production Order'

define view I_ProductionOrderStdVH as select from I_ProductionOrder {
  @ObjectModel.text.element: ['ProductionOrderText']
  @Search.defaultSearchElement: true
  @Search.ranking: #HIGH
  @Search.fuzzinessThreshold: 0.8
  key ProductionOrder,
  @Search.defaultSearchElement: true
  @Search.ranking: #LOW
  @Search.fuzzinessThreshold: 0.80
  @Semantics.text: true
  ProductionOrderText,

  @Consumption.hidden: true
  OrderCategory,
  @Consumption.hidden: true
  ProductionOrderType,
  @Consumption.hidden: true
  ProductionPlant
};