A system table from the sys schema in master database. This table is new in MSSQL 2008.
Create statement
CREATE TABLE master.sys.sysaudacts (
class tinyint NULL,
id int NULL,
subid int NULL,
grantee int NULL,
audit_spec_id int NULL,
type char (4) NULL,
state char (1) NULL)
GO