I_MfgOrderTypeVH
Manufacturing Order Type Value Help
I_MfgOrderTypeVH is a Composite CDS View that provides data about "Manufacturing Order Type Value Help" in SAP S/4HANA. It reads from 1 data source (I_OrderType) and exposes 2 fields with key field ManufacturingOrderType. It is exposed through 1 OData service (UI_RFM_MNG_MSTRPLNDORD). Part of development package ODATA_PP_MRP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_OrderType | I_OrderType | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | ManufacturingOrderType | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Analytics.technicalName | IMFGORDTYPEVH | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #COMPOSITE | view | |
| EndUserText.label | Manufacturing Order Type Value Help | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_RFM_MNG_MSTRPLNDORD | UI_RFM_MNG_MSTRPLNDORD | V2 | C1 | NOT_RELEASED |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ManufacturingOrderType | |||
| ManufacturingOrderTypeName |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'ManufacturingOrderType'
@ObjectModel.dataCategory: #VALUE_HELP
@Analytics.technicalName: 'IMFGORDTYPEVH'
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #MASTER}
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Manufacturing Order Type Value Help'
@Search.searchable: true
@Consumption.ranked: true
define view entity I_MfgOrderTypeVH
as select from I_OrderType
{
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
@ObjectModel.text.element: [ 'ManufacturingOrderTypeName']
key cast(I_OrderType.OrderType as manufacturingordertype preserving type) as ManufacturingOrderType,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
@Semantics.text: true
cast(I_OrderType._Text[1:Language = $session.system_language].OrderTypeName as manufacturingordertypename preserving type) as ManufacturingOrderTypeName
}
where
I_OrderType.OrderCategory = '10'
or I_OrderType.OrderCategory = '40';
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA