I_OrderTypeVH

DDL: I_ORDERTYPEVH Type: view_entity COMPOSITE Package: VDM_PP_SFC

Order Type

I_OrderTypeVH is a Composite CDS View that provides data about "Order Type" in SAP S/4HANA. It reads from 1 data source (I_OrderType) and exposes 4 fields with key field OrderType. Part of development package VDM_PP_SFC.

Data Sources (1)

SourceAliasJoin Type
I_OrderType I_OrderType from

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.technicalName IORDERTYPEVH view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey OrderType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label Order Type view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY OrderType OrderType
OrderCategory OrderCategory
_OrderCategory _OrderCategory
_Text _Text
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #VALUE_HELP
@Analytics.technicalName: 'IORDERTYPEVH'
@ObjectModel.modelingPattern: #NONE
@ObjectModel.representativeKey: 'OrderType'
@ObjectModel.supportedCapabilities: [#SEARCHABLE_ENTITY, #VALUE_HELP_PROVIDER]
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Order Type'

/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view entity I_OrderTypeVH
  as select from I_OrderType

{
      @ObjectModel.text.association: '_Text'
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key OrderType,
      @Consumption.valueHelpDefinition: [ { entity: { name: 'I_OrderCategory', element: 'OrderCategory'} } ]
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      OrderCategory,

      // Associations

      _OrderCategory,
      _Text
};