Asset ID Configuration
About Calibration Asset Configuration
The Asset ID Configuration feature is used to configure the different asset families that can be used in the Calibration Management module. You can map any of the Equipment, Functional Location, or custom asset family fields as an asset ID, which is used to construct the applied template ID and in the data loader to find the asset. Equipment and Functional Location are configured as part of the baseline product; however, you can add a Calibration Asset Configuration record for the custom asset in the database.
To add a Calibration Asset Configuration record for the custom asset family, follow these steps:
Access a Calibration Asset Configuration Record
Procedure
Create a Query for an Asset family
About This Task
Procedure
Example
SELECT [Piping Line].ENTY_KEY "MI_TMCA0000_ASSET_KEY_N"
, Calibration_Asset_ID_Query."Asset ID" "MI_TMCA0000_TAG_NAME_C"
, [Piping Line].[ASSET_DESC_CHR] "MI_TMCA0000_TAG_DESCR_C"
, [Piping Line].[ASSET_MANUF_CHR] "MI_TMCA0000_MFR_C"
, [Piping Line].[ASSET_MODL_CHR] "MI_TMCA0000_MOD_NO_C"
, [Piping Line].[ASSET_SER_CHR] "MI_TMCA0000_SN_C"
FROM [Piping Line]
JOIN (! 'Public\Meridium\Modules\Calibration Management\Queries\Calibration Asset ID Query' ) Calibration_Asset_ID_Query ON [Piping Line].ENTY_KEY = Calibration_Asset_ID_Query."ENTY_KEY"
WHERE [Piping Line].ENTY_KEY IN ((? :n :id=Asset_Key))
What To Do Next
Include the Custom Asset Details in the Applied Template ID
Before You Begin
About This Task
This topic describes how to add a new asset family to the existing Calibration Asset ID Query located in the Public\Meridium\Modules\Calibration Management\Queries\Calibration Asset ID Query folder. It is used to combine the Equipment, Functional Location, and the custom assets to display the fields in the Linked Asset subsection in the Calibration Profile section.
This query contains the asset families and their fields from the configuration.
Procedure
Example
SELECT [MI_EQUIP000].[MI_EQUIP000_EQUIP_TECH_NBR_C] "Asset ID"
, [MI_EQUIP000].[MI_EQUIP000_OBJ_TYP_C] "Type"
, [MI_EQUIP000].ENTY_KEY "ENTY_KEY"
FROM [MI_EQUIP000]
UNION
SELECT [MI_FNCLOC00].[MI_FNCLOC00_FNC_LOC_C] "Asset ID"
, [MI_FNCLOC00].[MI_FNCLOC00_OBJ_TYP_C] "Type"
, [MI_FNCLOC00].ENTY_KEY "ENTY_KEY"
FROM [MI_FNCLOC00]
UNION
SELECT [Piping Line].[ASSET_ID_CHR] "Asset ID"
, [Piping Line].[ASSET_TYPE_CHR] "Type"
, [Piping Line].ENTY_KEY "ENTY_KEY"
FROM [Piping Line]
Similarly, you can add more custom families to the query using the same field names.
What To Do Next
- If you want to perform an automated calibration, create a Device Mapping record.