This topic summarizes compatibility and migration issues for SAS/AF software.
The SAS/AF video player class (a legacy class from SAS 6) is not supported in
SAS 9.1 and later. You can use the DICTIONARY.CATALOGS view in the SQL procedure
to scan for all of the member types in the library:
proc SQL;
select objtype, count(objtype) from dictionary.catalogs
where libname = 'YOURLIB' group by objtype;