Automic Workload Automation

  • 1.  Unable delete a job , shows active

    Posted Nov 15, 2016 03:28 PM
    I'm unable to delete a job, shows "Object is active, you cannot delete this object when it is active". Job is not currently running.


  • 2.  Unable delete a job , shows active

    Posted Nov 15, 2016 03:56 PM
    Can you check the Statistics (run history) of the job you're trying to delete? There is most likely an old run that is still active. Once you find the run/runID, you can search for it in Activities window and cancel it.


  • 3.  Unable delete a job , shows active

    Posted Nov 15, 2016 04:12 PM
    I check it already, there is no active job. This is not an easy one :)


  • 4.  Unable delete a job , shows active

    Posted Nov 15, 2016 04:24 PM
    Can you switch to "List view" from "Hierarchical view". When the parent object is already deactivated the child is left out there.


  • 5.  Unable delete a job , shows active

    Posted Nov 15, 2016 04:38 PM
    That didn't work, don't think that is the issue.Any other thoughts ?


  • 6.  Unable delete a job , shows active

    Posted Nov 15, 2016 06:07 PM
    The statistics windows I think has a limit of how many it can show.
    Try querying the table. You'll want to put in the client number, type you're looking for (JOBS? SCRI? JOBF? etc), and the name of the object.

    The example below, will list any active runs for 'JOBS.SAMPLE' in client 100.

    select oh_client, oh_name, oh_otype, oh_deleteflag, ah_idnr, AH_ParentAct, ah_timestamp1, ah_timestamp2, ah_timestamp4
    from AH, OH  where 1=1and oh_idnr = ah_oh_idnr
    and oh_deleteflag = 0
    and ah_timestamp4 is null
    and oh_client = '100'
    and oh_otype = 'JOBS'
    and oh_name = 'JOBS.SAMPLE'


      


  • 7.  Unable delete a job , shows active

    Posted Nov 15, 2016 09:49 PM
    If this is a case of your UC4 job not realizing that the task it ran has completed, then you need to manually change the jobs status to the ENDED... option of your choice.