This issue is resolved in vRealize Automation 7.5.
Workaround:
A workaround is provided below for this issue:
Validate the name of tenants on both Source and Target environments:
- Within the Source environment:
- Connect to Source vRealize Automation vPostgres database:
su - postgres
psql -d vcac
- Find the list of Tenants:
select * from tenant;
- Within the Target environment:
- Connect to Target vRealize Automation vPostgres database:
su - postgres
psql -d vcac
- Find the list of Tenants:
set schema 'saas';
select * from "Organizations";
Note: strOrganization column of above table is the Tenant information. The tenants in 6.2.x 'tenant' table will match to the 7.x 'Organizations' table.