I_MRPType

DDL: I_MRPTYPE SQL: IPPMRPTYPE Type: view BASIC

MRP Type

I_MRPType is a Basic CDS View (Dimension) that provides data about "MRP Type" in SAP S/4HANA. It reads from 1 data source (t438a) and exposes 4 fields with key field MRPType. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t438a typ from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_MRPTypeText _Text $projection.MRPType = _Text.MRPType
[0..1] I_MRPProcedure _MRPProcedure $projection.MRPProcedure = _MRPProcedure .MRPProcedure

Annotations (23)

NameValueLevelField
AbapCatalog.sqlViewName IPPMRPTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #GENERIC view
AbapCatalog.buffering.numberOfKeyFields 001 view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
Consumption.ranked true view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey MRPType view
ObjectModel.sapObjectNodeType.name MRPType 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 #BASIC view
EndUserText.label MRP Type view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY MRPType t438a dismm
MRPProcedure t438a disvf
_MRPProcedure _MRPProcedure
_Text _Text
@AbapCatalog.sqlViewName: 'IPPMRPTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.buffering: {status: #ACTIVE, type: #GENERIC, numberOfKeyFields: 001}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'MRPType'
@ObjectModel.semanticKey: ['MRPType']
@ObjectModel.sapObjectNodeType.name: 'MRPType'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'MRP Type'

/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ]  } */
define view I_MRPType
  as select from t438a as typ
    
  association [0..*] to I_MRPTypeText  as _Text         on $projection.MRPType = _Text.MRPType
  association [0..1] to I_MRPProcedure as _MRPProcedure on $projection.MRPProcedure  = _MRPProcedure .MRPProcedure
{
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
      @ObjectModel.text.association: '_Text'
  key typ.dismm as MRPType,
      @ObjectModel.foreignKey.association: '_MRPProcedure'
      @ObjectModel.sapObjectNodeTypeReference: 'MRPProcedure'
      typ.disvf as MRPProcedure,

      // Associations

      _MRPProcedure,
      _Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T438A"
],
"ASSOCIATED":
[
"I_MRPPROCEDURE",
"I_MRPTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/