WAAE: Error CAUAJM_E_10730 on job delete
search cancel

WAAE: Error CAUAJM_E_10730 on job delete

book

Article ID: 103379

calendar_today

Updated On:

Products

CA Workload Automation AE - Business Agents (AutoSys) CA Workload Automation AE - Scheduler (AutoSys) Workload Automation Agent

Issue/Introduction

Workload Automation AE (AutoSys Edition)

When we try to delete a specific jobs we receive the following error message:

ERROR: The JIL submitted CANNOT BE PROCESSED!
CAUAJM_E_10730 The product has detected corrupt meta string. 

The job is not deleted. We need to delete the job in order to recreate it properly.

 

Environment

WAAE 11.3.6 SP6 on Linux + Oracle

Cause

The encountered problem seems to be related to a data/disk corruption.

Resolution

The solution is to set “IS_ACTIVE” and “IS_CURRVER” columns in "UJO_JOB" table to 0 so that you can recreate the job.

Example: 

SQL> select joid, job_name from aedbadmin.ujo_job where job_name like ‘testjob’; 

JOID JOB_NAME 
------- ----------------
1234   testjob 

SQL> update aedbadmin.ujo_job set IS_ACTIVE=0 where joid = 1234 ; 

SQL> update aedbadmin.ujo_job set IS_CURRVER=0 where joid = 1234 ; 

SQL> select joid, job_name, IS_ACTIVE, IS_CURRVER from aedbadmin.ujo_job where joid = 1234; 

JOID JOB_NAME IS_ACTIVE IS_CURRVER 
---------- ---------- ----------------- ---------------- 
1234 testjob 0 0 


Now the job is considered as deleted and you can recreate the job properly.

Problem is resolved by applying the solution.