I am scheduling the CABI reports and email to the recipients. But I don't see the emails are triggering. Followed the below KB article. From the cabi server I am able to telnet the SMTP server port successfully.
https://knowledge.broadcom.com/external/article/203516/where-is-the-smtp-email-setting-for-sche.html
Based on the error, which you can find in the jaspersoft community (CABI) via google search,
java.sql.SQLSyntaxErrorException: [TibcoSoftware][SQLServer JDBC Driver][SQLServer]Invalid column name 'SCHED_TIME'.
Please run this statement on your CA UIM database.
ALTER TABLE QRTZ_FIRED_TRIGGERS ADD SCHED_TIME BIGINT;
UPDATE QRTZ_FIRED_TRIGGERS SET SCHED_TIME = FIRED_TIME;
ALTER TABLE QRTZ_FIRED_TRIGGERS ALTER COLUMN SCHED_TIME BIGINT NOT NULL;
Then try scheduling and emailing the report again.