You can receive alerts for any successful or unsuccessful integration between Smart Materials-Jovix workflows. To create an alert, use the Early Warnings screen in Smart Materials Web.
The following is an example of an alert code for failed events:
The following example code can be used to send an alert mail that includes details of all the failed integrations in the last 15 minutes:
SELECT entity_type, entity_name, comments
FROM mi_jvx_stagings
WHERE lmod BETWEEN SYSDATE - INTERVAL '15' MINUTE AND SYSDATE
AND status = 'FAILED'
When the alert is triggered, all the assigned users receive an email as specified in the Email Subject and Email Body fields of the Early Warnings screen.
The following table lists all the database columns that can be used to create early warning alert:
Column name in Jovix Integration Report |
Database column in MI_JVX_Stagings table |
Data Transfer |
TO_JOVIX_IND |
Entity Type |
ENTITY_TYPE |
Entity Name |
ENTITY_NAME |
Status |
STATUS |
Log File |
LOG_FILE_NAME |
Created Date |
CREATED_DATE |
Last Initiated |
LMOD |
Comments (in versions 10.3 and 10.4 only) |
COMMENTS |
Project |
PROJ_ID |
Jovix Project |
JVX_PROJ_ID |
Job Name |
JOB_NAME |
Jovix Entity ID |
JVX_ENTITY_ID |
Jovix Event |
JVX_EVENT_TYPE |
What do you want to do?