Scheduled(JSCH) objects did not become Active after performing an import
search cancel

Scheduled(JSCH) objects did not become Active after performing an import

book

Article ID: 254609

calendar_today

Updated On:

Products

CA Automic Workload Automation - Automation Engine

Issue/Introduction

Does the Scheduled(JSCH ) object automatically become Active after importing it ?

Environment

Release : 12.3.6

Resolution

 

There is no automatic way to kick off the JSCH object. They need to be executed manually one by one .Another option is to get all the JSCH object from your database on a specific Client using the SQL query below.

select OH_Name from OH where OH_Client=<Put your Client here> and OH_OType='JSCH' and OH_DeleteFlag=0;


Then, use some file editor(ex. Vim) to encapsulate the name of the object 

:SET &ACTOBJ# = ACTIVATE_UC_OBJECT(JSCH.NEW.1)
:SET &ACTOBJ# = ACTIVATE_UC_OBJECT(JSCH.NEW.2)

 

Then, create a Script object and put the commands above and execute the Script object.