Badger TraCS Guides
Task 2.4.2: Recover Users Database, SQL Server Alternative
Task 2.4.2(b): Recover Users Database, SQL Server Alternative
Note: It is recommended that you contact badgertracs@wi.dot.gov to help you assess your agency’s situation. There may be less drastic options available depending on the extent of the damage.
Purpose: Recreate the TraCS Users database when it is destroyed beyond repair and no backups exist. This will also create the 00001 user account with the password of tracs so you can log into the TraCS Configuration manager after you complete the Tasks up to 2.4.5
Requirements: TraCS Installation files, access to field unit with TraCS mobile installed.
In SQL Server Management Studio (SSMS)
Paste the query below to create the tracs_users database. You should use the copy button in the code snippet below.
USE master
GO
CREATE DATABASE tracs_users
GO
use tracs_users
GO
DECLARE @sql1 VARCHAR(1000)
SELECT @sql1='ALTER DATABASE '+quotename(db_name())+' SET ALLOW_SNAPSHOT_ISOLATION ON
ALTER DATABASE '+quotename(db_name())+' SET SINGLE_USER WITH ROLLBACK IMMEDIATE
ALTER DATABASE '+quotename(db_name())+' SET read_committed_snapshot ON
ALTER DATABASE '+quotename(db_name())+' SET MULTI_USER'
exec(@sql1)
Make sure to give your agencies TraCS SQL user owner rights to the database.
Just like above in step 1, in SQL Server Management Studio paste and execute the query below to configure your tracs_user database. You should use the copy button in the code snippet below. Then move to step 4.
/*SQL Server Delta Users Script*/
USE [tracs_users]
GO
CREATE TABLE [AccessLevels] ([Name] NVARCHAR (100) NOT NULL, [Action] NVARCHAR (100) NOT NULL, [Type] NVARCHAR (20), [ActionType] NVARCHAR (20), [Label] NVARCHAR (255), CONSTRAINT [pk_AccessLevels] PRIMARY KEY ([Name], [Action]));
CREATE TABLE [ItemsTable] ([ItemMode] NVARCHAR (15) NOT NULL, [RibbonName] NVARCHAR (50) NOT NULL, [ActionName] NVARCHAR (50) NOT NULL, [Type] NVARCHAR (50), [ButtonType] NVARCHAR (50), [Label] NVARCHAR (50), [Memo1] NVARCHAR (MAX), [Memo2] NVARCHAR (MAX), CONSTRAINT [pk_ItemsTable] PRIMARY KEY ([ItemMode], [RibbonName], [ActionName]));
CREATE TABLE [UserLocations] ([LocationID] NVARCHAR (100) NOT NULL, [LocationName] NVARCHAR (50), [Address1] NVARCHAR (50), [Address2] NVARCHAR (50), [City] NVARCHAR (50), [State] NVARCHAR (2), [ZipCode] NVARCHAR (10), [Phone1] NVARCHAR (20), [Phone2] NVARCHAR (20), [Phone3] NVARCHAR (20), [Phone4] NVARCHAR (20), CONSTRAINT [pk_UserLocations] PRIMARY KEY ([LocationID]));
CREATE TABLE [Users] ([UserID] NVARCHAR (50) NOT NULL, [UserGuid] NVARCHAR (36), [SecondaryUserID] NVARCHAR (50), [NameLast] NVARCHAR (50), [NameFirst] NVARCHAR (50), [NameMiddle] NVARCHAR (50), [NameSuffix] NVARCHAR (10), [Title] NVARCHAR (50), [AccessLevels] NVARCHAR (MAX), [LocationID] NVARCHAR (100), [UserDefaultsID] NVARCHAR (100), [LocationDefaultsID] NVARCHAR (100), [EnterpriseDefaultsID] NVARCHAR (100), [Signature] VARBINARY (MAX), [SignatureType] NVARCHAR (150), [Picture] VARBINARY (MAX), [EMailAddress] NVARCHAR (100), [LastModified] NVARCHAR (250), [UserPassword] NVARCHAR (50), [EncryptionKeyLabel] NVARCHAR (255), [EncryptionKey] VARBINARY (MAX), [EncryptionIV] VARBINARY (MAX), [OldEncryptionKeyLabel] NVARCHAR (255), [OldEncryptionKey] VARBINARY (MAX), [OldEncryptionIV] VARBINARY (MAX), [PreviousPasswords] VARBINARY (MAX), [DatePasswordExpires] DATETIME, [UseSecurePassword] BIT, [UsePasswordExpiration] BIT, [InactiveUser] NVARCHAR (5), [UnlockDateTime] DATETIME, [FailedLoginAttempts] BIGINT, [ForcePasswordReset] BIT, [Salt] NVARCHAR (60), [Iterations] BIGINT, CONSTRAINT [pk_Users] PRIMARY KEY ([UserID]));
CREATE INDEX [EnterpriseDefaultsID] ON [Users] ([EnterpriseDefaultsID] ASC) ;
CREATE INDEX [LocationID] ON [Users] ([LocationID] ASC) ;
CREATE INDEX [SecondaryUserID] ON [Users] ([SecondaryUserID] ASC) ;
CREATE INDEX [UserGuid] ON [Users] ([UserGuid] ASC) ;
CREATE INDEX [UserID] ON [Users] ([UserID] ASC) ;
CREATE TABLE [AssociatedUsers] ([UserID] NVARCHAR (50), [AssociatedUserType] NVARCHAR (10), [AssociatedUserValue] NVARCHAR (100), [AccessLevel] NVARCHAR (100));
CREATE TABLE [EncryptionKeys] ([GenericName] NVARCHAR (255) NOT NULL, [EncryptionKey] VARBINARY (MAX), [EncryptionIV] VARBINARY (MAX), CONSTRAINT [pk_EncryptionKeys] PRIMARY KEY ([GenericName]));
CREATE TABLE [FieldDefaults] ([DefaultsID] NVARCHAR (100), [FormFileName] NVARCHAR (250), [GroupName] NVARCHAR (100), [FieldName] NVARCHAR (100), [DefaultValue] NVARCHAR (100), [RetainsLastValue] NVARCHAR (10));
CREATE TABLE [GUIDefaults] ([DefaultsID] NVARCHAR (100), [Location] NVARCHAR (250), [ItemType] NVARCHAR (100), [ItemName] NVARCHAR (100), [Property] NVARCHAR (100), [sValue] NVARCHAR (255), [bValue] BIT, [iValue] BIGINT, [mValue] VARBINARY (MAX), [UseValue] INT);
CREATE TABLE [LabelDefaults] ([DefaultsID] NVARCHAR (100), [LabelLocation] NVARCHAR (50), [FormFileName] NVARCHAR (250), [GroupName] NVARCHAR (100), [CollectionName] NVARCHAR (100), [Alias] NVARCHAR (100), [Fields] NVARCHAR (MAX));
CREATE TABLE [LockTable] ([Editor] NVARCHAR (210) NOT NULL, [LockedValue] NVARCHAR (210) NOT NULL, [Locked] BIT, [LockedByUser] NVARCHAR (255), CONSTRAINT [pk_LockTable] PRIMARY KEY ([Editor], [LockedValue]));
CREATE TABLE [SearchDefaults] ([DefaultsID] NVARCHAR (100), [UserID] NVARCHAR (MAX), [Location] NVARCHAR (MAX), [Form] NVARCHAR (MAX), [Status] NVARCHAR (MAX), [FormNumber] NVARCHAR (50), [Description] NVARCHAR (MAX), [DataSource] NVARCHAR (100), [ArchiveYear] NVARCHAR (50), [FormDateTo] NVARCHAR (50), [FormDateFrom] NVARCHAR (50), [Attachments] NVARCHAR (10), [Locked] NVARCHAR (10), [FolderName] NVARCHAR (250), [FolderKey] NVARCHAR (250), [FolderDateFrom] NVARCHAR (50), [FolderDateTo] NVARCHAR (50), [SecondaryUserID] NVARCHAR (50), [FolderDescription] NVARCHAR (MAX), [CustomFields] NVARCHAR (MAX), [DefinableFields] NVARCHAR (MAX), [SearchName] NVARCHAR (100), [IsDefault] NVARCHAR (10), [RollingDays] NVARCHAR (4), [DateSearchType] NVARCHAR (7), [RollingType] NVARCHAR (5), [SearchCriteria] NVARCHAR (MAX));
CREATE TABLE [UserDefinableFields] ([UserID] NVARCHAR (50), [Name] NVARCHAR (100), [Value] NVARCHAR (250));
CREATE TABLE [UserGroups] ([Name] NVARCHAR (100), [UserID] NVARCHAR (255));
CREATE INDEX [UserID] ON [UserGroups] ([UserID] ASC) ;
CREATE TABLE [SearchNotifications] ([ID] NVARCHAR (100) NOT NULL, [EmailTo] NVARCHAR (MAX), [Cc] NVARCHAR (MAX), [Bcc] NVARCHAR (MAX), [Subject] NVARCHAR (255), [Body] NVARCHAR (MAX), [EmailSettings] NVARCHAR (100), [Interval] NVARCHAR (10), [Expires] NVARCHAR (5), [CreateDate] DATETIME, [LastRunDate] DATETIME, [LastNotifyDate] DATETIME, [UserID] NVARCHAR (50), [SearchName] NVARCHAR (100), [OnChangeOnly] BIT, [PostNotificationAction] NVARCHAR (100), CONSTRAINT [pk_SearchNotifications] PRIMARY KEY ([ID]));
CREATE INDEX [UserID] ON [SearchNotifications] ([UserID] ASC) ;
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'AboutSystem', NULL, 'System', 'About System');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ActivateExtInfo', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ActivateFormPreview', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ActivateForms', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ActivateFormsInFolder', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ActivateOpenFolders', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ActivateQuickAdd', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ArrangeBy', NULL, 'System', 'Arrange By');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ArrangeBySubMenu', NULL, 'System', 'Arrange By SubMenu');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ArrangeForms', NULL, 'System', 'Arrange Forms');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ArrangeIcons', NULL, 'System', 'Arrange Icons');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Cascade', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ChangePassword', NULL, 'System', 'Change Password');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'CurrentExtInfo', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'CurrentFormPreview', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'CurrentForms', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'CurrentFormsInFolder', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'CurrentOpenFolders', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'CurrentQuickAdd', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'DatabarAdvanced', NULL, 'System', 'Databar Advanced');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'DatabarBasic', NULL, 'System', 'Databar Basic');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'DatabarDockBottom', NULL, 'System', 'Databar Dock Bottom');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'DatabarDockTop', NULL, 'System', 'Databar Dock Top');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'DeselectAll', NULL, 'System', 'Deselect All');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'DragAndDropGrouping', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'EditAppearance', NULL, 'System', 'Edit Appearance');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'EditAppearanceSubMenu', NULL, 'System', 'Edit Appearance SubMenu');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Exit', NULL, 'System', 'Exit');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ExtInfo', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'FolderManager', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'FormPreview', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Forms', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'FormsInFolder', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'GroupingType', NULL, 'System', 'Grouping Type');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Help', NULL, 'System', 'Help');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ListGrouping', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ListPreview', NULL, 'System', 'List Preview');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'NavBarDockLeft', NULL, 'System', 'NavBar Dock Left');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'NavBarDockRight', NULL, 'System', 'NavBar Dock Right');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Navigation', NULL, 'System', 'Navigation');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'NightTimeMode', NULL, 'System', 'Night Time Mode');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'OpenFolders', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Refresh', NULL, 'System', 'Refresh');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Reset', NULL, 'System', 'Reset');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ResetWindow', NULL, 'System', 'Reset Window');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Search', NULL, 'System', 'Search');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'SearchDockBottom', NULL, 'System', 'Search Dock Bottom');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'SearchDockTop', NULL, 'System', 'Search Dock Top');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'SelectAll', NULL, 'System', 'Select All');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ShowInGroups', NULL, 'System', 'Show In Groups');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ShowNavBar', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'StatusBar', NULL, 'System', 'Status Bar');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'TabbedView', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'TechSupport', NULL, 'System', 'Technical Support');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'TileHorizontally', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'TileVertically', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'UserPreferences', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Viewers', NULL, 'System', 'Viewers');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ViewerStatusBar', NULL, 'System', 'Viewer Status Bar');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Web', NULL, 'System', 'Web');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'Zoom', NULL, 'System', 'Zoom');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ZoomSubMenu', NULL, 'System', 'Zoom SubMenu');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Developer', 'DatabaseBuilder', NULL, 'System', 'Database Builder');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Developer', 'DistributionEditor', NULL, 'System', 'Distribution Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Developer', 'FormsBuilder', NULL, 'System', 'Forms Builder');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Developer', 'ReloadFormsAndRules', NULL, 'System', 'Reload Forms And Rules');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Developer', 'RulesBuilder', NULL, 'Custom', 'Rules Builder');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'AddCurrentGroup', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'AddForm', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'AddGroup', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'AddNewFormToFolder', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Archive', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Attachments', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Autopopulate', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'AutoSearch', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'CloseFolder', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'CloseForm', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'DeleteCurrentGroup', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'DeleteForm', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'DeleteGroup', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'DriverExchange', NULL, 'SystemEdit', 'Driver Exchange');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'EditFolderInfo', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'EditForm', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'EditFormInfo', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'EditSignature', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Email', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ExportReport', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ExportToFieldUnit', NULL, 'System', 'Export to Field Unit');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ExportToWorkstation', NULL, 'System', 'Export to Workstation');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ExportUserFile', NULL, 'Custom', 'Export User File');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'FullNarrative', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ImportFromFieldUnit', NULL, 'System', 'Import From Field Unit');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ImportFromWorkstation', NULL, 'System', 'Import from Workstation');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Lock', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'MoveForm', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'NewFolder', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'OpenForm', NULL, 'SystemEdit', 'Open Form');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'OpenFormFromFile', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Print', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'PrintPreview', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'QuickAdd', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'QuickAddItems', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'QuickImport', NULL, 'SystemEdit', 'APS Interface');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Replicate', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ResendMode', NULL, 'SystemEdit', 'Allows Field Unit to retransmit forms');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ReTransmit', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'SaveExternalInfo', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'SaveForm', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'SaveUserSignature', NULL, 'System', 'Save User Signature');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ShowRejectionReason', NULL, 'Custom', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'SignStop', NULL, 'System', 'Sign Stop');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'SkipGroup', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ToggleNonReportable', NULL, 'Custom', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'TransComm', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'TransExport', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'TransImport', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Transmission:FromFloppy', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Transmission:FromLocal', NULL, 'SystemEdit', 'Get forms from Local drive');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Transmission:FromNetwork', NULL, 'SystemEdit', 'Get forms from Network drive');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Transmission:FromUSB', NULL, 'SystemEdit', 'Get forms from USB drive');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Transmission:ToFloppy', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Transmission:ToLocal', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Transmission:ToNetwork', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Transmission:ToUSB', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Unarchive', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Unlock', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'Validate', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ValidationErrorEmail', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ValidationErrorPrint', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Reporter', 'ValidationErrors', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '0', NULL, 'Status', 'Open');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '1', NULL, 'Status', 'Validated');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '10', NULL, 'Status', 'Non Reportable');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '2', NULL, 'Status', 'Rejected');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '3', NULL, 'Status', 'Voided');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '4', NULL, 'Status', 'Issued');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '5', NULL, 'Status', 'Accepted');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '6', NULL, 'Status', 'Located');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '7', NULL, 'Status', 'Transmitted');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '8', NULL, 'Status', 'Deleted');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '9', NULL, 'Status', 'Locked');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Supervisor', 'Accept', NULL, 'Custom', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Supervisor', 'Clear', NULL, 'Custom', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Supervisor', 'Reject', NULL, 'Custom', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Supervisor', 'TransferForm', NULL, 'Custom', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Supervisor', 'Void', NULL, 'Custom', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'AccessLevelsEditor', NULL, 'System', 'Access Levels Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'ActionsEditor', NULL, 'System', 'Actions Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'AvailableFormsEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'DatabaseConnectionEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'DBSync', NULL, 'System', 'Database Sync');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'DistributionEditor', NULL, 'System', 'Distribution Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'ExternalInformationEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'FieldDefaultsEditor', NULL, 'Custom', 'Field Defaults Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'GUIDefaultsEditor', NULL, 'Custom', 'GUI Defaults Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'InitializationEditor', NULL, 'System', 'Initialization Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'LabelDefaultsEditor', NULL, 'Custom', 'Label Defaults Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'LocalViolationsManagerEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'LocationsEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'Log:Log:TraCSLog', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'Log:Log:TransLog', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'LogViewer', NULL, 'System', 'Log Viewer');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'SettingsConfigurationEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'SettingsEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TableEditor:Data', NULL, 'SystemEdit', 'Table Editor for Data');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TableEditor:Log', NULL, 'SystemEdit', 'Table Editor for Log');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TableEditor:Support', NULL, 'SystemEdit', 'Table Editor for Support');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TableEditor:Users', NULL, 'SystemEdit', 'Table Editor for Users');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TableEditorData', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TableEditorHome', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TableEditorStructure', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TransCommEditor', NULL, 'System', 'Communications Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TransImportExportEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TransLog:Log:TransLog', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'UserConfigurationEditor', NULL, 'System', 'User Configuration Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'UserDefaultsEditor', NULL, 'System', 'User Defaults Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'UserEditor', NULL, 'System', 'User Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'UserEditorHelpEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'UserGroupsEditor', NULL, 'System', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'ViewFormLogs', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'ViewLocks', NULL, 'Custom', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'ViewTraCSLogs', NULL, 'SystemEdit', NULL);
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'ViewTransLogs', NULL, 'SystemEdit', 'View Trans Log');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('TraCSWebActiveXUser', 'TraCSWebActiveX', NULL, 'System', 'TraCS Web Active X');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('TraCSWebAdmin', 'TraCSWebAccessLevelsEditor', NULL, 'System', 'TraCS Web Access Levels Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('TraCSWebAdmin', 'TraCSWebAddOnEditor', NULL, 'System', 'TraCS Web Add On Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('TraCSWebAdmin', 'TraCSWebAdministration', NULL, 'System', 'TraCS Web Administration');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('TraCSWebAdmin', 'TraCSWebConfigManager', NULL, 'System', 'TraCS Web Configuration Manager');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('TraCSWebAdmin', 'TraCSWebUserEditor', NULL, 'System', 'TraCS Web Access Levels Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('TraCSWebAdmin', 'TraCSWebUserGroupEditor', NULL, 'System', 'TraCS Web Access Levels Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Transmission', 'ReTransmit', NULL, 'SystemEdit', 'Retransmit');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Transmission', 'TransComm', NULL, 'SystemEdit', 'Communications');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Transmission', 'TransExport', NULL, 'SystemEdit', 'Export');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Transmission', 'TransImport', NULL, 'SystemEdit', 'Import');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('ViewOnly', 'Email', NULL, 'SystemEdit', 'Email');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('ViewOnly', 'ExportReport', NULL, 'SystemEdit', 'Export Report');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('ViewOnly', 'OpenForm', NULL, 'SystemEdit', 'Open Form');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('ViewOnly', 'Print', NULL, 'SystemEdit', 'Print');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ResetToTraCSDefaults', NULL, 'System', 'Reset');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('BasicUser', 'ResetWindowToTraCSDefaults', NULL, 'System', 'Reset Window');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TraCSUpdate', NULL, 'System', 'TraCS Update');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TraCSUpdateEditor', NULL, 'System', 'TraCS Update Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TableEditor:Update', NULL, 'SystemEdit', 'Table Editor for Update');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('ViewOnly', 'PrintPreview', NULL, 'SystemEdit', 'Print Preview');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'ServiceLogViewer', NULL, 'System', 'Service Log Viewer');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'EmailViewer', NULL, 'System', 'Email Viewer');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'NotificationViewer', NULL, 'System', 'Notification Viewer');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSAdmin', 'RMSMasterIndexMaintenance', NULL, 'System', 'Master Index Maintenance');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSAdmin', 'RMSMasterIndexSetup', NULL, 'System', 'Master Index Setup');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'RMSInvolvement', NULL, 'System', 'Involvement');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'RMSMasterIndex', NULL, 'System', 'Master Index');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'RMSMasterIndexEdit', NULL, 'System', 'Master Index Edit');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('TraCSWebJavaAddOnsUser', 'TraCSWebJavaAddOns', NULL, 'System', 'TraCS Web HHP Barcode Reader');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:13B', NULL, 'SystemEdit', 'Simple Assault - 13B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:13C', NULL, 'SystemEdit', 'Intimidation - 13C');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:200', NULL, 'SystemEdit', 'Arson - 200');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:210', NULL, 'SystemEdit', 'Extortion/Blackmail - 210');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:220', NULL, 'SystemEdit', 'Burglary/Breaking and Entering - 220');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:23A', NULL, 'SystemEdit', 'Pocket-picking - 23A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:23B', NULL, 'SystemEdit', 'Purse-snatching - 23B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:23C', NULL, 'SystemEdit', 'Shoplifting - 23C');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:23D', NULL, 'SystemEdit', 'Theft from Building - 23D');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:23E', NULL, 'SystemEdit', 'Theft from Coin-Oper. Machine or Device - 23E');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:23F', NULL, 'SystemEdit', 'Theft from Motor Vehicle - 23F');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:23G', NULL, 'SystemEdit', 'Theft of Motor Vehicle Parts or Access. - 23G');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:23H', NULL, 'SystemEdit', 'All Other Larceny - 23H');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:240', NULL, 'SystemEdit', 'Motor Vehicle Theft - 240');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:250', NULL, 'SystemEdit', 'Counterfeiting/Forgery - 250');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:26A', NULL, 'SystemEdit', 'False Pretenses/Swindle/Con Game - 26A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:26B', NULL, 'SystemEdit', 'Credit Card/Automatic Teller Mach. Fraud - 26B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:26C', NULL, 'SystemEdit', 'Impersonation - 26C');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:26D', NULL, 'SystemEdit', 'Welfare Fraud - 26D');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:26E', NULL, 'SystemEdit', 'Wire Fraud - 26E');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:270', NULL, 'SystemEdit', 'Embezzlement - 270');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:280', NULL, 'SystemEdit', 'Stolen Property Offenses - 280');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:290', NULL, 'SystemEdit', 'Destruction/Damage/Vandalism of Property - 290');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:35A', NULL, 'SystemEdit', 'Drug/Narcotic Violation - 35A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:35B', NULL, 'SystemEdit', 'Drug Equipment Violations - 35B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:36A', NULL, 'SystemEdit', 'Incest - 36A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:36B', NULL, 'SystemEdit', 'Statutory Rape - 36B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:370', NULL, 'SystemEdit', 'Pornography/Obscene Material - 370');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:39A', NULL, 'SystemEdit', 'Betting/Wagering - 39A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:39B', NULL, 'SystemEdit', 'Operating/Promoting/Assisting Gambling - 39B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:39C', NULL, 'SystemEdit', 'Gambling Equipment Violations - 39C');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:39D', NULL, 'SystemEdit', 'Sports Tampering - 39D');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:40A', NULL, 'SystemEdit', 'Prostitution - 40A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:40B', NULL, 'SystemEdit', 'Assisting or Promoting Prostitution - 40B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:510', NULL, 'SystemEdit', 'Bribery - 510');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:520', NULL, 'SystemEdit', 'Weapon Law Violations - 520');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90A', NULL, 'SystemEdit', 'Bad Checks - 90A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90B', NULL, 'SystemEdit', 'Curfew/Loitering/Vagrancy Violations - 90B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90C', NULL, 'SystemEdit', 'Disorderly Conduct - 90C');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90D', NULL, 'SystemEdit', 'Driving Under the Influence - 90D');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90E', NULL, 'SystemEdit', 'Drunkenness - 90E');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90F', NULL, 'SystemEdit', 'Family Offenses, Nonviolent - 90F');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90G', NULL, 'SystemEdit', 'Liquor Law Violations - 90G');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90H', NULL, 'SystemEdit', 'Peeping Tom - 90H');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90I', NULL, 'SystemEdit', 'Runaway - 90I');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90J', NULL, 'SystemEdit', 'Trespass of Real Property - 90J');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:09A', NULL, 'SystemEdit', 'Murder and Nonnegligent Manslaughter - 09A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:09B', NULL, 'SystemEdit', 'Negligent Manslaughter - 09B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:09C', NULL, 'SystemEdit', 'Justifiable Homicide - 09C');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:100', NULL, 'SystemEdit', 'Kidnapping/Abduction - 100');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:11A', NULL, 'SystemEdit', 'Forcible Rape - 11A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:11B', NULL, 'SystemEdit', 'Forcible Sodomy - 11B');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:11C', NULL, 'SystemEdit', 'Sexual Assault with an Object - 11C');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:11D', NULL, 'SystemEdit', 'Forcible Fondling - 11D');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:120', NULL, 'SystemEdit', 'Robbery - 120');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:13A', NULL, 'SystemEdit', 'Aggravated Assault - 13A');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:90Z', NULL, 'SystemEdit', 'All Other Offenses - 90Z');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:All', NULL, 'SystemEdit', 'Folder Type Access');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderManagement', NULL, 'System', 'Folder Management');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderInformation', NULL, 'System', 'Folder Information');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'GroupByFolder', NULL, 'System', 'Group By Folder');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'RMSMasterIndexEditFlags', NULL, 'System', 'Master Index Edit Flags');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderEdit', NULL, 'System', 'Folder Edit');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'ValidateFolder', NULL, 'SystemEdit', 'Validate Folder');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '1002', NULL, 'Status', 'Closed');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '1001', NULL, 'Status', 'Pending');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Statuses', '1000', NULL, 'Status', 'Open');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:1000', NULL, 'SystemEdit', 'General');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderType:1001', NULL, 'SystemEdit', 'None');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSAdmin', 'AllConfidentialAllowed', NULL, 'System', 'All Confidential Allowed');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'EditConfidentialFolder', NULL, 'SystemEdit', 'Edit Confidential Folder');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'EditConfidentialForm', NULL, 'SystemEdit', 'Edit Confidential Form');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'EditConfidentialMasterIndex', NULL, 'SystemEdit', 'Edit Confidential Master Index');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'UpdateMasterComputer', NULL, 'System', 'Update Master Computer');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'SecurityEditor', NULL, 'System', 'Security Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'ViewAuditLogs', NULL, 'SystemEdit', 'View Audit Logs');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('Developer', 'ConfigFileBuilder', NULL, 'System', 'Map Configuration Builder');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('RMSReporter', 'FolderNumber', NULL, 'SystemEdit', 'Folder Number');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'TraCSMapUpdateEditor', NULL, 'System', 'TraCS Map Update Editor');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'RegenerateMaps', NULL, 'System', 'Regenerate Maps');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'ImportUsers', NULL, 'System', 'Import Users');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'FormRecoveryMode', NULL, 'SystemEdit', 'Form Recovery Mode');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'RecoverForm', NULL, 'SystemEdit', 'Recover Form');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'RunDistribution', NULL, 'System', 'Run Distribution');
INSERT INTO [AccessLevels] ([Name], [Action], [Type], [ActionType], [Label]) VALUES ('SystemAdmin', 'RunUpdate', NULL, 'System', 'Run Update');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'AboutSystem', 'SystemEdit', 'Button', 'About TraCS', '<MenuItem Name="AboutSystem" Label="About TraCS" ButtonType="Button" Type="SystemEdit" IconIndex="258" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="About TraCS" ToolTipBody="List version, copyright and serial number information." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="AboutSystem" Label="About TraCS" ButtonType="Button" Type="SystemEdit" IconIndex="258" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="About TraCS" ToolTipBody="List version, copyright and serial number information." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ActivateExtInfo', 'System', 'Button', 'Activate', '<MenuItem Name="ActivateExtInfo" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ActivateExtInfo" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ActivateFormPreview', 'System', 'Button', 'Activate', '<MenuItem Name="ActivateFormPreview" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ActivateFormPreview" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ActivateOpenFolders', 'System', 'Button', 'Activate', '<MenuItem Name="ActivateOpenFolders" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ActivateOpenFolders" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ActivateQuickAdd', 'SystemEdit', 'Button', 'Activate', '<MenuItem Name="ActivateQuickAdd" Label="Activate" ButtonType="Button" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ActivateQuickAdd" Label="Activate" ButtonType="Button" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'AddNewFormToFolder', 'SystemEdit', 'Button', 'APS Quick Import', '<MenuItem Name="AddNewFormToFolder" Label="APS Quick Import" ButtonType="Button" Type="SystemEdit" IconIndex="77" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="APS Quick Import Interface" ToolTipBody="Imports data using APS Quick Import." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="AddNewFormToFolder" Label="APS Quick Import" ButtonType="Button" Type="SystemEdit" IconIndex="77" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="APS Quick Import Interface" ToolTipBody="Imports data using APS Quick Import." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Archive', 'SystemEdit', 'Button', 'Archive', '<MenuItem Name="Archive" Label="Archive" ButtonType="Button" Type="SystemEdit" IconIndex="4" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="131154" Size="Large" ApplicationType="Office" ToolTipTitle="Archive" ToolTipBody="Archive a form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Archive" Label="Archive" ButtonType="Button" Type="SystemEdit" IconIndex="4" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="131154" Size="Large" ApplicationType="Office" ToolTipTitle="Archive" ToolTipBody="Archive a form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ArrangeBy', 'System', 'List', 'Arrange By', '<MenuItem Name="ArrangeBy" Label="Arrange By" ButtonType="List" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" ><List><ListItem Name="PrdAttachments" Label="Attachments" ApplicationType="All" /><ListItem Name="PrdName" Label="Form Name" ApplicationType="All" /><ListItem Name="CaseNumber" Label="Form Number" ApplicationType="All" /><ListItem Name="Status" Label="Form Status" ApplicationType="All" /><ListItem Name="BadgeNumber" Label="User ID" ApplicationType="All" /><ListItem Name="PrdDate" Label="Form Date" ApplicationType="All" /><ListItem Name="PrdTime" Label="Form Time" ApplicationType="All" /><ListItem Name="IsLocked" Label="Is Locked" ApplicationType="All" /><ListItem Name="Description" Label="Form Description" ApplicationType="All" /><ListItem Name="ContactName" Label="Contact Name" ApplicationType="All" /><ListItem Name="ContactDate" Label="Contact Date" ApplicationType="All" /><ListItem Name="ContactTime" Label="Contact Time" ApplicationType="All" /><ListItem Name="ContactKey" Label="Contact Key" ApplicationType="All" /><ListItem Name="ContactDesc" Label="Contact Description" ApplicationType="All" /><ListItem Name="ArchiveDate" Label="Archive Date" ApplicationType="All" /><ListItem Name="LockedBy" Label="Locked By" ApplicationType="All" /><ListItem Name="Agency" Label="Location" ApplicationType="All" /><ListItem Name="UserName" Label="User Name" ApplicationType="All" /><ListItem Name="PrdVersion" Label="Form Version" ApplicationType="All" /><ListItem Name="UserFName" Label="User First Name" ApplicationType="All" /><ListItem Name="UserMName" Label="User Middle Name" ApplicationType="All" /><ListItem Name="UserLName" Label="User Last Name" ApplicationType="All" /><ListItem Name="SecondaryUserID" Label="Secondary User ID" ApplicationType="All" /><ListItem Name="DocFile" Label="Saved File Name" ApplicationType="All" /><ListItem Name="Modified" Label="Modified" ApplicationType="All" /><ListItem Name="ArchiveFlag" Label="Archive Flag" ApplicationType="All" /></List></MenuItem >', '<MenuItem Name="ArrangeBy" Label="Arrange By" ButtonType="List" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" ><List><ListItem Name="PrdAttachments" Label="Attachments" ApplicationType="All" /><ListItem Name="PrdName" Label="Form Name" ApplicationType="All" /><ListItem Name="CaseNumber" Label="Form Number" ApplicationType="All" /><ListItem Name="Status" Label="Form Status" ApplicationType="All" /><ListItem Name="BadgeNumber" Label="User ID" ApplicationType="All" /><ListItem Name="PrdDate" Label="Form Date" ApplicationType="All" /><ListItem Name="PrdTime" Label="Form Time" ApplicationType="All" /><ListItem Name="IsLocked" Label="Is Locked" ApplicationType="All" /><ListItem Name="Description" Label="Form Description" ApplicationType="All" /><ListItem Name="ContactName" Label="Contact Name" ApplicationType="All" /><ListItem Name="ContactDate" Label="Contact Date" ApplicationType="All" /><ListItem Name="ContactTime" Label="Contact Time" ApplicationType="All" /><ListItem Name="ContactKey" Label="Contact Key" ApplicationType="All" /><ListItem Name="ContactDesc" Label="Contact Description" ApplicationType="All" /><ListItem Name="ArchiveDate" Label="Archive Date" ApplicationType="All" /><ListItem Name="LockedBy" Label="Locked By" ApplicationType="All" /><ListItem Name="Agency" Label="Location" ApplicationType="All" /><ListItem Name="UserName" Label="User Name" ApplicationType="All" /><ListItem Name="PrdVersion" Label="Form Version" ApplicationType="All" /><ListItem Name="UserFName" Label="User First Name" ApplicationType="All" /><ListItem Name="UserMName" Label="User Middle Name" ApplicationType="All" /><ListItem Name="UserLName" Label="User Last Name" ApplicationType="All" /><ListItem Name="SecondaryUserID" Label="Secondary User ID" ApplicationType="All" /><ListItem Name="DocFile" Label="Saved File Name" ApplicationType="All" /><ListItem Name="Modified" Label="Modified" ApplicationType="All" /><ListItem Name="ArchiveFlag" Label="Archive Flag" ApplicationType="All" /></List></MenuItem >');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Autopopulate', 'SystemEdit', 'Button', 'Autopopulate', '<MenuItem Name="Autopopulate" Label="Autopopulate" ButtonType="Button" Type="SystemEdit" IconIndex="7" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Autopopulate" ToolTipBody="Copy field data from the current form to another form type." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Autopopulate" Label="Autopopulate" ButtonType="Button" Type="SystemEdit" IconIndex="7" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Autopopulate" ToolTipBody="Copy field data from the current form to another form type." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ChangePassword', 'System', 'Button', 'Change Password', '<MenuItem Name="ChangePassword" Label="Change Password" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ChangePassword" Label="Change Password" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'EditFolderInfo', 'System', 'Button', 'Contact Information', '<MenuItem Name="EditFolderInfo" Label="Contact Information" ButtonType="Button" Type="System" IconIndex="17" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Contact Information" ToolTipBody="Modify contact folder information for the selected form." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="EditFolderInfo" Label="Contact Information" ButtonType="Button" Type="System" IconIndex="17" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Contact Information" ToolTipBody="Modify contact folder information for the selected form." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'DeleteForm', 'SystemEdit', 'Button', 'Delete Form', '<MenuItem Name="DeleteForm" Label="Delete Form" ButtonType="Button" Type="SystemEdit" IconIndex="14" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131140" Size="Large" ApplicationType="All" ToolTipTitle="Delete Form" ToolTipBody="Permanently delete a form. Deleted forms cannot be recovered." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DeleteForm" Label="Delete Form" ButtonType="Button" Type="SystemEdit" IconIndex="14" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131140" Size="Large" ApplicationType="All" ToolTipTitle="Delete Form" ToolTipBody="Permanently delete a form. Deleted forms cannot be recovered." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'DeselectAll', 'System', 'Button', 'Deselect All', '<MenuItem Name="DeselectAll" Label="Deselect All" ButtonType="Button" Type="System" IconIndex="15" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Deselect All" ToolTipBody="Deselect all forms in the list." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DeselectAll" Label="Deselect All" ButtonType="Button" Type="System" IconIndex="15" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Deselect All" ToolTipBody="Deselect all forms in the list." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'DragAndDropGrouping', 'System', 'Check', 'Drag and Drop Grouping', '<MenuItem Name="DragAndDropGrouping" Label="Drag and Drop Grouping" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DragAndDropGrouping" Label="Drag and Drop Grouping" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'EditAppearance', 'System', 'List', 'Edit Appearance', '<MenuItem Name="EditAppearance" Label="Edit Appearance" ButtonType="List" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" ><List><ListItem Name="Blue" Label="Blue" ApplicationType="All" /><ListItem Name="Black" Label="Black" ApplicationType="All" /><ListItem Name="Caramel" Label="Carmel" ApplicationType="All" /><ListItem Name="Money Twins" Label="Money Twins" ApplicationType="All" /><ListItem Name="Lilian" Label="Lilian" ApplicationType="All" /><ListItem Name="The Asphalt World" Label="Asphalt" ApplicationType="All" /><ListItem Name="iMaginary" Label="iMaginary" ApplicationType="All" /><ListItem Name="Coffee" Label="Coffee" ApplicationType="All" /><ListItem Name="Liquid Sky" Label="Liquid Sky" ApplicationType="All" /><ListItem Name="London Liquid Sky" Label="London Liquid Sky" ApplicationType="All" /><ListItem Name="Glass Oceans" Label="Glass Oceans" ApplicationType="All" /><ListItem Name="Stardust" Label="Stardust" ApplicationType="All" /><ListItem Name="Office 2007 Blue" Label="Office 2007 Blue" ApplicationType="All" /><ListItem Name="Office 2007 Black" Label="Office 2007 Black" ApplicationType="All" /><ListItem Name="Office 2007 Silver" Label="Office 2007 Silver" ApplicationType="All" /><ListItem Name="Night" Label="Night" ApplicationType="All" /></List></MenuItem >', '<MenuItem Name="EditAppearance" Label="Edit Appearance" ButtonType="List" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" ><List><ListItem Name="Blue" Label="Blue" ApplicationType="All" /><ListItem Name="Black" Label="Black" ApplicationType="All" /><ListItem Name="Caramel" Label="Carmel" ApplicationType="All" /><ListItem Name="Money Twins" Label="Money Twins" ApplicationType="All" /><ListItem Name="Lilian" Label="Lilian" ApplicationType="All" /><ListItem Name="The Asphalt World" Label="Asphalt" ApplicationType="All" /><ListItem Name="iMaginary" Label="iMaginary" ApplicationType="All" /><ListItem Name="Coffee" Label="Coffee" ApplicationType="All" /><ListItem Name="Liquid Sky" Label="Liquid Sky" ApplicationType="All" /><ListItem Name="London Liquid Sky" Label="London Liquid Sky" ApplicationType="All" /><ListItem Name="Glass Oceans" Label="Glass Oceans" ApplicationType="All" /><ListItem Name="Stardust" Label="Stardust" ApplicationType="All" /><ListItem Name="Office 2007 Blue" Label="Office 2007 Blue" ApplicationType="All" /><ListItem Name="Office 2007 Black" Label="Office 2007 Black" ApplicationType="All" /><ListItem Name="Office 2007 Silver" Label="Office 2007 Silver" ApplicationType="All" /><ListItem Name="Night" Label="Night" ApplicationType="All" /></List></MenuItem >');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'EditSignature', 'System', 'Button', 'Edit Signature', '<MenuItem Name="EditSignature" Label="Edit Signature" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="EditSignature" Label="Edit Signature" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Email', 'SystemEdit', 'Button', 'Email', '<MenuItem Name="Email" Label="Email" ButtonType="Button" Type="SystemEdit" IconIndex="150" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Email" ToolTipBody="Email reports for a form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Email" Label="Email" ButtonType="Button" Type="SystemEdit" IconIndex="150" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Email" ToolTipBody="Email reports for a form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ExportToWorkstation', 'SystemEdit', 'Button', 'End Shift', '<MenuItem Name="ExportToWorkstation" Label="End Shift" ButtonType="Button" Type="SystemEdit" IconIndex="29" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office" ToolTipTitle="End Shift" ToolTipBody="Import files from a field unit." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ExportToWorkstation" Label="End Shift" ButtonType="Button" Type="SystemEdit" IconIndex="29" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office" ToolTipTitle="End Shift" ToolTipBody="Import files from a field unit." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Exit', 'System', 'Button', 'Exit', '<MenuItem Name="Exit" Label="Exit" ButtonType="Button" Type="System" IconIndex="20" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="131160" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Exit" ToolTipBody="Exit the TraCS application." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Exit" Label="Exit" ButtonType="Button" Type="System" IconIndex="20" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="131160" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Exit" ToolTipBody="Exit the TraCS application." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ExportReport', 'SystemEdit', 'Button', 'Export Report', '<MenuItem Name="ExportReport" Label="Export Report" ButtonType="Button" Type="SystemEdit" IconIndex="140" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Export Report" ToolTipBody="Export reports for a form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ExportReport" Label="Export Report" ButtonType="Button" Type="SystemEdit" IconIndex="140" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Export Report" ToolTipBody="Export reports for a form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'EditFormInfo', 'SystemEdit', 'Button', 'Form Information', '<MenuItem Name="EditFormInfo" Label="Form Information" ButtonType="Button" Type="SystemEdit" IconIndex="19" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Form Information" ToolTipBody="Modify form information." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="EditFormInfo" Label="Form Information" ButtonType="Button" Type="SystemEdit" IconIndex="19" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Form Information" ToolTipBody="Modify form information." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'AutoSearch', 'System', 'Check', 'Perform Auto Search After Login', '<MenuItem Name="AutoSearch" Label="Perform Auto Search After Login" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="AutoSearch" Label="Perform Auto Search After Login" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'CurrentExtInfo', 'System', 'Button', 'Show', '<MenuItem Name="CurrentExtInfo" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CurrentExtInfo" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'CurrentFormPreview', 'System', 'Button', 'Show', '<MenuItem Name="CurrentFormPreview" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CurrentFormPreview" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'CurrentOpenFolders', 'System', 'Button', 'Show', '<MenuItem Name="CurrentOpenFolders" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CurrentOpenFolders" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'CurrentQuickAdd', 'SystemEdit', 'Button', 'Show', '<MenuItem Name="CurrentQuickAdd" Label="Show" ButtonType="Button" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CurrentQuickAdd" Label="Show" ButtonType="Button" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ExportToFieldUnit', 'SystemEdit', 'Button', 'Start Shift', '<MenuItem Name="ExportToFieldUnit" Label="Start Shift" ButtonType="Button" Type="SystemEdit" IconIndex="21" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office and TraCS Web" ToolTipTitle="Start Shift" ToolTipBody="Export forms to a field unit." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ExportToFieldUnit" Label="Start Shift" ButtonType="Button" Type="SystemEdit" IconIndex="21" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office and TraCS Web" ToolTipTitle="Start Shift" ToolTipBody="Export forms to a field unit." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ArrangeBySubMenu', 'System', 'SubMenu', 'Arrange By', '<MenuItem Name="ArrangeBySubMenu" Label="Arrange By" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ArrangeBySubMenu" Label="Arrange By" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'EditAppearanceSubMenu', 'System', 'SubMenu', 'Edit Appearance', '<MenuItem Name="EditAppearanceSubMenu" Label="Edit Appearance" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="EditAppearanceSubMenu" Label="Edit Appearance" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'QuickImport', 'SystemEdit', 'Button', 'APS Quick Import', '<RibbonItem Name="QuickImport" Label="APS Interface" ButtonType="Button" Type="SystemEdit" IconIndex="77" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="APS Interface" ToolTipBody="" WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<RibbonItem Name="QuickImport" Label="APS Interface" ButtonType="Button" Type="SystemEdit" IconIndex="77" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="APS Interface" ToolTipBody="" WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ImportFromFieldUnit', 'SystemEdit', 'Button', 'End Shift', '<MenuItem Name="ImportFromFieldUnit" Label="End Shift" ButtonType="Button" Type="SystemEdit" IconIndex="29" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office and TraCS Web" ToolTipTitle="End Shift" ToolTipBody="Import forms from a field unit." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ImportFromFieldUnit" Label="End Shift" ButtonType="Button" Type="SystemEdit" IconIndex="29" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office and TraCS Web" ToolTipTitle="End Shift" ToolTipBody="Import forms from a field unit." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'GroupingType', 'System', 'List', 'Grouping Type', '<MenuItem Name="GroupingType" Label="Grouping Type" ButtonType="List" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" ><List><ListItem Name="Advanced" Label="Advanced" ApplicationType="All" /><ListItem Name="Basic" Label="Basic" ApplicationType="All" /></List></MenuItem >', '<MenuItem Name="GroupingType" Label="Grouping Type" ButtonType="List" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" ><List><ListItem Name="Advanced" Label="Advanced" ApplicationType="All" /><ListItem Name="Basic" Label="Basic" ApplicationType="All" /></List></MenuItem >');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Help', 'System', 'Button', 'Help', '<MenuItem Name="Help" Label="Help" ButtonType="Button" Type="System" IconIndex="28" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="112" Size="Large" ApplicationType="All" ToolTipTitle="Help" ToolTipBody="Launch TraCS help." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Help" Label="Help" ButtonType="Button" Type="System" IconIndex="28" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="112" Size="Large" ApplicationType="All" ToolTipTitle="Help" ToolTipBody="Launch TraCS help." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Lock', 'System', 'Button', 'Lock', '<MenuItem Name="Lock" Label="Lock" ButtonType="Button" Type="System" IconIndex="32" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Lock Form" ToolTipBody="Lock the form so that it cannot be edited by anyone else." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Lock" Label="Lock" ButtonType="Button" Type="System" IconIndex="32" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Lock Form" ToolTipBody="Lock the form so that it cannot be edited by anyone else." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'MoveForm', 'SystemEdit', 'Button', 'Move Form(s) to Contact', '<MenuItem Name="MoveForm" Label="Move Form(s) to Contact" ButtonType="Button" Type="SystemEdit" IconIndex="33" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Move Form to Contact" ToolTipBody="Move the selected form(s) to a different contact folder." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="MoveForm" Label="Move Form(s) to Contact" ButtonType="Button" Type="SystemEdit" IconIndex="33" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Move Form to Contact" ToolTipBody="Move the selected form(s) to a different contact folder." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'NavBarDockLeft', 'System', 'Button', 'NavBar Dock Left', '<MenuItem Name="NavBarDockLeft" Label="NavBar Dock Left" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="Navbar Dock Left" ToolTipBody="Positions the navigation bar on the left side of the window in Contact Manager and Viewer." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="NavBarDockLeft" Label="NavBar Dock Left" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="Navbar Dock Left" ToolTipBody="Positions the navigation bar on the left side of the window in Contact Manager and Viewer." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'NavBarDockRight', 'System', 'Button', 'NavBar Dock Right', '<MenuItem Name="NavBarDockRight" Label="NavBar Dock Right" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="Navbar Dock Right" ToolTipBody="Positions the navigation bar on the right side of the window in Contact Manager and Viewer." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="NavBarDockRight" Label="NavBar Dock Right" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="Navbar Dock Right" ToolTipBody="Positions the navigation bar on the right side of the window in Contact Manager and Viewer." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'NewFolder', 'SystemEdit', 'Button', 'New Contact', '<MenuItem Name="NewFolder" Label="New Contact" ButtonType="Button" Type="SystemEdit" IconIndex="35" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131150" Size="Large" ApplicationType="All" ToolTipTitle="Create Contact" ToolTipBody="Create a new contact folder for adding forms." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="NewFolder" Label="New Contact" ButtonType="Button" Type="SystemEdit" IconIndex="35" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131150" Size="Large" ApplicationType="All" ToolTipTitle="Create Contact" ToolTipBody="Create a new contact folder for adding forms." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'NightTimeMode', 'System', 'Check', 'Night Time Mode', '<MenuItem Name="NightTimeMode" Label="Night Time Mode" ButtonType="Check" Type="System" IconIndex="36" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="Night Time Mode" ToolTipBody="Change the color scheme to black on white to reduce screen illumination." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="NightTimeMode" Label="Night Time Mode" ButtonType="Check" Type="System" IconIndex="36" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="Night Time Mode" ToolTipBody="Change the color scheme to black on white to reduce screen illumination." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'OpenForm', 'SystemEdit', 'Button', 'Open Form', '<MenuItem Name="OpenForm" Label="Open Form" ButtonType="Button" Type="SystemEdit" IconIndex="38" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131151" Size="Large" ApplicationType="All" ToolTipTitle="Open Form" ToolTipBody="Open a form for viewing or editing." WhenEnabled="Selected" FormLimit="5" FinalAction="" />', '<MenuItem Name="OpenForm" Label="Open Form" ButtonType="Button" Type="SystemEdit" IconIndex="38" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131151" Size="Large" ApplicationType="All" ToolTipTitle="Open Form" ToolTipBody="Open a form for viewing or editing." WhenEnabled="Selected" FormLimit="5" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'OpenFormFromFile', 'SystemEdit', 'Button', 'Open Form From File', '<MenuItem Name="OpenFormFromFile" Label="Open Form From File" ButtonType="Button" Type="SystemEdit" IconIndex="38" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Mobile" ToolTipTitle="Open Form From File" ToolTipBody="Open a form for viewing or editing from a file." WhenEnabled="All" FormLimit="5" FinalAction="" />', '<MenuItem Name="OpenFormFromFile" Label="Open Form From File" ButtonType="Button" Type="SystemEdit" IconIndex="38" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Mobile" ToolTipTitle="Open Form From File" ToolTipBody="Open a form for viewing or editing from a file." WhenEnabled="All" FormLimit="5" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Print', 'SystemEdit', 'Button', 'Print', '<MenuItem Name="Print" Label="Print" ButtonType="Button" Type="SystemEdit" IconIndex="39" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131152" Size="Large" ApplicationType="All" ToolTipTitle="Print" ToolTipBody="Print reports for the form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Print" Label="Print" ButtonType="Button" Type="SystemEdit" IconIndex="39" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131152" Size="Large" ApplicationType="All" ToolTipTitle="Print" ToolTipBody="Print reports for the form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'PrintPreview', 'SystemEdit', 'Button', 'Print Preview', '<MenuItem Name="PrintPreview" Label="Print Preview" ButtonType="Button" Type="SystemEdit" IconIndex="75" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Print Preview" ToolTipBody="Preview a report for the form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="PrintPreview" Label="Print Preview" ButtonType="Button" Type="SystemEdit" IconIndex="75" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Print Preview" ToolTipBody="Preview a report for the form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Refresh', 'System', 'Button', 'Refresh', '<MenuItem Name="Refresh" Label="Refresh" ButtonType="Button" Type="System" IconIndex="41" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Refresh Form List" ToolTipBody="Refresh the form list using the current search criteria." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Refresh" Label="Refresh" ButtonType="Button" Type="System" IconIndex="41" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Refresh Form List" ToolTipBody="Refresh the form list using the current search criteria." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ReloadFormsAndRules', 'System', 'Button', 'Reload Validation Rules', '<MenuItem Name="ReloadFormsAndRules" Label="Reload Validation Rules" ButtonType="Button" Type="System" IconIndex="41" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Reload Validation Rules" ToolTipBody="Reload the validation rules without having to shut down TraCS." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ReloadFormsAndRules" Label="Reload Validation Rules" ButtonType="Button" Type="System" IconIndex="41" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Reload Validation Rules" ToolTipBody="Reload the validation rules without having to shut down TraCS." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Replicate', 'System', 'Button', 'ReSend', '<MenuItem Name="Replicate" Label="ReSend" ButtonType="Button" Type="System" IconIndex="215" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Mobile" ToolTipTitle="ReSend" ToolTipBody="Point Field Unit to Mobile Resend Backup Path." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Replicate" Label="ReSend" ButtonType="Button" Type="System" IconIndex="215" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Mobile" ToolTipTitle="ReSend" ToolTipBody="Point Field Unit to Mobile Resend Backup Path." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ResendMode', 'System', 'Check', 'Resend Mode', '<MenuItem Name="ResendMode" Label="Resend Mode" ButtonType="Check" Type="System" IconIndex="164" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="Mobile" ToolTipTitle="Resend Mode" ToolTipBody="Changes Manager between regular and resend modes." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ResendMode" Label="Resend Mode" ButtonType="Check" Type="System" IconIndex="164" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="Mobile" ToolTipTitle="Resend Mode" ToolTipBody="Changes Manager between regular and resend modes." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Reset', 'System', 'Button', 'Reset', '<MenuItem Name="Reset" Label="Reset" ButtonType="Button" Type="System" IconIndex="45" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Reset Manager Window" ToolTipBody="Reset the Manager window back to the default state." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Reset" Label="Reset" ButtonType="Button" Type="System" IconIndex="45" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Reset Manager Window" ToolTipBody="Reset the Manager window back to the default state." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ListPreview', 'System', 'Check', 'Show Preview', '<MenuItem Name="ListPreview" Label="Show Preview" ButtonType="Check" Type="System" IconIndex="31" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Show List Preview" ToolTipBody="Show or hide each form''s contact folder description in the form list." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ListPreview" Label="Show Preview" ButtonType="Check" Type="System" IconIndex="31" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Show List Preview" ToolTipBody="Show or hide each form''s contact folder description in the form list." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ImportFromWorkstation', 'SystemEdit', 'Button', 'Start Shift', '<MenuItem Name="ImportFromWorkstation" Label="Start Shift" ButtonType="Button" Type="SystemEdit" IconIndex="29" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Mobile" ToolTipTitle="Start Shift" ToolTipBody="Import forms from a workstation." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ImportFromWorkstation" Label="Start Shift" ButtonType="Button" Type="SystemEdit" IconIndex="29" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Mobile" ToolTipTitle="Start Shift" ToolTipBody="Import forms from a workstation." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'QuickAddItems', 'System', 'QuickAddSubMenu', 'Add Form', '<MenuItem Name="QuickAddItems" Label="Add Form" ButtonType="QuickAddSubMenu" Type="System" IconIndex="2" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Add New Form" ToolTipBody="Create a new contact folder and add a new form to it." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="QuickAddItems" Label="Add Form" ButtonType="QuickAddSubMenu" Type="System" IconIndex="2" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Add New Form" ToolTipBody="Create a new contact folder and add a new form to it." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ExtInfo', 'System', 'SubMenu', 'External Information', '<MenuItem Name="ExtInfo" Label="External Information" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ExtInfo" Label="External Information" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ListGrouping', 'System', 'SubMenu', 'List Grouping', '<MenuItem Name="ListGrouping" Label="List Grouping" ButtonType="SubMenu" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="List Grouping" ToolTipBody="Control how the form list is organized." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ListGrouping" Label="List Grouping" ButtonType="SubMenu" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="List Grouping" ToolTipBody="Control how the form list is organized." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Navigation', 'System', 'SubMenu', 'Navigation', '<MenuItem Name="Navigation" Label="Navigation" ButtonType="SubMenu" Type="System" IconIndex="34" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Navigation Panel" ToolTipBody="Control what features are visable in the navigation panel." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Navigation" Label="Navigation" ButtonType="SubMenu" Type="System" IconIndex="34" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Navigation Panel" ToolTipBody="Control what features are visable in the navigation panel." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'OpenFolders', 'System', 'SubMenu', 'Open Contacts', '<MenuItem Name="OpenFolders" Label="Open Contacts" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="OpenFolders" Label="Open Contacts" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'QuickAdd', 'SystemEdit', 'SubMenu', 'Quick Add', '<MenuItem Name="QuickAdd" Label="Quick Add" ButtonType="SubMenu" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="QuickAdd" Label="Quick Add" ButtonType="SubMenu" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ReTransmit', 'SystemEdit', 'Button', 'ReTransmit', '<MenuItem Name="ReTransmit" Label="ReTransmit" ButtonType="Button" Type="SystemEdit" IconIndex="46" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="ReTransmit" ToolTipBody="ReTransmit base transmission xml (btx) files of final transmission files." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ReTransmit" Label="ReTransmit" ButtonType="Button" Type="SystemEdit" IconIndex="46" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="ReTransmit" ToolTipBody="ReTransmit base transmission xml (btx) files of final transmission files." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ViewTransLogs', 'SystemEdit', 'Button', 'Retransmit', '<MenuItem Name="ViewTransLogs" Label="Retransmit" ButtonType="Button" Type="SystemEdit" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Retransmit" ToolTipBody="Retransmit the selected forms." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ViewTransLogs" Label="Retransmit" ButtonType="Button" Type="SystemEdit" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Retransmit" ToolTipBody="Retransmit the selected forms." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'SearchDockBottom', 'System', 'Button', 'Search Dock Bottom', '<MenuItem Name="SearchDockBottom" Label="Search Dock Bottom" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Search Dock Bottom" ToolTipBody="Positions the search bar at the bottom of the window in Contact Manager." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="SearchDockBottom" Label="Search Dock Bottom" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Search Dock Bottom" ToolTipBody="Positions the search bar at the bottom of the window in Contact Manager." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'SearchDockTop', 'System', 'Button', 'Search Dock Top', '<MenuItem Name="SearchDockTop" Label="Search Dock Top" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Search Dock Top" ToolTipBody="Positions the search bar at the top of the window in Contact Manager." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="SearchDockTop" Label="Search Dock Top" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Search Dock Top" ToolTipBody="Positions the search bar at the top of the window in Contact Manager." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'SelectAll', 'System', 'Button', 'Select All', '<MenuItem Name="SelectAll" Label="Select All" ButtonType="Button" Type="System" IconIndex="51" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Select All" ToolTipBody="Select all forms in the list." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="SelectAll" Label="Select All" ButtonType="Button" Type="System" IconIndex="51" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Select All" ToolTipBody="Select all forms in the list." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ShowInGroups', 'System', 'Check', 'Show In Groups', '<MenuItem Name="ShowInGroups" Label="Show In Groups" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ShowInGroups" Label="Show In Groups" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ShowNavBar', 'System', 'Check', 'Show Navigation Bar', '<MenuItem Name="ShowNavBar" Label="Show Navigation Bar" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ShowNavBar" Label="Show Navigation Bar" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Search', 'System', 'Check', 'Show Search', '<MenuItem Name="Search" Label="Show Search" ButtonType="Check" Type="System" IconIndex="50" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Show Search" ToolTipBody="Show or hide the search panel." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Search" Label="Show Search" ButtonType="Check" Type="System" IconIndex="50" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Show Search" ToolTipBody="Show or hide the search panel." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'StatusBar', 'SystemEdit', 'Button', 'Start Shift', '<MenuItem Name="StatusBar" Label="Start Shift" ButtonType="Button" Type="SystemEdit" IconIndex="21" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office" ToolTipTitle="Start Shift" ToolTipBody="Export files to a field unit." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="StatusBar" Label="Start Shift" ButtonType="Button" Type="SystemEdit" IconIndex="21" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office" ToolTipTitle="Start Shift" ToolTipBody="Export files to a field unit." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ViewTraCSLogs', 'SystemEdit', 'Button', 'TraCS Log', '<MenuItem Name="ViewTraCSLogs" Label="TraCS Log" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="View TraCS Log" ToolTipBody="Display log entries for actions performed on the selected forms." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ViewTraCSLogs" Label="TraCS Log" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="View TraCS Log" ToolTipBody="Display log entries for actions performed on the selected forms." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Web', 'SystemEdit', 'Button', 'TraCS on the Web', '<MenuItem Name="Web" Label="TraCS on the Web" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="TraCS on the Web" ToolTipBody="Redirect to www.tracsinfo.us for additional TraCS information." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Web" Label="TraCS on the Web" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="TraCS on the Web" ToolTipBody="Redirect to www.tracsinfo.us for additional TraCS information." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'TransComm', 'SystemEdit', 'Button', 'TransComm', '<MenuItem Name="TransComm" Label="TransComm" ButtonType="Button" Type="SystemEdit" IconIndex="59" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Transmission - TransComm" ToolTipBody="Transfer final transmission files to their final destinations." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="TransComm" Label="TransComm" ButtonType="Button" Type="SystemEdit" IconIndex="59" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Transmission - TransComm" ToolTipBody="Transfer final transmission files to their final destinations." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'TransImport', 'SystemEdit', 'Button', 'TransImport', '<MenuItem Name="TransImport" Label="TransImport" ButtonType="Button" Type="SystemEdit" IconIndex="63" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="TransImport" ToolTipBody="Import a transmission file." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="TransImport" Label="TransImport" ButtonType="Button" Type="SystemEdit" IconIndex="63" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="TransImport" ToolTipBody="Import a transmission file." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'TransExport', 'SystemEdit', 'Button', 'Transmit', '<MenuItem Name="TransExport" Label="Transmit" ButtonType="Button" Type="SystemEdit" IconIndex="61" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Transmit" ToolTipBody="Transmit the selected forms." WhenEnabled="Selected" FormLimit="-1" FinalAction="TransComm" />', '<MenuItem Name="TransExport" Label="Transmit" ButtonType="Button" Type="SystemEdit" IconIndex="61" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Transmit" ToolTipBody="Transmit the selected forms." WhenEnabled="Selected" FormLimit="-1" FinalAction="TransComm" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Unarchive', 'SystemEdit', 'Button', 'Unarchive', '<MenuItem Name="Unarchive" Label="Unarchive" ButtonType="Button" Type="SystemEdit" IconIndex="64" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131157" Size="Large" ApplicationType="Office" ToolTipTitle="Unarchive" ToolTipBody="Unarchive a form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Unarchive" Label="Unarchive" ButtonType="Button" Type="SystemEdit" IconIndex="64" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131157" Size="Large" ApplicationType="Office" ToolTipTitle="Unarchive" ToolTipBody="Unarchive a form." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Unlock', 'System', 'Button', 'Unlock', '<MenuItem Name="Unlock" Label="Unlock" ButtonType="Button" Type="System" IconIndex="65" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Unlock Form" ToolTipBody="Unlock a locked form. Use extreme caution when unlocking a form as it may be in use by someone else." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Unlock" Label="Unlock" ButtonType="Button" Type="System" IconIndex="65" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Unlock Form" ToolTipBody="Unlock a locked form. Use extreme caution when unlocking a form as it may be in use by someone else." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ViewFormLogs', 'SystemEdit', 'Button', 'View Form Log', '<MenuItem Name="ViewFormLogs" Label="View Form Log" ButtonType="Button" Type="SystemEdit" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="View Form Logs" ToolTipBody="View a Log of TraCS actions for the selected form(s)." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ViewFormLogs" Label="View Form Log" ButtonType="Button" Type="SystemEdit" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="View Form Logs" ToolTipBody="View a Log of TraCS actions for the selected form(s)." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'UserPreferences', 'System', 'SubMenu', 'User Preferences', '<MenuItem Name="UserPreferences" Label="User Preferences" ButtonType="SubMenu" Type="System" IconIndex="67" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="User Preferences" ToolTipBody="Change user options." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="UserPreferences" Label="User Preferences" ButtonType="SubMenu" Type="System" IconIndex="67" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="User Preferences" ToolTipBody="Change user options." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Accept', 'Custom', 'Button', 'Accept', '<MenuItem Name="Accept" Label="Accept" ButtonType="Button" Type="Custom" IconIndex="1" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Accept" ToolTipBody="Change the status of the form to Accepted." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Accept" Label="Accept" ButtonType="Button" Type="Custom" IconIndex="1" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Accept" ToolTipBody="Change the status of the form to Accepted." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ToggleNonReportable', 'Custom', 'Button', 'Non Reportable', '<MenuItem Name="ToggleNonReportable" Label="Non Reportable" ButtonType="Button" Type="Custom" IconIndex="58" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Non Reportable" ToolTipBody="Change the status of the form to Non Reportable." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ToggleNonReportable" Label="Non Reportable" ButtonType="Button" Type="Custom" IconIndex="58" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Non Reportable" ToolTipBody="Change the status of the form to Non Reportable." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ShowRejectionReason', 'Custom', 'Button', 'Show Rejection Reason', '<MenuItem Name="ShowRejectionReason" Label="Show Rejection Reason" ButtonType="Button" Type="Custom" IconIndex="52" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Show Rejection Reason" ToolTipBody="Show the rejection reason." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ShowRejectionReason" Label="Show Rejection Reason" ButtonType="Button" Type="Custom" IconIndex="52" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Show Rejection Reason" ToolTipBody="Show the rejection reason." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'TransferForm', 'Custom', 'Button', 'Transfer Form', '<MenuItem Name="TransferForm" Label="Transfer Form" ButtonType="Button" Type="Custom" IconIndex="62" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Transfer Form" ToolTipBody="Transfer the form to another user." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="TransferForm" Label="Transfer Form" ButtonType="Button" Type="Custom" IconIndex="62" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Transfer Form" ToolTipBody="Transfer the form to another user." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Void', 'Custom', 'Button', 'Void', '<MenuItem Name="Void" Label="Void" ButtonType="Button" Type="Custom" IconIndex="72" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Void" ToolTipBody="Change the status of the form to Voided." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Void" Label="Void" ButtonType="Button" Type="Custom" IconIndex="72" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Void" ToolTipBody="Change the status of the form to Voided." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'AboutSystem', 'SystemEdit', 'Button', 'About TraCS', '<MenuItem Name="AboutSystem" Label="About TraCS" ButtonType="Button" Type="SystemEdit" IconIndex="258" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="About TraCS" ToolTipBody="List version, copyright and serial number information." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="AboutSystem" Label="About TraCS" ButtonType="Button" Type="SystemEdit" IconIndex="258" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="About TraCS" ToolTipBody="List version, copyright and serial number information." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ArrangeIcons', 'System', 'Button', 'Arrange Icons', '<MenuItem Name="ArrangeIcons" Label="Arrange Icons" ButtonType="Button" Type="System" IconIndex="6" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Arrange Icons" ToolTipBody="Arranges minimized forms in the viewer window." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ArrangeIcons" Label="Arrange Icons" ButtonType="Button" Type="System" IconIndex="6" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Arrange Icons" ToolTipBody="Arranges minimized forms in the viewer window." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Attachments', 'System', 'Button', 'Attachments', '<MenuItem Name="Attachments" Label="Attachments" ButtonType="Button" Type="System" IconIndex="70" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Attachments" ToolTipBody="List and view all attachments on the current form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Attachments" Label="Attachments" ButtonType="Button" Type="System" IconIndex="70" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Attachments" ToolTipBody="List and view all attachments on the current form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Autopopulate', 'SystemEdit', 'Button', 'Autopopulate', '<MenuItem Name="Autopopulate" Label="Autopopulate" ButtonType="Button" Type="SystemEdit" IconIndex="7" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Autopopulate" ToolTipBody="Copy field data from the current form to another form type." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Autopopulate" Label="Autopopulate" ButtonType="Button" Type="SystemEdit" IconIndex="7" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Autopopulate" ToolTipBody="Copy field data from the current form to another form type." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Cascade', 'System', 'Check', 'Cascade', '<MenuItem Name="Cascade" Label="Cascade" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="" ApplicationType="Office And Mobile" ToolTipTitle="Cascade" ToolTipBody="Displays multiple forms in the Viewer in a cascaded view." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Cascade" Label="Cascade" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="" ApplicationType="Office And Mobile" ToolTipTitle="Cascade" ToolTipBody="Displays multiple forms in the Viewer in a cascaded view." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'CloseFolder', 'SystemEdit', 'Button', 'Close Contact', '<MenuItem Name="CloseFolder" Label="Close Contact" ButtonType="Button" Type="SystemEdit" IconIndex="9" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Close Contact" ToolTipBody="Close the contact folder including all forms." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CloseFolder" Label="Close Contact" ButtonType="Button" Type="SystemEdit" IconIndex="9" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Close Contact" ToolTipBody="Close the contact folder including all forms." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'CloseForm', 'SystemEdit', 'Button', 'Close Form', '<MenuItem Name="CloseForm" Label="Close Form" ButtonType="Button" Type="SystemEdit" IconIndex="10" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Close Form" ToolTipBody="Close the current form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CloseForm" Label="Close Form" ButtonType="Button" Type="SystemEdit" IconIndex="10" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Close Form" ToolTipBody="Close the current form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'EditFolderInfo', 'System', 'Button', 'Contact Information', '<MenuItem Name="EditFolderInfo" Label="Contact Information" ButtonType="Button" Type="System" IconIndex="17" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Contact Information" ToolTipBody="Modify contact folder information for the selected form." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="EditFolderInfo" Label="Contact Information" ButtonType="Button" Type="System" IconIndex="17" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Contact Information" ToolTipBody="Modify contact folder information for the selected form." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'FolderManager', 'SystemEdit', 'Button', 'Contact Manager', '<MenuItem Name="FolderManager" Label="Contact Manager" ButtonType="Button" Type="SystemEdit" IconIndex="24" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Contact Manager" ToolTipBody="Show the contact manager." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="FolderManager" Label="Contact Manager" ButtonType="Button" Type="SystemEdit" IconIndex="24" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Contact Manager" ToolTipBody="Show the contact manager." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'DatabarAdvanced', 'System', 'Button', 'Databar Advanced', '<MenuItem Name="DatabarAdvanced" Label="Databar Advanced" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Databar Advanced" ToolTipBody="Displays the Databar in Advanced mode." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DatabarAdvanced" Label="Databar Advanced" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Databar Advanced" ToolTipBody="Displays the Databar in Advanced mode." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'DatabarBasic', 'System', 'Button', 'Databar Basic', '<MenuItem Name="DatabarBasic" Label="Databar Basic" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Databar Basic" ToolTipBody="Displays the databar in Basic mode." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DatabarBasic" Label="Databar Basic" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Databar Basic" ToolTipBody="Displays the databar in Basic mode." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'DatabarDockBottom', 'System', 'Button', 'Databar Dock Bottom', '<MenuItem Name="DatabarDockBottom" Label="Databar Dock Bottom" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Databar Dock Bottom" ToolTipBody="Docks the databar at the bottom of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DatabarDockBottom" Label="Databar Dock Bottom" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Databar Dock Bottom" ToolTipBody="Docks the databar at the bottom of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'DatabarDockTop', 'System', 'Button', 'Databar Dock Top', '<MenuItem Name="DatabarDockTop" Label="Databar Dock Top" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Databar Dock Top" ToolTipBody="Docks the databar at the top of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DatabarDockTop" Label="Databar Dock Top" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Databar Dock Top" ToolTipBody="Docks the databar at the top of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'DeleteCurrentGroup', 'SystemEdit', 'Button', 'Delete Current Group', '<MenuItem Name="DeleteCurrentGroup" Label="Delete Current Group" ButtonType="Button" Type="SystemEdit" IconIndex="12" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Delete Current Group" ToolTipBody="Permanently delete the current group instance and all associated data." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DeleteCurrentGroup" Label="Delete Current Group" ButtonType="Button" Type="SystemEdit" IconIndex="12" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Delete Current Group" ToolTipBody="Permanently delete the current group instance and all associated data." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'DeleteForm', 'SystemEdit', 'Button', 'Delete Form', '<MenuItem Name="DeleteForm" Label="Delete Form" ButtonType="Button" Type="SystemEdit" IconIndex="14" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131140" Size="Large" ApplicationType="All" ToolTipTitle="Delete Form" ToolTipBody="Permanently delete a form. Deleted forms cannot be recovered." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DeleteForm" Label="Delete Form" ButtonType="Button" Type="SystemEdit" IconIndex="14" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131140" Size="Large" ApplicationType="All" ToolTipTitle="Delete Form" ToolTipBody="Permanently delete a form. Deleted forms cannot be recovered." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'DriverExchange', 'SystemEdit', 'Button', 'Driver Exchange', '<MenuItem Name="DriverExchange" Label="Driver Exchange" ButtonType="Button" Type="SystemEdit" IconIndex="197" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Driver Exchange" ToolTipBody="Toggles driver exchange mode on and off." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DriverExchange" Label="Driver Exchange" ButtonType="Button" Type="SystemEdit" IconIndex="197" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Driver Exchange" ToolTipBody="Toggles driver exchange mode on and off." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'EditForm', 'SystemEdit', 'Check', 'Edit Form', '<MenuItem Name="EditForm" Label="Edit Form" ButtonType="Check" Type="SystemEdit" IconIndex="18" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Edit Form" ToolTipBody="Open the form in edit mode so that it can be modified." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="EditForm" Label="Edit Form" ButtonType="Check" Type="SystemEdit" IconIndex="18" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Edit Form" ToolTipBody="Open the form in edit mode so that it can be modified." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Email', 'SystemEdit', 'Button', 'Email', '<MenuItem Name="Email" Label="Email" ButtonType="Button" Type="SystemEdit" IconIndex="150" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Email" ToolTipBody="Email reports for a form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Email" Label="Email" ButtonType="Button" Type="SystemEdit" IconIndex="150" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Email" ToolTipBody="Email reports for a form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Exit', 'System', 'Button', 'Exit', '<MenuItem Name="Exit" Label="Exit" ButtonType="Button" Type="System" IconIndex="20" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="131160" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Exit" ToolTipBody="Exit the TraCS application." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Exit" Label="Exit" ButtonType="Button" Type="System" IconIndex="20" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="131160" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Exit" ToolTipBody="Exit the TraCS application." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ExportReport', 'SystemEdit', 'Button', 'Export Report', '<MenuItem Name="ExportReport" Label="Export Report" ButtonType="Button" Type="SystemEdit" IconIndex="140" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Export Report" ToolTipBody="Export reports for a form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ExportReport" Label="Export Report" ButtonType="Button" Type="SystemEdit" IconIndex="140" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Export Report" ToolTipBody="Export reports for a form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'EditFormInfo', 'SystemEdit', 'Button', 'Form Information', '<MenuItem Name="EditFormInfo" Label="Form Information" ButtonType="Button" Type="SystemEdit" IconIndex="19" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Form Information" ToolTipBody="Modify form information." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="EditFormInfo" Label="Form Information" ButtonType="Button" Type="SystemEdit" IconIndex="19" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Form Information" ToolTipBody="Modify form information." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'FullNarrative', 'System', 'Button', 'Full Narrative', '<MenuItem Name="FullNarrative" Label="Full Narrative" ButtonType="Button" Type="System" IconIndex="71" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Full Narrative" ToolTipBody="List and view all narratives on the current form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="FullNarrative" Label="Full Narrative" ButtonType="Button" Type="System" IconIndex="71" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Full Narrative" ToolTipBody="List and view all narratives on the current form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Help', 'System', 'Button', 'Help', '<MenuItem Name="Help" Label="Help" ButtonType="Button" Type="System" IconIndex="28" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="112" Size="Large" ApplicationType="All" ToolTipTitle="Help" ToolTipBody="Launch TraCS help." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Help" Label="Help" ButtonType="Button" Type="System" IconIndex="28" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="112" Size="Large" ApplicationType="All" ToolTipTitle="Help" ToolTipBody="Launch TraCS help." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'NavBarDockLeft', 'System', 'Button', 'NavBar Dock Left', '<MenuItem Name="NavBarDockLeft" Label="NavBar Dock Left" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="NavBar Dock Left" ToolTipBody="Docks the navigation bar to the left side of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="NavBarDockLeft" Label="NavBar Dock Left" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="NavBar Dock Left" ToolTipBody="Docks the navigation bar to the left side of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'NavBarDockRight', 'System', 'Button', 'NavBar Dock Right', '<MenuItem Name="NavBarDockRight" Label="NavBar Dock Right" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="NavBar Dock Right" ToolTipBody="Docks the navigation bar to the right side of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="NavBarDockRight" Label="NavBar Dock Right" ButtonType="Button" Type="System" IconIndex="30" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="NavBar Dock Right" ToolTipBody="Docks the navigation bar to the right side of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Viewers', 'System', 'BarMDIChildListItem', 'Viewers', '<RibbonItem Name="Viewers" Label="Viewers" ButtonType="BarMDIChildListItem" Type="System" IconIndex="23" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<RibbonItem Name="Viewers" Label="Viewers" ButtonType="BarMDIChildListItem" Type="System" IconIndex="23" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="" ToolTipBody="" WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'TechSupport', 'SystemEdit', 'Button', 'Technical Support', '<MenuItem Name="TechSupport" Label="Technical Support" ButtonType="Button" Type="SystemEdit" IconIndex="56" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Technical Suppoprt" ToolTipBody="List TraCS technical support contact information." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="TechSupport" Label="Technical Support" ButtonType="Button" Type="SystemEdit" IconIndex="56" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Technical Suppoprt" ToolTipBody="List TraCS technical support contact information." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'FormPreview', 'System', 'SubMenu', 'Form Preview', '<MenuItem Name="FormPreview" Label="Form Preview" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="FormPreview" Label="Form Preview" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'NightTimeMode', 'System', 'Check', 'Night Time Mode', '<MenuItem Name="NightTimeMode" Label="Night Time Mode" ButtonType="Check" Type="System" IconIndex="36" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="Night Time Mode" ToolTipBody="Change the color scheme to black on white to reduce screen illumination." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="NightTimeMode" Label="Night Time Mode" ButtonType="Check" Type="System" IconIndex="36" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="Night Time Mode" ToolTipBody="Change the color scheme to black on white to reduce screen illumination." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Print', 'SystemEdit', 'Button', 'Print', '<MenuItem Name="Print" Label="Print" ButtonType="Button" Type="SystemEdit" IconIndex="39" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131152" Size="Large" ApplicationType="All" ToolTipTitle="Print" ToolTipBody="Print reports for the form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Print" Label="Print" ButtonType="Button" Type="SystemEdit" IconIndex="39" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131152" Size="Large" ApplicationType="All" ToolTipTitle="Print" ToolTipBody="Print reports for the form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'PrintPreview', 'SystemEdit', 'Button', 'Print Preview', '<MenuItem Name="PrintPreview" Label="Print Preview" ButtonType="Button" Type="SystemEdit" IconIndex="75" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Print Preview" ToolTipBody="Preview a report for the form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="PrintPreview" Label="Print Preview" ButtonType="Button" Type="SystemEdit" IconIndex="75" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Print Preview" ToolTipBody="Preview a report for the form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Replicate', 'SystemEdit', 'Button', 'Replicate', '<MenuItem Name="Replicate" Label="Replicate" ButtonType="Button" Type="SystemEdit" IconIndex="43" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Replicate" ToolTipBody="Make a copy of the current form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Replicate" Label="Replicate" ButtonType="Button" Type="SystemEdit" IconIndex="43" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Replicate" ToolTipBody="Make a copy of the current form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ResetWindow', 'System', 'Button', 'Reset', '<MenuItem Name="ResetWindow" Label="Reset" ButtonType="Button" Type="System" IconIndex="45" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Reset Viewer Window" ToolTipBody="Reset the Viewer window back to the default state." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ResetWindow" Label="Reset" ButtonType="Button" Type="System" IconIndex="45" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Reset Viewer Window" ToolTipBody="Reset the Viewer window back to the default state." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'SaveForm', 'SystemEdit', 'Button', 'Save Form', '<MenuItem Name="SaveForm" Label="Save Form" ButtonType="Button" Type="SystemEdit" IconIndex="63" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131140" Size="Large" ApplicationType="All" ToolTipTitle="Save Form" ToolTipBody="Save form in its current location" WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="SaveForm" Label="Save Form" ButtonType="Button" Type="SystemEdit" IconIndex="63" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="131140" Size="Large" ApplicationType="All" ToolTipTitle="Save Form" ToolTipBody="Save form in its current location" WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ShowNavBar', 'System', 'Check', 'Show Navigation Bar', '<MenuItem Name="ShowNavBar" Label="Show Navigation Bar" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ShowNavBar" Label="Show Navigation Bar" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ViewerStatusBar', 'System', 'Check', 'Show Status Bar', '<MenuItem Name="ViewerStatusBar" Label="Show Status Bar" ButtonType="Check" Type="System" IconIndex="54" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="View Status Bar" ToolTipBody="Displays Status Bar at the bottom of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ViewerStatusBar" Label="Show Status Bar" ButtonType="Check" Type="System" IconIndex="54" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="Office And Mobile" ToolTipTitle="View Status Bar" ToolTipBody="Displays Status Bar at the bottom of the Viewer window." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'SignStop', 'SystemEdit', 'Button', 'Sign Forms', '<MenuItem Name="SignStop" Label="Sign Forms" ButtonType="Button" Type="SystemEdit" IconIndex="53" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Sign Forms" ToolTipBody="Move to the next marked signature field." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="SignStop" Label="Sign Forms" ButtonType="Button" Type="SystemEdit" IconIndex="53" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Sign Forms" ToolTipBody="Move to the next marked signature field." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'SkipGroup', 'SystemEdit', 'Button', 'Skip Group', '<MenuItem Name="SkipGroup" Label="Skip Group" ButtonType="Button" Type="SystemEdit" IconIndex="27" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Skip Group" ToolTipBody="Jump to the first field in the next group." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="SkipGroup" Label="Skip Group" ButtonType="Button" Type="SystemEdit" IconIndex="27" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Skip Group" ToolTipBody="Jump to the first field in the next group." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'TabbedView', 'System', 'Check', 'Tabbed View', '<MenuItem Name="TabbedView" Label="Tabbed View" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="" ApplicationType="Office And Mobile" ToolTipTitle="Tabbed View" ToolTipBody="Displays multiple forms in the Viewer in a tabbed view." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="TabbedView" Label="Tabbed View" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="" ApplicationType="Office And Mobile" ToolTipTitle="Tabbed View" ToolTipBody="Displays multiple forms in the Viewer in a tabbed view." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'TechSupport', 'SystemEdit', 'Button', 'Technical Support', '<MenuItem Name="TechSupport" Label="Technical Support" ButtonType="Button" Type="SystemEdit" IconIndex="56" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Technical Suppoprt" ToolTipBody="List TraCS technical support contact information." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="TechSupport" Label="Technical Support" ButtonType="Button" Type="SystemEdit" IconIndex="56" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="Technical Suppoprt" ToolTipBody="List TraCS technical support contact information." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'TileHorizontally', 'System', 'Check', 'Tile Horizontally', '<MenuItem Name="TileHorizontally" Label="Tile Horizontally" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="" ApplicationType="Office And Mobile" ToolTipTitle="Tile Horizontally" ToolTipBody="Displays multiple forms in the Viewer tiled horizontally." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="TileHorizontally" Label="Tile Horizontally" ButtonType="Check" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="" ApplicationType="Office And Mobile" ToolTipTitle="Tile Horizontally" ToolTipBody="Displays multiple forms in the Viewer tiled horizontally." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'TileVertically', 'SystemEdit', 'Button', 'Time and Activity', '<MenuItem Name="TileVertically" Label="Time and Activity" ButtonType="Button" Type="SystemEdit" IconIndex="57" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Time and Activity Reporting" ToolTipBody="Enter time and activity information." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="TileVertically" Label="Time and Activity" ButtonType="Button" Type="SystemEdit" IconIndex="57" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Time and Activity Reporting" ToolTipBody="Enter time and activity information." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ViewFormLogs', 'SystemEdit', 'Button', 'TraCS Log', '<MenuItem Name="ViewFormLogs" Label="TraCS Log" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="View TraCS Logs" ToolTipBody="Display log entries for actions performed on the active form." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ViewFormLogs" Label="TraCS Log" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="View TraCS Logs" ToolTipBody="Display log entries for actions performed on the active form." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Web', 'SystemEdit', 'Button', 'TraCS on the Web', '<MenuItem Name="Web" Label="TraCS on the Web" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="TraCS on the Web" ToolTipBody="Redirect to www.tracsinfo.us for additional TraCS information." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Web" Label="TraCS on the Web" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Small" ApplicationType="All" ToolTipTitle="TraCS on the Web" ToolTipBody="Redirect to www.tracsinfo.us for additional TraCS information." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Validate', 'SystemEdit', 'Button', 'Validate', '<MenuItem Name="Validate" Label="Validate" ButtonType="Button" Type="SystemEdit" IconIndex="68" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Validate" ToolTipBody="Execute batch validation rules against the current form." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Validate" Label="Validate" ButtonType="Button" Type="SystemEdit" IconIndex="68" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Validate" ToolTipBody="Execute batch validation rules against the current form." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ValidationErrors', 'System', 'Check', 'Validation Errors', '<MenuItem Name="ValidationErrors" Label="Validation Errors" ButtonType="Check" Type="System" IconIndex="69" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Validation Errors" ToolTipBody="Display validation errors for current form." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ValidationErrors" Label="Validation Errors" ButtonType="Check" Type="System" IconIndex="69" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Validation Errors" ToolTipBody="Display validation errors for current form." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Zoom', 'System', 'List', 'Zoom', '<MenuItem Name="Zoom" Label="Zoom" ButtonType="List" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" ><List><ListItem Name="Zoom50" Label="50%" ApplicationType="All" /><ListItem Name="Zoom75" Label="75%" ApplicationType="All" /><ListItem Name="Zoom100" Label="100%" ApplicationType="All" /><ListItem Name="Zoom125" Label="125%" ApplicationType="All" /><ListItem Name="Zoom150" Label="150%" ApplicationType="All" /><ListItem Name="Zoom175" Label="175%" ApplicationType="All" /><ListItem Name="Zoom200" Label="200%" ApplicationType="All" /><ListItem Name="Zoom250" Label="250%" ApplicationType="All" /><ListItem Name="Zoom300" Label="300%" ApplicationType="All" /><ListItem Name="Page Width" Label="Page Width" ApplicationType="All" /><ListItem Name="Text Width" Label="Text Width" ApplicationType="All" /><ListItem Name="Whole Page" Label="Whole Page" ApplicationType="All" /><ListItem Name="Set Current As Default" Label="Set Current As Default" ApplicationType="All" /></List></MenuItem >', '<MenuItem Name="Zoom" Label="Zoom" ButtonType="List" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" ><List><ListItem Name="Zoom50" Label="50%" ApplicationType="All" /><ListItem Name="Zoom75" Label="75%" ApplicationType="All" /><ListItem Name="Zoom100" Label="100%" ApplicationType="All" /><ListItem Name="Zoom125" Label="125%" ApplicationType="All" /><ListItem Name="Zoom150" Label="150%" ApplicationType="All" /><ListItem Name="Zoom175" Label="175%" ApplicationType="All" /><ListItem Name="Zoom200" Label="200%" ApplicationType="All" /><ListItem Name="Zoom250" Label="250%" ApplicationType="All" /><ListItem Name="Zoom300" Label="300%" ApplicationType="All" /><ListItem Name="Page Width" Label="Page Width" ApplicationType="All" /><ListItem Name="Text Width" Label="Text Width" ApplicationType="All" /><ListItem Name="Whole Page" Label="Whole Page" ApplicationType="All" /><ListItem Name="Set Current As Default" Label="Set Current As Default" ApplicationType="All" /></List></MenuItem >');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'QuickAddItems', 'System', 'QuickAddSubMenu', 'Add Form', '<MenuItem Name="QuickAddItems" Label="Add Form" ButtonType="QuickAddSubMenu" Type="System" IconIndex="2" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Add New Form" ToolTipBody="Create a new contact folder and add a new form to it." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="QuickAddItems" Label="Add Form" ButtonType="QuickAddSubMenu" Type="System" IconIndex="2" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Add New Form" ToolTipBody="Create a new contact folder and add a new form to it." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Navigation', 'System', 'SubMenu', 'Navigation', '<MenuItem Name="Navigation" Label="Navigation" ButtonType="SubMenu" Type="System" IconIndex="34" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Navigation Panel" ToolTipBody="Control what features are visable in the navigation panel." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Navigation" Label="Navigation" ButtonType="SubMenu" Type="System" IconIndex="34" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Navigation Panel" ToolTipBody="Control what features are visable in the navigation panel." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'QuickAdd', 'SystemEdit', 'SubMenu', 'Quick Add', '<MenuItem Name="QuickAdd" Label="Quick Add" ButtonType="SubMenu" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="QuickAdd" Label="Quick Add" ButtonType="SubMenu" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ZoomSubMenu', 'System', 'SubMenu', 'Zoom', '<MenuItem Name="ZoomSubMenu" Label="Zoom" ButtonType="SubMenu" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Zoom" ToolTipBody="Set the zoom level of the form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ZoomSubMenu" Label="Zoom" ButtonType="SubMenu" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Zoom" ToolTipBody="Set the zoom level of the form." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ToggleNonReportable', 'Custom', 'Button', 'Non Reportable', '<MenuItem Name="ToggleNonReportable" Label="Non Reportable" ButtonType="Button" Type="Custom" IconIndex="58" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Non Reportable" ToolTipBody="Change the status of the form to Non Reportable." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ToggleNonReportable" Label="Non Reportable" ButtonType="Button" Type="Custom" IconIndex="58" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Non Reportable" ToolTipBody="Change the status of the form to Non Reportable." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Reject', 'Custom', 'Button', 'Reject', '<MenuItem Name="Reject" Label="Reject" ButtonType="Button" Type="Custom" IconIndex="42" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Reject" ToolTipBody="Change the status of the form to Rejected." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Reject" Label="Reject" ButtonType="Button" Type="Custom" IconIndex="42" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Reject" ToolTipBody="Change the status of the form to Rejected." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ShowRejectionReason', 'Custom', 'Button', 'Show Rejection Reason', '<MenuItem Name="ShowRejectionReason" Label="Show Rejection Reason" ButtonType="Button" Type="Custom" IconIndex="52" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Show Rejection Reason" ToolTipBody="Show the rejection reason." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ShowRejectionReason" Label="Show Rejection Reason" ButtonType="Button" Type="Custom" IconIndex="52" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Show Rejection Reason" ToolTipBody="Show the rejection reason." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'TransferForm', 'Custom', 'Button', 'Transfer Form', '<MenuItem Name="TransferForm" Label="Transfer Form" ButtonType="Button" Type="Custom" IconIndex="62" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Transfer Form" ToolTipBody="Transfer the form to another contact folder." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="TransferForm" Label="Transfer Form" ButtonType="Button" Type="Custom" IconIndex="62" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Transfer Form" ToolTipBody="Transfer the form to another contact folder." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Void', 'Custom', 'Button', 'Void', '<MenuItem Name="Void" Label="Void" ButtonType="Button" Type="Custom" IconIndex="72" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Void" ToolTipBody="Change the status of the form to Voided." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Void" Label="Void" ButtonType="Button" Type="Custom" IconIndex="72" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Void" ToolTipBody="Change the status of the form to Voided." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Clear', 'Custom', 'Button', 'Clear', '<MenuItem Name="Clear" Label="Clear" ButtonType="Button" Type="Custom" IconIndex="8" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Clear" ToolTipBody="Change the status of the form back to its original status." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Clear" Label="Clear" ButtonType="Button" Type="Custom" IconIndex="8" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Clear" ToolTipBody="Change the status of the form back to its original status." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'Reject', 'Custom', 'Button', 'Reject', '<MenuItem Name="Reject" Label="Reject" ButtonType="Button" Type="Custom" IconIndex="42" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Reject" ToolTipBody="Change the status of the form to Rejected." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Reject" Label="Reject" ButtonType="Button" Type="Custom" IconIndex="42" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Reject" ToolTipBody="Change the status of the form to Rejected." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ExportUserFile', 'Custom', 'Button', 'Start Shift User File', '<MenuItem Name="ExportUserFile" Label="Start Shift User File" ButtonType="Button" Type="Custom" IconIndex="154" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="0" Size="Large" ApplicationType="Office" ToolTipTitle="Start Shift User File" ToolTipBody="Start Shift a user file without any forms." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ExportUserFile" Label="Start Shift User File" ButtonType="Button" Type="Custom" IconIndex="154" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="0" Size="Large" ApplicationType="Office" ToolTipTitle="Start Shift User File" ToolTipBody="Start Shift a user file without any forms." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ActivateExtInfo', 'System', 'Button', 'Activate', '<MenuItem Name="ActivateExtInfo" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ActivateExtInfo" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ActivateForms', 'System', 'Button', 'Activate', '<MenuItem Name="ActivateForms" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ActivateForms" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ActivateFormsInFolder', 'System', 'Button', 'Activate', '<MenuItem Name="ActivateFormsInFolder" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ActivateFormsInFolder" Label="Activate" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ActivateQuickAdd', 'SystemEdit', 'Button', 'Activate', '<MenuItem Name="ActivateQuickAdd" Label="Activate" ButtonType="Button" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ActivateQuickAdd" Label="Activate" ButtonType="Button" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'AddCurrentGroup', 'SystemEdit', 'Button', 'Add Current Group', '<MenuItem Name="AddCurrentGroup" Label="Add Current Group" ButtonType="Button" Type="SystemEdit" IconIndex="11" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Add Current Group" ToolTipBody="Add another instance of the current group." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="AddCurrentGroup" Label="Add Current Group" ButtonType="Button" Type="SystemEdit" IconIndex="11" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Add Current Group" ToolTipBody="Add another instance of the current group." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'AddForm', 'SystemEdit', 'Button', 'APS Quick Import', '<MenuItem Name="AddForm" Label="APS Quick Import" ButtonType="Button" Type="SystemEdit" IconIndex="77" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="APS Quick Import Interface" ToolTipBody="Imports data using APS Quick Import." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="AddForm" Label="APS Quick Import" ButtonType="Button" Type="SystemEdit" IconIndex="77" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="APS Quick Import Interface" ToolTipBody="Imports data using APS Quick Import." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'CurrentExtInfo', 'System', 'Button', 'Show', '<MenuItem Name="CurrentExtInfo" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CurrentExtInfo" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'CurrentForms', 'System', 'Button', 'Show', '<MenuItem Name="CurrentForms" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CurrentForms" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'CurrentFormsInFolder', 'System', 'Button', 'Show', '<MenuItem Name="CurrentFormsInFolder" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CurrentFormsInFolder" Label="Show" ButtonType="Button" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'CurrentQuickAdd', 'SystemEdit', 'Button', 'Show', '<MenuItem Name="CurrentQuickAdd" Label="Show" ButtonType="Button" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="CurrentQuickAdd" Label="Show" ButtonType="Button" Type="SystemEdit" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'AddGroup', 'SystemEdit', 'SubMenu', 'Add Group', '<MenuItem Name="AddGroup" Label="Add Group" ButtonType="SubMenu" Type="SystemEdit" IconIndex="25" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Add Group" ToolTipBody="Select a group to add another instance of." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="AddGroup" Label="Add Group" ButtonType="SubMenu" Type="SystemEdit" IconIndex="25" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Add Group" ToolTipBody="Select a group to add another instance of." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ArrangeForms', 'System', 'SubMenu', 'Arrange Forms', '<MenuItem Name="ArrangeForms" Label="Arrange Forms" ButtonType="SubMenu" Type="System" IconIndex="5" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Arrange Forms" ToolTipBody="Arranges the forms in the Viewer." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ArrangeForms" Label="Arrange Forms" ButtonType="SubMenu" Type="System" IconIndex="5" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Arrange Forms" ToolTipBody="Arranges the forms in the Viewer." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'DeleteGroup', 'SystemEdit', 'SubMenu', 'Delete Group', '<MenuItem Name="DeleteGroup" Label="Delete Group" ButtonType="SubMenu" Type="SystemEdit" IconIndex="26" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Delete Group" ToolTipBody="Select an instance of a group to delete." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />', '<MenuItem Name="DeleteGroup" Label="Delete Group" ButtonType="SubMenu" Type="SystemEdit" IconIndex="26" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Delete Group" ToolTipBody="Select an instance of a group to delete." WhenEnabled="EditOnly" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ExtInfo', 'System', 'SubMenu', 'External Information', '<MenuItem Name="ExtInfo" Label="External Information" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ExtInfo" Label="External Information" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Forms', 'System', 'SubMenu', 'Forms', '<MenuItem Name="Forms" Label="Forms" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Forms" Label="Forms" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'FormsInFolder', 'System', 'SubMenu', 'Forms in Contact', '<MenuItem Name="FormsInFolder" Label="Forms in Contact" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="FormsInFolder" Label="Forms in Contact" ButtonType="SubMenu" Type="System" IconIndex="" IconFile="" ShowIcon="False" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="" ToolTipBody="" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Accept', 'Custom', 'Button', 'Accept', '<MenuItem Name="Accept" Label="Accept" ButtonType="Button" Type="Custom" IconIndex="1" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Accept" ToolTipBody="Change the status of the form to Accepted." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Accept" Label="Accept" ButtonType="Button" Type="Custom" IconIndex="1" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Accept" ToolTipBody="Change the status of the form to Accepted." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'Clear', 'Custom', 'Button', 'Clear', '<MenuItem Name="Clear" Label="Clear" ButtonType="Button" Type="Custom" IconIndex="8" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Clear" ToolTipBody="Change the status of the form back to its original status." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="Clear" Label="Clear" ButtonType="Button" Type="Custom" IconIndex="8" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Clear" ToolTipBody="Change the status of the form back to its original status." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ResetToTraCSDefaults', 'System', 'Button', 'Reset', '<MenuItem Name="ResetToTraCSDefaults" Label="Reset" ButtonType="Button" Type="System" IconIndex="45" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Reset Manager Window" ToolTipBody="Reset the Manager window back to the default state." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ResetToTraCSDefaults" Label="Reset" ButtonType="Button" Type="System" IconIndex="45" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Reset Manager Window" ToolTipBody="Reset the Manager window back to the default state." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ResetWindowToTraCSDefaults', 'System', 'Button', 'Reset', '<MenuItem Name="ResetWindowToTraCSDefaults" Label="Reset" ButtonType="Button" Type="System" IconIndex="45" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Reset Viewer Window" ToolTipBody="Reset the Viewer window back to the default state." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ResetWindowToTraCSDefaults" Label="Reset" ButtonType="Button" Type="System" IconIndex="45" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="" Size="Large" ApplicationType="Office And Mobile" ToolTipTitle="Reset Viewer Window" ToolTipBody="Reset the Viewer window back to the default state." WhenEnabled="EditAndView" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'RMSMasterIndex', 'System', 'Button', 'Master Index', '<MenuItem Name="RMSMasterIndex" Label="Master Index" ButtonType="Button" Type="System" IconIndex="56" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Master Index" ToolTipBody="Launch Master Index." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="RMSMasterIndex" Label="Master Index" ButtonType="Button" Type="System" IconIndex="56" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Master Index" ToolTipBody="Launch Master Index." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'RMSInvolvement', 'System', 'Button', 'Involvement', '<MenuItem Name="RMSInvolvement" Label="Involvement" ButtonType="Button" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Involvement" ToolTipBody="Launch Involvement." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="RMSInvolvement" Label="Involvement" ButtonType="Button" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Involvement" ToolTipBody="Launch Involvement." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'RMSMasterIndexMaintenance', 'System', 'Button', 'Master Index Maintenance', '<MenuItem Name="RMSMasterIndexMaintenance" Label="Master Index Maintenance" ButtonType="Button" Type="System" IconIndex="16" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="0" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Master Index Maintenance" WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="RMSMasterIndexMaintenance" Label="Master Index Maintenance" ButtonType="Button" Type="System" IconIndex="16" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="0" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Master Index Maintenance" WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'ValidateFolder', 'SystemEdit', 'Button', 'Validate Contact', '<MenuItem Name="ValidateFolder" Label="Validate Contact" ButtonType="Button" Type="SystemEdit" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Validate Contact" ToolTipBody="Run rules to Validate Contact." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ValidateFolder" Label="Validate Contact" ButtonType="Button" Type="SystemEdit" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Validate Contact" ToolTipBody="Run rules to Validate Contact." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'FolderManagement', 'System', 'Button', 'Contact Management', '<MenuItem Name="FolderManagement" Label="Contact Management" ButtonType="Button" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Contact Management" ToolTipBody="Launch Contact Management." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="FolderManagement" Label="Contact Management" ButtonType="Button" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Contact Management" ToolTipBody="Launch Contact Management." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'FolderInformation', 'System', 'Button', 'Contact Details', '<MenuItem Name="FolderInformation" Label="Contact Information" ButtonType="Button" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Contact Information" ToolTipBody="Launch Contact Information." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="FolderInformation" Label="Contact Information" ButtonType="Button" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Contact Information" ToolTipBody="Launch Contact Information." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'FolderInformation', 'System', 'Button', 'Contact Information', '<MenuItem Name="FolderInformation" Label="Contact Information" ButtonType="Button" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Contact Information" ToolTipBody="Launch Contact Information." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="FolderInformation" Label="Contact Information" ButtonType="Button" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Contact Information" ToolTipBody="Launch Contact Information." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'GroupByFolder', 'System', 'Button', 'Contact Information', '<MenuItem Name="GroupByFolder" Label="Group By Contact" ButtonType="Check" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Group By Contact" ToolTipBody="Group forms by Contact." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="GroupByFolder" Label="Group By Contact" ButtonType="Check" Type="System" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Group By Contact" ToolTipBody="Group forms by Contact." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'ValidateFolder', 'SystemEdit', 'Button', 'Validate Contact', '<MenuItem Name="ValidateFolder" Label="Validate Contact" ButtonType="Button" Type="SystemEdit" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Validate Contact" ToolTipBody="Run rules to validate Contact." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />', '<MenuItem Name="ValidateFolder" Label="Validate Contact" ButtonType="Button" Type="SystemEdit" IconIndex="74" IconFile="" ShowIcon="True" BeginMenuGroup="False" KeyboardShortcut="112" Size="Large" ApplicationType="Office, TraCS Web, and TraCS Web Service" ToolTipTitle="Validate Contact" ToolTipBody="Run rules to validate Contact." WhenEnabled="Selected" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'MANAGER', 'UploadDownloadViewer', 'SystemEdit', 'Button', 'Upload Download Viewer', '<MenuItem Name="UploadDownloadViewer" Label="Upload Download Viewer" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Upload Download Viewer" ToolTipBody="Display the Upload Download Viewer." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="UploadDownloadViewer" Label="Upload Download Viewer" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Upload Download Viewer" ToolTipBody="Display the Upload Download Viewer." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [ItemsTable] ([ItemMode], [RibbonName], [ActionName], [Type], [ButtonType], [Label], [Memo1], [Memo2]) VALUES ('UNIVERSAL', 'VIEWER', 'UploadDownloadViewer', 'SystemEdit', 'Button', 'Upload Download Viewer', '<MenuItem Name="UploadDownloadViewer" Label="Upload Download Viewer" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Upload Download Viewer" ToolTipBody="Display the Upload Download Viewer." WhenEnabled="All" FormLimit="-1" FinalAction="" />', '<MenuItem Name="UploadDownloadViewer" Label="Upload Download Viewer" ButtonType="Button" Type="SystemEdit" IconIndex="73" IconFile="" ShowIcon="True" BeginMenuGroup="True" KeyboardShortcut="" Size="Large" ApplicationType="All" ToolTipTitle="Upload Download Viewer" ToolTipBody="Display the Upload Download Viewer." WhenEnabled="All" FormLimit="-1" FinalAction="" />');
INSERT INTO [UserLocations] ([LocationID], [LocationName], [Address1], [Address2], [City], [State], [ZipCode], [Phone1], [Phone2], [Phone3], [Phone4]) VALUES ('000', 'Default Location', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO [Users] ([UserID], [UserGuid], [SecondaryUserID], [NameLast], [NameFirst], [NameMiddle], [NameSuffix], [Title], [AccessLevels], [LocationID], [UserDefaultsID], [LocationDefaultsID], [EnterpriseDefaultsID], [Signature], [SignatureType], [Picture], [EMailAddress], [LastModified], [UserPassword], [EncryptionKeyLabel], [EncryptionKey], [EncryptionIV], [OldEncryptionKeyLabel], [OldEncryptionKey], [OldEncryptionIV], [PreviousPasswords], [DatePasswordExpires], [UseSecurePassword], [UsePasswordExpiration], [InactiveUser], [UnlockDateTime], [FailedLoginAttempts], [ForcePasswordReset], [Salt], [Iterations]) VALUES ('00001', NULL, 'Badge01', 'Administrator', 'System', NULL, NULL, NULL, 'BasicUser,Developer,Reporter,Statuses,Supervisor,SystemAdmin,TraCSWebActiveXUser,TraCSWebAdmin,Transmission', '000', '00001', NULL, NULL, 0x, NULL, 0x, NULL, '05/25/2011 17:43:45', '86QJ94afhzIoIF7JrvGSg4U5KORlLcCj', 'UniversalKey', 0xe7903b3ecc75690e35681cf7cd3547169fda6358b91a973374d7f0a941583305, 0xfc7f04a4caec72fb363fa6673ad02bec, NULL, 0xe7903b3ecc75690e35681cf7cd3547169fda6358b91a973374d7f0a941583305, 0xfc7f04a4caec72fb363fa6673ad02bec, 0x, NULL, 'False', 'False', 'False', NULL, NULL, 'False', 'DLjEwnFZarDm4I+cgO0nSBhK7lBnIP/u5Q==', '20000');
INSERT INTO [EncryptionKeys] ([GenericName], [EncryptionKey], [EncryptionIV]) VALUES ('UniversalKey', 0xe7903b3ecc75690e35681cf7cd3547169fda6358b91a973374d7f0a941583305, 0xfc7f04a4caec72fb363fa6673ad02bec);
Related content
email badgertracs@dot.wi.gov or call 608-267-2096