I_MRPTYPE
MRP Type
I_MRPTYPE is a CDS View in S/4HANA. MRP Type. It contains 2 fields. 5 CDS views read from this table.
CDS Views using this table (5)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_BufferedMRPTypeVH | view | from | CONSUMPTION | MRP Type Value Help for Buffered Materials |
| C_MRPTypeVH | view | from | CONSUMPTION | MRP Type Value Help |
| C_NonBufferedMRPTypeVH | view | from | CONSUMPTION | MRP Type Value Help for Non Buffered Materials |
| I_MRPTypeVH | view_entity | from | COMPOSITE | MRP Type |
| P_DDMATERIAL | view | inner | COMPOSITE |
Fields (2)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | MRPType | MRPType | 3 |
| MRPProcedure | MRPProcedure | 3 |
@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":""
}
}*/