If you are running Macola on SQL Server, copy the following script into query analyzer and run it. You'll have to change the FROM line for the module that you want to look at. This one is looking at the AR module for custom screens.
use screens
select screen_id, screen_name
from arscrfil_sql
where screen_name <> 'MACOLA' and
screen_number = 1
order by screen_id, screen_name
Kevin Scheeler