US English (US)
ES Spanish

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • Log in
English (US)
US English (US)
ES Spanish
  • Home

RIO Connect: Integration Framework

Contact Us

If you still have questions or prefer to get help directly from an agent, please submit a request.
We’ll get back to you as soon as possible.

Please fill out the contact form below and we will reply as soon as possible.

  • RIO Certification
    RIO Certification Program RIO Academy RIO Challenge RIO Recipe Training
  • Releases
    Release Notes
  • Help & Support
    Install RIO Education RIO Insights RIO Recipe Support
  • About Us
    Who is RIO Education? Start Your RIO Journey Housekeeping
  • Experience RIO in action
+ More

Table of Contents

The Installation Steps

The integration framework's purpose is to monitor integration jobs, ensuring they don't exceed their set intervals. If a job runs past its designated interval, an automation will send email notifications to the specified recipients.

The Installation Steps

  1. Deploy to the destination org using the ‘Integration Framework' zip.

Please click this to access the Integration Framework zip.

 

Post Deployment Steps

  1. Navigate to RIO Connect Job Config Custom Metadata in the Setup
  2. Create the custom metadata records according to your requirements
  1. Navigate to RIO Connect Job Object and look for Trigger to Send Alert Formula Field.
  2. Configure the Formula accordingly to your preferred working hours. This is important because this field will determine whether to send out the email notification or not.  The formula used is using GMT time zone. To set the formula correctly, you might need to do the conversion according to your time zone.
AND(
RC_Force_Stop_Trigger_Alert__c = FALSE,
IF(
NOT(ISBLANK(RC_Job_Last_Run_DateTime__c)),
((NOW() - RC_Job_Last_Run_DateTime__c)*24*60) > RC_Interval_to_Trigger_Alert_in_Minutes__c,
((NOW() - CreatedDate)*24*60) > RC_Interval_to_Trigger_Alert_in_Minutes__c
),

//Edit the 0 and 9 accordingly
VALUE(MID(TEXT(NOW()), 12, 2)) >= 0,
VALUE(MID(TEXT(NOW()), 12, 2)) < 9
)
  1. Open the developer console and paste the code below. This will schedule the apex to run hourly and send out the email notification whenever necessary.
REDU_IntegrationMonitoring_SCHED b = new REDU_IntegrationMonitoring_SCHED();      
String sch = '0 0 * * * ?';
System.schedule('Integration Monitoring Job', sch, b);

***Notes***

  1. For Production environment, you will need to activate the flows listed below. The reason is the flows deployed to production will be inactive by default.
    1. RIO Connect Email Notification
    2. RIO Connect Record Sync

Was this article helpful?

Yes
No
Give feedback about this article

Related Articles

  • RIO Education 3.13.2 Release Notes
RIO Education

RIO Education, a WDCi Company. This information is proprietary, confidential and protected by copyright ©2024.

CONTACT

Get in touch

  • Privacy
  • Terms of service

Knowledge Base Software powered by Helpjuice

Definition by Author

0
0
Expand