Unable to Delete Global Variables with special Characters
search cancel

Unable to Delete Global Variables with special Characters

book

Article ID: 202467

calendar_today

Updated On:

Products

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

Issue/Introduction

Normally, a sendevent to set a Global Variable will not allow you to create one with special characters such as '?'. You will get this message:
"CAUAJM_E_60028 Global Name contains one or more invalid characters."

One customer did notice they had some GVs with special characters in their list of GVs from command 'autorep -G ALL'.

They tried to delete them using 'sendevent', but were getting the same error above.

Environment

Release : 11.3.6

Component : CA Workload Automation AE (AutoSys)

Cause

It was not determined how the Global Variables with special characters were inserted into the database. They were perhaps remnants from a previous version before upgrade/migration.

Resolution

The Global Variables are all stored in the ujo_glob table.

To remove a Global Variable manually from the DB:

delete from ujo_glob where glo_name='gvname';
commit;

Replace 'gvname' with the actual name of the Global Variable.

Example where your Global Variable is called TEST??_01 :

delete from ujo_glob where glo_name='TEST??_01';
commit;

If you have Dual Event Servers, run the delete statement on both.