I_ManufacturingOrderImportance

DDL: I_MANUFACTURINGORDERIMPORTANCE SQL: IMFGORDIMP Type: view COMPOSITE

Manufacturing Order Importance Code

I_ManufacturingOrderImportance is a Composite CDS View (Dimension) that provides data about "Manufacturing Order Importance Code" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_MfgOrderCategory _MfgOrderCategory $projection.ManufacturingOrderCategory = _MfgOrderCategory.ManufacturingOrderCategory

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IMFGORDIMP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ManufacturingOrderImportance view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.sapObjectNodeType.name ManufacturingOrderImportance view
ObjectModel.usageType.serviceQuality #C 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 Manufacturing Order Importance Code view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ManufacturingOrderCategory ManufacturingOrderCategory
KEY ManufacturingOrderImportance ManufacturingOrderImportance
_MfgOrderCategory _MfgOrderCategory
@AbapCatalog.sqlViewName: 'IMFGORDIMP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'ManufacturingOrderImportance'
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.sapObjectNodeType.name: 'ManufacturingOrderImportance'
@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #TRANSACTIONAL}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'Manufacturing Order Importance Code'
// There are neither domain values nor a value table, hence a select distinct view


/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ]  } */
define view I_ManufacturingOrderImportance
  as select distinct from I_MfgOrderBasic
  
  association [1..1] to I_MfgOrderCategory as _MfgOrderCategory on $projection.ManufacturingOrderCategory = _MfgOrderCategory.ManufacturingOrderCategory
{
      @ObjectModel.foreignKey.association: '_MfgOrderCategory'
  key ManufacturingOrderCategory,
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}  
  key ManufacturingOrderImportance,
      // Association

      _MfgOrderCategory
}
where ManufacturingOrderImportance <> '';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MFGORDERBASIC"
],
"ASSOCIATED":
[
"I_MFGORDERCATEGORY"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/