The autoping -M ALL command is attempting to ping machines that no longer exist in the environment.
These machines do not appear in the autorep -m ALL output.
AutoSys Workload Automation
This discrepancy indicates that there are job definitions referencing these outdated machines within the AutoSys database.
To prevent autoping from attempting to ping these non-existent machines, you need to identify and update or remove the jobs that reference them.
select job_name from ujo_job where is_active=1 and is_currver=1 and job_type = 99 and mach_name not in (select mach_name from ujo_machine)
After updating or deleting the jobs, the autoping -m ALL command should no longer attempt to ping the removed machines.