Resource bundle is not available while looking for key-"CAUAJM_E_50032"
search cancel

Resource bundle is not available while looking for key-"CAUAJM_E_50032"

book

Article ID: 92139

calendar_today

Updated On:

Products

CA Workload Automation AE - Scheduler (AutoSys)

Issue/Introduction

When loading the WAAE variables in a script ran by a command job it fails with the following errors:

Resource bundle is not available while looking for key="CAUAJM_E_10880".
 
Resource bundle is not available while looking for key="CAUAJM_E_10046".
 
Resource bundle is not available while looking for key="CAUAJM_E_50032".

Environment

WAAE 11.3.6 on Windows

Cause

Problem was related to Windows 8.3 aliasing rules for “Short File Name”.
 

Resolution

Problem was related to Windows (8.3 aliasing rules for SFN).
 
Resolved by changing the following variable settings in the script:
 
Before modification:
 
SET PATH=%PATH%;"D:\app\Ca\WORKLO~1\autosys\bin"
SET AUTOSYS=D:\app\CA\WORKLO~1\autosys
SET AUTOUSER=D:\app\CA\WORKLO~1\autosys\autouser.PRD
 

After modification:
 
SET PATH=%PATH%;"D:\app\CA\Workload Automation AE\autosys\bin"
SET AUTOSYS=D:\app\CA\Workload Automation AE\autosys
SET AUTOUSER=D:\app\CA\Workload Automation AE\autouser.PRD

After this modification the script runs correctly and the job is completed successfully.