Con el siguiente querie que me paso mati bringate, podre ver cuales son las tablas de CWA
SELECT cwTMTables.TableName Name ,
cwTMTables.TableDescription_ARG Description
FROM GIGA_S_15_INT.gigared.dbo.cwTMTables ,
GIGA_S_15_INT.gigared.dbo.cwTMTables T1
WHERE cwTMTables.MainObject
=
T1.TableName
AND NOT cwTMTables.TableName LIKE 'cw%'
AND NOT cwTMTables.TableName LIKE 'sl%'
ORDER BY Name;