Metrics and Scorecards Upgrade
Upgrade Metrics and Scorecards
This module will be upgraded to the latest version of Cloud APM automatically. No additional steps are required.
Modify the Event or Asset Criticality Data for Work History Cube
If the event or asset criticality data in your database does not match with the standard IDs used for the work history cube, then you have to map the event or asset criticality data to the standard event or asset criticality data using the corresponding families.
Map the Non-Standard Event Type Data to Standard Event Type IDs Using Queries for Event Type Dimension Family
This topic describes how to map the event type data available in your database to the standard event type data defined for a work history cube.
Procedure
Map an Event Type to a Standard Event Type ID
EventType | EventTypeCaption |
---|---|
Miscellaneous | Miscellaneous |
PM/PdM | PM/PdM |
Repair | Repair |
Unknown | Unknown |
- INSPECTION
- PM/PdM
- Reading
- Repair
- Run the query
UPDATE [MI_DIM_EVENT_TYPE] SET [MI_DIM_EVENT_TYPE].[EventTypeCaption] = 'INSPECTION' WHERE [MI_DIM_EVENT_TYPE].[EventTypeCaption] = 'Miscellaneous'
.The event type INSPECTION is mapped to the standard event type ID Miscellaneous.
Map the Non-Standard Event Priority Data to Standard Event Priority IDs Using Queries for Event Priority Dimension Family
This topic describes how to map the event priority data available in your database to the standard event priority data defined for a work history cube.
Procedure
Map Event Priority Data to a Standard Event Priority ID
Priority | PriorityCaption |
---|---|
1 | Very Low |
2 | Low |
3 | Medium |
4 | High |
5 | Emergency |
Unknown | Unknown |
- 1
- 2
- 3
- 4
- Run the query
UPDATE [MI_DIM_EVENT_PRIORITY] SET [MI_DIM_EVENT_PRIORITY].[PriorityCaption] = '1' WHERE [MI_DIM_EVENT_PRIORITY].[PriorityCaption] = 'Emergency’
.The event priority data 1 is mapped to the standard event priority ID 5.
Map the Non-Standard Event Detection Methods to Standard Event Detection Method IDs Using Queries for Event Detection Method Dimension Family
This topic describes how to map the event detection methods available in your database to the standard event detection methods defined for a work history cube.
Procedure
Map an Event Detection Method to a Standard Event Detection Method ID
DetectionMethod | DetectionMethodCaption |
---|---|
0001 | Continuous Condition Monitoring |
0002 | Corrective Maintenance |
0003 | Formal Inspection |
0004 | Operator Routine Observation |
0005 | Periodic Condition Monitoring |
0006 | Preventive Maintenance |
0007 | Production Interference |
0008 | Radar Operator observation |
- Inspection
- Observation
- Preventive Maintenance
- Production Interference
- Run the query
UPDATE [MI_DIM_EVENT_DETECTION] SET [MI_DIM_EVENT_DETECTION].[DetectionMethod] = 'Inspection' WHERE [MI_DIM_EVENT_DETECTION].[DetectionMethod] = '0001'
.The event detection method Inspection is mapped to the standard event detection method ID 0001.
Map the Non-Standard Event Breakdown Data to Standard Event Breakdown IDs Using Queries for Event Breakdown Dimension Family
This topic describes how to map the event breakdown data available in your database to the standard event breakdown data defined for a work history cube.
Procedure
Map an Event Breakdown Indicator to a Standard Event Breakdown ID
Breakdown | BreakdownCaption |
---|---|
N | N |
Unknown | Unknown |
Y | Y |
- No
- Yes
- Unknown
- Run the query
UPDATE [MI_DIM_EVENT_BREAKDOWN] SET [MI_DIM_EVENT_BREAKDOWN].[BreakdownCaption] = 'Yes' WHERE [MI_DIM_EVENT_BREAKDOWN].[BreakdownCaption] = 'Y'
.The event breakdown indicator Yes is mapped to the standard event breakdown ID Y.
Map the Non-Standard Asset Criticality Data to Standard Asset Criticality IDs Using Queries for Asset Criticality Dimension Family
This topic describes how to map the asset criticality data available in your database to the standard asset criticality IDs defined for a work history cube.
Procedure
Map Asset Criticality Data to a Standard Asset Criticality ID
Criticality | CriticalityCaption |
---|---|
A | High |
B | Medium |
C | Low |
Unknown | Unknown |
- X
- Y
- Z
- H
- Run the query
UPDATE [MI_DIM_ASSET_CRITICALITY] SET [MI_DIM_ASSET_CRITICALITY].[CriticalityCaption] = 'X' WHERE [MI_DIM_ASSET_CRITICALITY].[CriticalityCaption] = 'High'
.The asset criticality data X is mapped to the standard asset criticality ID A.