Having read through a number of posts by people with similar problems I have come to the conclusion that there are allot of issues if you want to upgrade a DNN site to version 5 running SQL server 2005. Since I think my symptoms are slightly different I thought I would start a new thread. Having read previous posts there seem to be very little solutions around for this kind of problem.
I have been running DNN for about 4 years now and the website has been upgraded many times without a problem. I have always been impressed with the ease with which you can upgrade. This is the first time I have had a major problem.
So I ran through the upgrade procedure which is to copy the upgrade package files over the top of the existing website files. I noticed that this was different to previous upgrades where you also have to edit the web.config. I then browsed to the website to start the upgrade script. The script failed on all SQL data provider lines and produced log files. One of the log files is pasted bellow.
System.Data.SqlClient.SqlException: Table 'EventLog' already has a primary key defined on it.
Could not create constraint. See previous errors.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL)
at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions)
/* Change primary key of EventLog Table */
/****************************************/
IF NOT EXISTS (SELECT 1 FROM INformATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'dbo169059670.EventLog' AND COLUMN_NAME = 'LogEventID')
BEGIN
--Note this name does NOT have an object qualifier in 4.x upgrades
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = object_id(N'PK_EventLogMaster'))
ALTER TABLE dbo169059670.EventLog
DROP CONSTRAINT PK_EventLogMaster
--Note this name does have an object qualifier in 5.x installs
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = object_id(N'PK_EventLogMaster'))
ALTER TABLE dbo169059670.EventLog
DROP CONSTRAINT PK_EventLogMaster
--Some scenarios have the primary key as PK_EventLog
IF EXISTS (SELECT * FROM dbo.sysobjects WHERE id = object_id(N'PK_EventLog'))
ALTER TABLE dbo169059670.EventLog
DROP CONSTRAINT PK_EventLog
ALTER TABLE dbo169059670.EventLog
ADD LogEventID bigint NOT NULL IDENTITY (1, 1)
ALTER TABLE dbo169059670.EventLog
ADD CONSTRAINT PK_EventLogMaster PRIMARY KEY CLUSTERED ( LogEventID )
END
System.Data.SqlClient.SqlException: Cannot find the object 'Forum_Tracking_ForumGet', because it does not exist or you do not have permission.
Cannot find the object 'PurgeScheduleHistory', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchItemWord', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupPortalAdd', because it does not exist or you do not have permission.
Cannot find the object 'GetEventMessagesBySubscriber', because it does not exist or you do not have permission.
Cannot find the object 'GetFeedback', because it does not exist or you do not have permission.
Cannot find the object 'GetFileContent', because it does not exist or you do not have permission.
Cannot find the object 'EventsNotificationSave', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Tracking_ThreadGet', because it does not exist or you do not have permission.
Cannot find the object 'AddDesktopModulePermission', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSkinControl', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupPortalDelete', because it does not exist or you do not have permission.
Cannot find the object 'SetEventMessageComplete', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ThreadGetCount', because it does not exist or you do not have permission.
Cannot find the object 'GetFolders', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Tracking_ForumCreateDelete', because it does not exist or you do not have permission.
Cannot find the object 'UpdateDesktopModulePermission', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_ForumGroupsList', because it does not exist or you do not have permission.
Cannot find the object 'GetSkinControl', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupPortalGet', because it does not exist or you do not have permission.
Cannot find the object 'EventsNotificationTimeChange', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Tracking_ThreadCreateDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetHostSettings', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_ForumGroupsByGroup', because it does not exist or you do not have permission.
Cannot find the object 'DeleteFolderPermission', because it does not exist or you do not have permission.
Cannot find the object 'UpdateDatabaseVersionAndName', because it does not exist or you do not have permission.
Cannot find the object 'GetSkinControlByKey', because it does not exist or you do not have permission.
Cannot find the object 'Help_GetMaximumTutorialCategoryViewOrder', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupPortalByDnnBBGroup', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ThreadGetRating', because it does not exist or you do not have permission.
Cannot find the object 'EventsCategoryDelete', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Subscriptions_PostDeleted', because it does not exist or you do not have permission.
Cannot find the object 'AddHostSetting', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_ForumForumsList', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSystemMessage', because it does not exist or you do not have permission.
Cannot find the object 'GetSkinControlByPackageID', because it does not exist or you do not have permission.
Cannot find the object 'Help_ListCategoryByParent', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupPortalByPortals', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleControl', because it does not exist or you do not have permission.
Cannot find the object 'DeleteModule', because it does not exist or you do not have permission.
Cannot find the object 'TransferUsersFromFlatProfile', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog3', because it does not exist or you do not have permission.
Cannot find the object 'EventsCategoryGet', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Subscriptions_PrivateMessage', because it does not exist or you do not have permission.
Cannot find the object 'UpdateHostSetting', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_ForumThreadsList', because it does not exist or you do not have permission.
Cannot find the object 'GetSkinControls', because it does not exist or you do not have permission.
Cannot find the object 'Help_GetTutorialsByModule', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostAdd', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleControlByKeyAndSrc', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ThreadRateAdd', because it does not exist or you do not have permission.
Cannot find the object 'TransferUsersToSameContext', because it does not exist or you do not have permission.
Cannot find the object 'EventsCategorySave', because it does not exist or you do not have permission.
Cannot find the object 'AddPackage', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_ForumPostsList', because it does not exist or you do not have permission.
Cannot find the object 'Help_ListTutorialAlphabetical', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DeleteUsersOnline', because it does not exist or you do not have permission.
Cannot find the object 'EventsUpgrade', because it does not exist or you do not have permission.
Cannot find the object 'UpdatePackage', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_ForumThreadRatingList', because it does not exist or you do not have permission.
Cannot find the object 'GetScheduleHistory', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_GetServerErrors', because it does not exist or you do not have permission.
Cannot find the object 'DeleteEventLog', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_AddData', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleControlsByKey', because it does not exist or you do not have permission.
Cannot find the object 'AddUrlTracking', because it does not exist or you do not have permission.
Cannot find the object 'EventsGet', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalSettings', because it does not exist or you do not have permission.
Cannot find the object 'UpdateAffiliate', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_UpdateData', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostGet', because it does not exist or you do not have permission.
Cannot find the object 'AddScheduleItemSetting', because it does not exist or you do not have permission.
Cannot find the object 'EventsSignupsGet', because it does not exist or you do not have permission.
Cannot find the object 'UpdatePortalSetting', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetSettings', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog12', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_GetDbInfo', because it does not exist or you do not have permission.
Cannot find the object 'GetUserRolesByUsername', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostByDnnBBThread', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchResultModules', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ThreadViewsDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalSpaceUsed', because it does not exist or you do not have permission.
Cannot find the object 'EventsSignupsGetEvent', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailTemplatesByModuleAndTypeGet', because it does not exist or you do not have permission.
Cannot find the object 'AddAuthentication', because it does not exist or you do not have permission.
Cannot find the object 'Blog_UpdateSetting', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_GetDbFileInfo', because it does not exist or you do not have permission.
Cannot find the object 'GetUserRoles', because it does not exist or you do not have permission.
Cannot find the object 'DeleteUserRole', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostByUsers', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchModules', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ThreadViewsIncrement', because it does not exist or you do not have permission.
Cannot find the object 'EventsSignupsGetUser', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailTemplateGet', because it does not exist or you do not have permission.
Cannot find the object 'UpdateAuthentication', because it does not exist or you do not have permission.
Cannot find the object 'GetEventLogConfig', because it does not exist or you do not have permission.
Cannot find the object 'GetUserRole', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostGetCount', because it does not exist or you do not have permission.
Cannot find the object 'EventsNotificationGet', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailTemplatesDefaultsGet', because it does not exist or you do not have permission.
Cannot find the object 'AddUserAuthentication', because it does not exist or you do not have permission.
Cannot find the object 'UpdateProfile', because it does not exist or you do not have permission.
Cannot find the object 'CanDeleteSkin', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostGetInThread', because it does not exist or you do not have permission.
Cannot find the object 'EventsNotificationsToSend', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailTemplateformoduleIDAdd', because it does not exist or you do not have permission.
Cannot find the object 'AddSkinControl', because it does not exist or you do not have permission.
Cannot find the object 'GetScheduleItemSettings', because it does not exist or you do not have permission.
Cannot find the object 'GetTabs', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_SettingsAdd', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostExtensionAdd', because it does not exist or you do not have permission.
Cannot find the object 'EventsSignupsMyEnrollments', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PostMove', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSkinControl', because it does not exist or you do not have permission.
Cannot find the object 'AddEventLogConfig', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_SettingsUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostExtensionUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetCurrencies', because it does not exist or you do not have permission.
Cannot find the object 'GetFeedbackList', because it does not exist or you do not have permission.
Cannot find the object 'AddSkinPackage', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchCommonWordByID', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_GetControls', because it does not exist or you do not have permission.
Cannot find the object 'GetSkin', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_SettingsDelete', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostExtensionDelete', because it does not exist or you do not have permission.
Cannot find the object 'EditFeedbackList', because it does not exist or you do not have permission.
Cannot find the object 'Forum_FilterWordGetByWord', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSkinPackage', because it does not exist or you do not have permission.
Cannot find the object 'GetSchedule', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_SwapFieldOrder', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_SettingsGet', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostExtensionGet', because it does not exist or you do not have permission.
Cannot find the object 'ChangeSortOrder', because it does not exist or you do not have permission.
Cannot find the object 'DeleteAffiliate', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_SettingsGetByModuleID', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostExtensionByDnnBBPost', because it does not exist or you do not have permission.
Cannot find the object 'FAQGet', because it does not exist or you do not have permission.
Cannot find the object 'AddListEntry', because it does not exist or you do not have permission.
Cannot find the object 'GetEventLogType', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicAdd', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostExtensionByUsers', because it does not exist or you do not have permission.
Cannot find the object 'Store_Administration_AddStoreInfo', because it does not exist or you do not have permission.
Cannot find the object 'CreateFeedback', because it does not exist or you do not have permission.
Cannot find the object 'GetPropertyDefinitionsByCategory', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog9', because it does not exist or you do not have permission.
Cannot find the object 'FAQList', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ModerateForumGetByModeratorThreads', because it does not exist or you do not have permission.
Cannot find the object 'UpdateListEntry', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchItem', because it does not exist or you do not have permission.
Cannot find the object 'AddHtmlText', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleByDefinition', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBPostExtensionGetAll', because it does not exist or you do not have permission.
Cannot find the object 'Store_Administration_UpdateStoreInfo', because it does not exist or you do not have permission.
Cannot find the object 'GetCategoryFeedback', because it does not exist or you do not have permission.
Cannot find the object 'GetPropertyDefinitionByName', because it does not exist or you do not have permission.
Cannot find the object 'FAQAdd', because it does not exist or you do not have permission.
Cannot find the object 'AddLanguage', because it does not exist or you do not have permission.
Cannot find the object 'GetHtmlText', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicDelete', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadAdd', because it does not exist or you do not have permission.
Cannot find the object 'Store_Administration_GetStoreInfo', because it does not exist or you do not have permission.
Cannot find the object 'Forum_FilterWordGet', because it does not exist or you do not have permission.
Cannot find the object 'GetPropertyDefinitionsByPortal', because it does not exist or you do not have permission.
Cannot find the object 'FAQUpdate', because it does not exist or you do not have permission.
Cannot find the object 'UpdateLanguage', because it does not exist or you do not have permission.
Cannot find the object 'UpdateHtmlText', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicGet', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Store_Cart_AddCart', because it does not exist or you do not have permission.
Cannot find the object 'Forum_FilterWordGetAll', because it does not exist or you do not have permission.
Cannot find the object 'UpdateFeedbackStatus', because it does not exist or you do not have permission.
Cannot find the object 'FAQDelete', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserGetMultiPortal', because it does not exist or you do not have permission.
Cannot find the object 'AddLanguagePack', because it does not exist or you do not have permission.
Cannot find the object 'UpdateEventLogConfig', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_DeleteRows', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicGetAll', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadDelete', because it does not exist or you do not have permission.
Cannot find the object 'Store_Cart_UpdateCart', because it does not exist or you do not have permission.
Cannot find the object 'Forum_FilterWordDelete', because it does not exist or you do not have permission.
Cannot find the object 'AddFeedbackList', because it does not exist or you do not have permission.
Cannot find the object 'FAQCategoryGet', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserAdd', because it does not exist or you do not have permission.
Cannot find the object 'UpdateLanguagePack', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListEntriesByPortal', because it does not exist or you do not have permission.
Cannot find the object 'DeletePortalAlias', because it does not exist or you do not have permission.
Cannot find the object 'dnnLinks_AddLink', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchIndexers', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_AddField', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicGetAllByModuleID', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadGet', because it does not exist or you do not have permission.
Cannot find the object 'Store_Cart_DeleteCart', because it does not exist or you do not have permission.
Cannot find the object 'Forum_FilterWordUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetVendor', because it does not exist or you do not have permission.
Cannot find the object 'FAQCategoryList', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_ThreadGet', because it does not exist or you do not have permission.
Cannot find the object 'AddPortalLanguage', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListAllEntriesByBlog', because it does not exist or you do not have permission.
Cannot find the object 'GetScheduleByEvent', because it does not exist or you do not have permission.
Cannot find the object 'dnnLinks_GetLink', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_UpdateField', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicGetAllByModuleChangedWhen', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadByDnnBBForum', because it does not exist or you do not have permission.
Cannot find the object 'Store_Cart_GetCart', because it does not exist or you do not have permission.
Cannot find the object 'FAQCategoryAdd', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_Get', because it does not exist or you do not have permission.
Cannot find the object 'AddPropertyDefinition', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListAllEntriesByPortal', because it does not exist or you do not have permission.
Cannot find the object 'DeleteFolderPermissionsByFolderPath', because it does not exist or you do not have permission.
Cannot find the object 'dnnLinks_GetLinks', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_GetField', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicGetByNameformodule', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadByDnnBBThreadType', because it does not exist or you do not have permission.
Cannot find the object 'Store_Cart_PurgeCarts', because it does not exist or you do not have permission.
Cannot find the object 'IFrame_AddParameter', because it does not exist or you do not have permission.
Cannot find the object 'FAQCategoryUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_GetAll', because it does not exist or you do not have permission.
Cannot find the object 'UpdatePropertyDefinition', because it does not exist or you do not have permission.
Cannot find the object 'dnnLinks_UpdateLink', because it does not exist or you do not have permission.
Cannot find the object 'ListSearchItemWordPosition', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_GetFields', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicSearchWiki', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadByUsers', because it does not exist or you do not have permission.
Cannot find the object 'Store_CartItems_AddItem', because it does not exist or you do not have permission.
Cannot find the object 'IFrame_GetParameters', because it does not exist or you do not have permission.
Cannot find the object 'GetTabPanes', because it does not exist or you do not have permission.
Cannot find the object 'FAQCategoryDelete', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_ThreadDelete', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSchedule', because it does not exist or you do not have permission.
Cannot find the object 'dnnLinks_DeleteLink', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicHistoryAdd', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadGetAll', because it does not exist or you do not have permission.
Cannot find the object 'Store_CartItems_UpdateItem', because it does not exist or you do not have permission.
Cannot find the object 'IFrame_GetParameter', because it does not exist or you do not have permission.
Cannot find the object 'GetBanners', because it does not exist or you do not have permission.
Cannot find the object 'FAQIncrementViewCount', because it does not exist or you do not have permission.
Cannot find the object 'Forum_AA_PM_ThreadAdd', because it does not exist or you do not have permission.
Cannot find the object 'AddSchedule', because it does not exist or you do not have permission.
Cannot find the object 'DeleteTabPermissionsByTabID', because it does not exist or you do not have permission.
Cannot find the object 'GetAffiliate', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicHistoryUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadGetCount', because it does not exist or you do not have permission.
Cannot find the object 'Store_CartItems_DeleteItems', because it does not exist or you do not have permission.
Cannot find the object 'IFrame_UpdateParameter', because it does not exist or you do not have permission.
Cannot find the object 'FAQSearch', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_Add', because it does not exist or you do not have permission.
Cannot find the object 'GetPermission', because it does not exist or you do not have permission.
Cannot find the object 'UpdateScheduleHistory', because it does not exist or you do not have permission.
Cannot find the object 'DeleteTabPermission', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_FillDefaultData', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicHistoryDelete', because it does not exist or you do not have permission.
Cannot find the object 'Store_CartItems_DeleteItem', because it does not exist or you do not have permission.
Cannot find the object 'IFrame_DeleteParameter', because it does not exist or you do not have permission.
Cannot find the object 'GetPermissionByCodeAndKey', because it does not exist or you do not have permission.
Cannot find the object 'GetAffiliates', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalAlias', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicHistoryGet', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadReadAdd', because it does not exist or you do not have permission.
Cannot find the object 'Store_CartItems_GetItem', because it does not exist or you do not have permission.
Cannot find the object 'GetPermissionsByFolder', because it does not exist or you do not have permission.
Cannot find the object 'GetVendors', because it does not exist or you do not have permission.
Cannot find the object 'Wiki_TopicHistoryGetHistoryForTopic', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadReadUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Store_CartItems_GetItems', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserUpdateTrackingDuration', because it does not exist or you do not have permission.
Cannot find the object 'GetPermissionsByModuleDefID', because it does not exist or you do not have permission.
Cannot find the object 'TasksGet', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_AddControl', because it does not exist or you do not have permission.
Cannot find the object 'GetVendorsByEmail', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadReadDelete', because it does not exist or you do not have permission.
Cannot find the object 'Store_Addresses_AddAddress', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserGet', because it does not exist or you do not have permission.
Cannot find the object 'GetPermissionsByModuleID', because it does not exist or you do not have permission.
Cannot find the object 'TasksList', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalByAlias', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_DeleteControl', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserDeleteReads', because it does not exist or you do not have permission.
Cannot find the object 'GetVendorsByName', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadReadGet', because it does not exist or you do not have permission.
Cannot find the object 'GetRolesByGroup', because it does not exist or you do not have permission.
Cannot find the object 'Store_Addresses_UpdateAddress', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserViewUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetPermissionsByPortalDesktopModule', because it does not exist or you do not have permission.
Cannot find the object 'TasksGetByModules', because it does not exist or you do not have permission.
Cannot find the object 'GetProfile', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_GetDashboardControlByKey', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadTrackingAdd', because it does not exist or you do not have permission.
Cannot find the object 'Store_Addresses_DeleteAddress', because it does not exist or you do not have permission.
Cannot find the object 'GetPermissionsByTab', because it does not exist or you do not have permission.
Cannot find the object 'TasksAdd', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_UpdateControl', because it does not exist or you do not have permission.
Cannot find the object 'Xml_Parameter_Delete', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadTrackingDelete', because it does not exist or you do not have permission.
Cannot find the object 'Store_Addresses_GetAddress', because it does not exist or you do not have permission.
Cannot find the object 'GetFolderByFolderID', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ModeratePostGet', because it does not exist or you do not have permission.
Cannot find the object 'MoveTabModule', because it does not exist or you do not have permission.
Cannot find the object 'TasksUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadTrackingGet', because it does not exist or you do not have permission.
Cannot find the object 'Store_Addresses_GetUserAddresses', because it does not exist or you do not have permission.
Cannot find the object 'UpgradeMedia', because it does not exist or you do not have permission.
Cannot find the object 'GetFolderByFolderPath', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_ThreadGetAll', because it does not exist or you do not have permission.
Cannot find the object 'GetModulePackagesInUse', because it does not exist or you do not have permission.
Cannot find the object 'TasksDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetEventLogPendingNotif', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadTrackingByDnnBBThread', because it does not exist or you do not have permission.
Cannot find the object 'Store_Addresses_DeleteUserAddresses', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetTabsByPackageID', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSystemMessage', because it does not exist or you do not have permission.
Cannot find the object 'Xml_Parameter_GetList', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadTypeAdd', because it does not exist or you do not have permission.
Cannot find the object 'Store_Categories_AddCategory', because it does not exist or you do not have permission.
Cannot find the object 'AddMedia', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSearchItem', because it does not exist or you do not have permission.
Cannot find the object 'DeleteRole', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PostGetAll', because it does not exist or you do not have permission.
Cannot find the object 'GetTabPaths', because it does not exist or you do not have permission.
Cannot find the object 'Xml_Parameter_Get', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadTypeUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Store_Categories_UpdateCategory', because it does not exist or you do not have permission.
Cannot find the object 'GetMedia', because it does not exist or you do not have permission.
Cannot find the object 'GetVendorClassifications', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PostGet', because it does not exist or you do not have permission.
Cannot find the object 'AddSearchItem', because it does not exist or you do not have permission.
Cannot find the object 'AddSearchCommonWord', because it does not exist or you do not have permission.
Cannot find the object 'Xml_Parameter_Update', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadTypeDelete', because it does not exist or you do not have permission.
Cannot find the object 'Store_Categories_DeleteCategory', because it does not exist or you do not have permission.
Cannot find the object 'UpdateMedia', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PostGetAllForThread', because it does not exist or you do not have permission.
Cannot find the object 'AddSearchItemWord', because it does not exist or you do not have permission.
Cannot find the object 'AddUrl', because it does not exist or you do not have permission.
Cannot find the object 'EventsAVCalendarImport', because it does not exist or you do not have permission.
Cannot find the object 'Xml_Parameter_Add', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadTypeGet', because it does not exist or you do not have permission.
Cannot find the object 'Store_Categories_GetCategory', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ModeratePostReject', because it does not exist or you do not have permission.
Cannot find the object 'GetUrlLog', because it does not exist or you do not have permission.
Cannot find the object 'News_GetFeed', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ForumsGetByModuleID', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_GetInstalledModules', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalAliasByPortalID', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadTypeGetAll', because it does not exist or you do not have permission.
Cannot find the object 'Store_Categories_CountAll', because it does not exist or you do not have permission.
Cannot find the object 'News_GetFeedsByModule', because it does not exist or you do not have permission.
Cannot find the object 'Dashboard_GetDbBackups', because it does not exist or you do not have permission.
Cannot find the object 'DeletePortalDesktopModules', because it does not exist or you do not have permission.
Cannot find the object 'GetSkinPackage', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBUserSettingAdd', because it does not exist or you do not have permission.
Cannot find the object 'Store_Categories_GetAll', because it does not exist or you do not have permission.
Cannot find the object 'News_AddFeed', because it does not exist or you do not have permission.
Cannot find the object 'Forum_SearchGetResults', because it does not exist or you do not have permission.
Cannot find the object 'GetDatabaseServer', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSearchItemWords', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBUserSettingUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Store_Categories_DeleteAll', because it does not exist or you do not have permission.
Cannot find the object 'News_UpdateFeed', because it does not exist or you do not have permission.
Cannot find the object 'GetPackageByName', because it does not exist or you do not have permission.
Cannot find the object 'GetUrl', because it does not exist or you do not have permission.
Cannot find the object 'Forum_GroupAdd', because it does not exist or you do not have permission.
Cannot find the object 'GetServices', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBUserSettingDelete', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_AddProduct', because it does not exist or you do not have permission.
Cannot find the object 'AddFile', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalDesktopModules', because it does not exist or you do not have permission.
Cannot find the object 'News_DeleteFeed', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Permissions_GetForumPermissions', because it does not exist or you do not have permission.
Cannot find the object 'GetOnlineUsers', because it does not exist or you do not have permission.
Cannot find the object 'Forum_GroupGet', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalAliasByPortalAliasID', because it does not exist or you do not have permission.
Cannot find the object 'GBook_GetEntries', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBUserSettingGet', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_UpdateProduct', because it does not exist or you do not have permission.
Cannot find the object 'DeleteFile', because it does not exist or you do not have permission.
Cannot find the object 'News_GetExpiredFeeds', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Permissions_GetCollection', because it does not exist or you do not have permission.
Cannot find the object 'GetUsersByRolename', because it does not exist or you do not have permission.
Cannot find the object 'DeleteFiles', because it does not exist or you do not have permission.
Cannot find the object 'Forum_GroupGetByModuleID', because it does not exist or you do not have permission.
Cannot find the object 'GetRoleGroups', because it does not exist or you do not have permission.
Cannot find the object 'GetDesktopModules', because it does not exist or you do not have permission.
Cannot find the object 'GBook_AddEntries', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBUserSettingByUsers', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_DeleteProduct', because it does not exist or you do not have permission.
Cannot find the object 'UpdateFile', because it does not exist or you do not have permission.
Cannot find the object 'News_ClearFeedsCache', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Permissions_AddForum', because it does not exist or you do not have permission.
Cannot find the object 'GetUsers', because it does not exist or you do not have permission.
Cannot find the object 'Forum_GroupUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetListEntries', because it does not exist or you do not have permission.
Cannot find the object 'GBook_UpdateEntries', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBUserSettingGetAll', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_DeletePortalProducts', because it does not exist or you do not have permission.
Cannot find the object 'News_FeedRetrieveFail', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Permissions_UpdateForum', because it does not exist or you do not have permission.
Cannot find the object 'GetUserCountByPortal', because it does not exist or you do not have permission.
Cannot find the object 'RegisterAssembly', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSchedule', because it does not exist or you do not have permission.
Cannot find the object 'GetPackageTypes', because it does not exist or you do not have permission.
Cannot find the object 'GBook_DeleteEntries', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBBreadCrumbForumGetFromForum', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_DeleteCategoryProducts', because it does not exist or you do not have permission.
Cannot find the object 'News_FeedRetrieveSuccess', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Forum_Delete', because it does not exist or you do not have permission.
Cannot find the object 'DeleteServer', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleDefinitions', because it does not exist or you do not have permission.
Cannot find the object 'GBook_GetEntriesByModules', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBBreadCrumbThreadGetFromThread', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_CountPortalProducts', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Permissions_GetByForumID', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ThreadGetUserRating', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleControls', because it does not exist or you do not have permission.
Cannot find the object 'grmAddRepositoryAttributeValues', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_CountCategoryProducts', because it does not exist or you do not have permission.
Cannot find the object 'UpdateBannerViews', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Permissions_GetForum', because it does not exist or you do not have permission.
Cannot find the object 'GetTables', because it does not exist or you do not have permission.
Cannot find the object 'grmAddRepositoryAttributes', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetProduct', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Permissions_DeleteForum', because it does not exist or you do not have permission.
Cannot find the object 'grmAddRepositoryCategory', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetPortalProducts', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Permissions_DeleteByForumID', because it does not exist or you do not have permission.
Cannot find the object 'ListSearchItemWord', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserGetAll', because it does not exist or you do not have permission.
Cannot find the object 'GetDesktopModuleByPackageID', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetPortalFeaturedProducts', because it does not exist or you do not have permission.
Cannot find the object 'GetExpiredPortals', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Users_GetAllByDisplayName', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ThreadMove', because it does not exist or you do not have permission.
Cannot find the object 'GetDesktopModulesByPortal', because it does not exist or you do not have permission.
Cannot find the object 'grmAddRepositoryObject', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetProducts', because it does not exist or you do not have permission.
Cannot find the object 'GetPortal', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Upgrade_GetForumPerms', because it does not exist or you do not have permission.
Cannot find the object 'grmAddRepositoryObjectCategories', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetFeaturedProducts', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalCount', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Upgrade_GetPermByKey', because it does not exist or you do not have permission.
Cannot find the object 'GetUrls', because it does not exist or you do not have permission.
Cannot find the object 'grmAddRepositoryObjectValues', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetPopularProducts', because it does not exist or you do not have permission.
Cannot find the object 'GetPortals', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Upgrade_GetForumMods', because it does not exist or you do not have permission.
Cannot find the object 'GetAllUsers', because it does not exist or you do not have permission.
Cannot find the object 'CheckUpgrade', because it does not exist or you do not have permission.
Cannot find the object 'grmApproveRepositoryObject', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetPortalPopularProducts', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalsByName', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ISearchable', because it does not exist or you do not have permission.
Cannot find the object 'AddVendorClassification', because it does not exist or you do not have permission.
Cannot find the object 'GetUsersByUserName', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ModerateThreadMove', because it does not exist or you do not have permission.
Cannot find the object 'GetUserCount', because it does not exist or you do not have permission.
Cannot find the object 'grmChangeRepositoryModuleDefId', because it does not exist or you do not have permission.
Cannot find the object 'Store_Orders_GetCustomerOrders', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalByPortalAliasID', because it does not exist or you do not have permission.
Cannot find the object 'GetUsersByEmail', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog1', because it does not exist or you do not have permission.
Cannot find the object 'dnnAnnouncements_Add', because it does not exist or you do not have permission.
Cannot find the object 'grmDeleteRepositoryAttributeValues', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBThreadGetInForumInModule', because it does not exist or you do not have permission.
Cannot find the object 'Store_Orders_GetCustomers', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog2', because it does not exist or you do not have permission.
Cannot find the object 'AddProfile', because it does not exist or you do not have permission.
Cannot find the object 'dnnAnnouncements_Get', because it does not exist or you do not have permission.
Cannot find the object 'grmDeleteRepositoryAttributes', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBEmoticonsAdd', because it does not exist or you do not have permission.
Cannot find the object 'Store_Orders_GetOrder', because it does not exist or you do not have permission.
Cannot find the object 'DeleteFolder', because it does not exist or you do not have permission.
Cannot find the object 'GetUsersByProfileProperty', because it does not exist or you do not have permission.
Cannot find the object 'dnnAnnouncements_GetCurrent', because it does not exist or you do not have permission.
Cannot find the object 'grmDeleteRepositoryCategory', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBEmoticonsUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Store_Orders_CreateOrder', because it does not exist or you do not have permission.
Cannot find the object 'GetTabsByParentId', because it does not exist or you do not have permission.
Cannot find the object 'VerifyPortalTab', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog7', because it does not exist or you do not have permission.
Cannot find the object 'AddUrlLog', because it does not exist or you do not have permission.
Cannot find the object 'dnnAnnouncements_GetExpired', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBEmoticonsDelete', because it does not exist or you do not have permission.
Cannot find the object 'Store_Orders_UpdateOrder', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog6', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchResultsByWord', because it does not exist or you do not have permission.
Cannot find the object 'dnnAnnouncements_GetAll', because it does not exist or you do not have permission.
Cannot find the object 'grmDeleteRepositoryModuleDefId', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBEmoticonsGet', because it does not exist or you do not have permission.
Cannot find the object 'Store_Orders_GetOrderDetails', because it does not exist or you do not have permission.
Cannot find the object 'GetTab', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSiteLog', because it does not exist or you do not have permission.
Cannot find the object 'dnnAnnouncements_Update', because it does not exist or you do not have permission.
Cannot find the object 'GetDesktopModulePermission', because it does not exist or you do not have permission.
Cannot find the object 'grmDeleteRepositoryObject', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBEmoticonsGetAll', because it does not exist or you do not have permission.
Cannot find the object 'Store_Reviews_AddReview', because it does not exist or you do not have permission.
Cannot find the object 'GetAllTabs', because it does not exist or you do not have permission.
Cannot find the object 'SaveCoreAuditTypes', because it does not exist or you do not have permission.
Cannot find the object 'dnnAnnouncements_Delete', because it does not exist or you do not have permission.
Cannot find the object 'GetDesktopModulePermissions', because it does not exist or you do not have permission.
Cannot find the object 'grmDeleteRepositoryObjectCategories', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBEmoticonsGetAllInPortal', because it does not exist or you do not have permission.
Cannot find the object 'Store_Reviews_UpdateReview', because it does not exist or you do not have permission.
Cannot find the object 'GetTabByName', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchCommonWordsByLocale', because it does not exist or you do not have permission.
Cannot find the object 'AddEventLog', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchWordByID', because it does not exist or you do not have permission.
Cannot find the object 'Blog_AddBlog', because it does not exist or you do not have permission.
Cannot find the object 'GetDesktopModulePermissionsByPortalDesktopModuleID', because it does not exist or you do not have permission.
Cannot find the object 'grmDeleteRepositoryObjectValues', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAllowedHtmlAdd', because it does not exist or you do not have permission.
Cannot find the object 'Store_Reviews_DeleteReview', because it does not exist or you do not have permission.
Cannot find the object 'GetTabCount', because it does not exist or you do not have permission.
Cannot find the object 'UpdateBanner', because it does not exist or you do not have permission.
Cannot find the object 'GetSurveyResultData', because it does not exist or you do not have permission.
Cannot find the object 'UpdateDatabaseVersion', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetBlog', because it does not exist or you do not have permission.
Cannot find the object 'DeleteDesktopModulePermission', because it does not exist or you do not have permission.
Cannot find the object 'grmGetRepositoryAttributeValues', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAllowedHtmlUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Store_Reviews_GetReview', because it does not exist or you do not have permission.
Cannot find the object 'AddSurveyResult_cookie', because it does not exist or you do not have permission.
Cannot find the object 'AddEventLogType', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailTemplatesByModuleIDGet', because it does not exist or you do not have permission.
Cannot find the object 'AddSiteLog', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListBlogs', because it does not exist or you do not have permission.
Cannot find the object 'DeleteDesktopModulePermissionsByPortalDesktopModuleID', because it does not exist or you do not have permission.
Cannot find the object 'grmGetRepositoryAttributes', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAllowedHtmlDelete', because it does not exist or you do not have permission.
Cannot find the object 'Store_Reviews_GetAll', because it does not exist or you do not have permission.
Cannot find the object 'GetTabModules', because it does not exist or you do not have permission.
Cannot find the object 'AddSurveyResult', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailTemplateUpdate', because it does not exist or you do not have permission.
Cannot find the object 'AddModulePermission', because it does not exist or you do not have permission.
Cannot find the object 'DeletePermission', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListBlogsByPortal', because it does not exist or you do not have permission.
Cannot find the object 'DeleteDesktopModulePermissionsByUserID', because it does not exist or you do not have permission.
Cannot find the object 'grmGetRepositoryCategories', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAllowedHtmlGet', because it does not exist or you do not have permission.
Cannot find the object 'Store_Reviews_GetByProduct', because it does not exist or you do not have permission.
Cannot find the object 'GetModule', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSurvey', because it does not exist or you do not have permission.
Cannot find the object 'Forum_TemplatesAddformoduleID', because it does not exist or you do not have permission.
Cannot find the object 'GetOnlineUserStatistics', because it does not exist or you do not have permission.
Cannot find the object 'UpdateModulePermission', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListBlogsRootByPortal', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAllowedHtmlGetAll', because it does not exist or you do not have permission.
Cannot find the object 'Store_Administration_GetShippingFee', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ForumUserViewsUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSurvey', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSearchItems', because it does not exist or you do not have permission.
Cannot find the object 'Forum_TemplatesGetSingle', because it does not exist or you do not have permission.
Cannot find the object 'AddModule', because it does not exist or you do not have permission.
Cannot find the object 'DeleteModulePermissionsByModuleID', because it does not exist or you do not have permission.
Cannot find the object 'Blog_UpdateBlog', because it does not exist or you do not have permission.
Cannot find the object 'grmGetRepositoryModules', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAllowedHtmlGetAllAllowed', because it does not exist or you do not have permission.
Cannot find the object 'Store_Administration_UpdateShippingFee', because it does not exist or you do not have permission.
Cannot find the object 'GetModules', because it does not exist or you do not have permission.
Cannot find the object 'AddSurvey', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSearchItemWordPosition', because it does not exist or you do not have permission.
Cannot find the object 'Forum_TemplatesGetDefaults', because it does not exist or you do not have permission.
Cannot find the object 'UpdateModule', because it does not exist or you do not have permission.
Cannot find the object 'grmGetRepositoryObjectCategories', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAllowedHtmlGetAllInPortal', because it does not exist or you do not have permission.
Cannot find the object 'Store_Administration_GetTaxRates', because it does not exist or you do not have permission.
Cannot find the object 'Forum_AA_StatisticsSiteUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetAllModules', because it does not exist or you do not have permission.
Cannot find the object 'GetSurvey', because it does not exist or you do not have permission.
Cannot find the object 'AddSearchItemWordPosition', because it does not exist or you do not have permission.
Cannot find the object 'Forum_TemplatesGetByType', because it does not exist or you do not have permission.
Cannot find the object 'AddModuleSetting', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSearchCommonWord', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListEntriesByPortalByDay', because it does not exist or you do not have permission.
Cannot find the object 'grmGetRepositoryObjectValues', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBWordRewriteAdd', because it does not exist or you do not have permission.
Cannot find the object 'Store_Administration_UpdateTaxRates', because it does not exist or you do not have permission.
Cannot find the object 'UpdateAnonymousUser', because it does not exist or you do not have permission.
Cannot find the object 'GetSurveyOptions', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Forum_Add', because it does not exist or you do not have permission.
Cannot find the object 'DeleteVendorClassifications', because it does not exist or you do not have permission.
Cannot find the object 'Forum_TemplatesUpdate', because it does not exist or you do not have permission.
Cannot find the object 'UpdateModuleSetting', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListEntriesByPortalByMonth', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBWordRewriteUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleSettings', because it does not exist or you do not have permission.
Cannot find the object 'AddSurveyOption', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Forum_Update', because it does not exist or you do not have permission.
Cannot find the object 'AddSearchWord', because it does not exist or you do not have permission.
Cannot find the object 'GetSystemMessage', because it does not exist or you do not have permission.
Cannot find the object 'AddPermission', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSearchCommonWord', because it does not exist or you do not have permission.
Cannot find the object 'DeletePortalSetting', because it does not exist or you do not have permission.
Cannot find the object 'grmGetSingleRepositoryAttributeValues', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBWordRewriteDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleSetting', because it does not exist or you do not have permission.
Cannot find the object 'VerifyPortal', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSurveyOption', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Forum_Get', because it does not exist or you do not have permission.
Cannot find the object 'UpdateEventLogPendingNotif', because it does not exist or you do not have permission.
Cannot find the object 'UpdatePermission', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetEntry', because it does not exist or you do not have permission.
Cannot find the object 'DeletePortalSettings', because it does not exist or you do not have permission.
Cannot find the object 'grmGetSingleRepositoryAttributes', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBWordRewriteGet', because it does not exist or you do not have permission.
Cannot find the object 'Store_Orders_UpdateOrderDetails', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSurveyOption', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Forum_GetAll', because it does not exist or you do not have permission.
Cannot find the object 'Forum_KeywordsByTypeGet', because it does not exist or you do not have permission.
Cannot find the object 'AddPortalAlias', because it does not exist or you do not have permission.
Cannot find the object 'Blog_MetaWeblog_Get_DesktopModule_FriendlyName', because it does not exist or you do not have permission.
Cannot find the object 'grmGetSingleRepositoryCategory', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBWordRewriteGetAll', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAccessTypeAdd', because it does not exist or you do not have permission.
Cannot find the object 'UpdateListSortOrder', because it does not exist or you do not have permission.
Cannot find the object 'GetSurveys', because it does not exist or you do not have permission.
Cannot find the object 'Forum_AA_ThreadAdd', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PostReport', because it does not exist or you do not have permission.
Cannot find the object 'UpdatePortalAlias', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBWordRewriteGetAllInPortal', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAccessTypeUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetFolderPermissionsByFolderPath', because it does not exist or you do not have permission.
Cannot find the object 'UpdateUrlTrackingStats', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSurveyResultData', because it does not exist or you do not have permission.
Cannot find the object 'Forum_AA_ThreadUpdate', because it does not exist or you do not have permission.
Cannot find the object 'ListSearchItem', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PostReportCheck', because it does not exist or you do not have permission.
Cannot find the object 'AddPortalDesktopModule', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBBanIPAdd', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAccessTypeDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetFolderPermission', because it does not exist or you do not have permission.
Cannot find the object 'AddVendor', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Post_Add', because it does not exist or you do not have permission.
Cannot find the object 'DeleteModulePermission', because it does not exist or you do not have permission.
Cannot find the object 'AddPortalInfo', because it does not exist or you do not have permission.
Cannot find the object 'Blog_UpdateEntry', because it does not exist or you do not have permission.
Cannot find the object 'grmGetSingleRepositoryObjectCategories', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBBanIPUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAccessTypeGet', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Thread_Delete', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UsersGetByUsername', because it does not exist or you do not have permission.
Cannot find the object 'UpdatePortalInfo', because it does not exist or you do not have permission.
Cannot find the object 'AddSystemMessage', because it does not exist or you do not have permission.
Cannot find the object 'Blog_AddEntry', because it does not exist or you do not have permission.
Cannot find the object 'grmGetSingleRepositoryObjectValues', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBBanIPDelete', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBAccessTypeGetAll', because it does not exist or you do not have permission.
Cannot find the object 'GetModulePermissionsByModuleID', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Thread_Get', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UsersGetByEmail', because it does not exist or you do not have permission.
Cannot find the object 'AddTabModule', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchItemWordBySearchWord', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetBlogByUserID', because it does not exist or you do not have permission.
Cannot find the object 'grmUpdateRepositoryAttributeValues', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBBanIPGet', because it does not exist or you do not have permission.
Cannot find the object 'GetModulePermissionsByPortal', because it does not exist or you do not have permission.
Cannot find the object 'DeleteVendor', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Thread_GetByForum', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UsersGetOnlineUsers', because it does not exist or you do not have permission.
Cannot find the object 'UpdateTabModule', because it does not exist or you do not have permission.
Cannot find the object 'Blog_AddComment', because it does not exist or you do not have permission.
Cannot find the object 'grmUpdateRepositoryAttributes', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBBanIPGetAll', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserForumsAdd', because it does not exist or you do not have permission.
Cannot find the object 'GetModulePermissionsByTabID', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Post_Update', because it does not exist or you do not have permission.
Cannot find the object 'DeleteRoleGroup', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UsersGetByProfileProperty', because it does not exist or you do not have permission.
Cannot find the object 'AddTabModuleSetting', because it does not exist or you do not have permission.
Cannot find the object 'Blog_UpdateComment', because it does not exist or you do not have permission.
Cannot find the object 'grmUpdateRepositoryCategory', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserForumsDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetModulePermission', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleDefinition', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_PollAdd', because it does not exist or you do not have permission.
Cannot find the object 'GetRoleGroup', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UsersGetAll', because it does not exist or you do not have permission.
Cannot find the object 'UpdateTabModuleSetting', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetComment', because it does not exist or you do not have permission.
Cannot find the object 'grmUpdateRepositoryClicks', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserForumsGet', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ForumSortOrderUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_AnswerAdd', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UsersGetByDisplayName', because it does not exist or you do not have permission.
Cannot find the object 'AddTabPermission', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListComments', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserForumsGetByForum', because it does not exist or you do not have permission.
Cannot find the object 'GetTabPermissionsByPortal', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_PollGet', because it does not exist or you do not have permission.
Cannot find the object 'EventsCategoryList', because it does not exist or you do not have permission.
Cannot find the object 'UpdateTabPermission', because it does not exist or you do not have permission.
Cannot find the object 'DeleteEventLogType', because it does not exist or you do not have permission.
Cannot find the object 'Blog_SearchBlogByKeyWord', because it does not exist or you do not have permission.
Cannot find the object 'grmUpdateRepositoryObject', because it does not exist or you do not have permission.
Cannot find the object 'Store_Orders_GetOrdersByStatusID', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserForumsGetByUsers', because it does not exist or you do not have permission.
Cannot find the object 'GetTabPermission', because it does not exist or you do not have permission.
Cannot find the object 'GetRoles', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_AnswersGetPoll', because it does not exist or you do not have permission.
Cannot find the object 'AddUserRole', because it does not exist or you do not have permission.
Cannot find the object 'Blog_SearchBlogByPhrase', because it does not exist or you do not have permission.
Cannot find the object 'DeleteModuleSetting', because it does not exist or you do not have permission.
Cannot find the object 'grmUpdateRepositoryObjectCategories', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumRolesAdd', because it does not exist or you do not have permission.
Cannot find the object 'Store_Orders_GetOrderStatuses', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserForumsList', because it does not exist or you do not have permission.
Cannot find the object 'GetBannerGroups', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetPoint', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_UserAnswersGet', because it does not exist or you do not have permission.
Cannot find the object 'UpdateUserRole', because it does not exist or you do not have permission.
Cannot find the object 'Blog_SearchByKeyWordByBlog', because it does not exist or you do not have permission.
Cannot find the object 'GetAuthenticationService', because it does not exist or you do not have permission.
Cannot find the object 'DeleteModuleSettings', because it does not exist or you do not have permission.
Cannot find the object 'AddSkin', because it does not exist or you do not have permission.
Cannot find the object 'grmUpdateRepositoryObjectValues', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumRolesDelete', because it does not exist or you do not have permission.
Cannot find the object 'Store_ShippingRates_AddShippingRate', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserForumsUpdate', because it does not exist or you do not have permission.
Cannot find the object 'FindBanners', because it does not exist or you do not have permission.
Cannot find the object 'Map_DeletePoint', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_AnswerGet', because it does not exist or you do not have permission.
Cannot find the object 'GetRole', because it does not exist or you do not have permission.
Cannot find the object 'AddUser', because it does not exist or you do not have permission.
Cannot find the object 'Blog_DeleteBlog', because it does not exist or you do not have permission.
Cannot find the object 'GetDatabaseVersion', because it does not exist or you do not have permission.
Cannot find the object 'Blog_SearchByKeyWordByPortal', because it does not exist or you do not have permission.
Cannot find the object 'GetAuthenticationServiceByPackageID', because it does not exist or you do not have permission.
Cannot find the object 'DeleteTabModuleSetting', because it does not exist or you do not have permission.
Cannot find the object 'grmUpdateRepositoryRating', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumRolesGet', because it does not exist or you do not have permission.
Cannot find the object 'Store_ShippingRates_DeleteShippingRate', because it does not exist or you do not have permission.
Cannot find the object 'GetEventLog', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalByTab', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_UserAnswerAdd', because it does not exist or you do not have permission.
Cannot find the object 'GetRoleByName', because it does not exist or you do not have permission.
Cannot find the object 'AddDesktopModule', because it does not exist or you do not have permission.
Cannot find the object 'Blog_DeleteComment', because it does not exist or you do not have permission.
Cannot find the object 'Blog_SearchByPhraseByBlog', because it does not exist or you do not have permission.
Cannot find the object 'GetAuthenticationServiceByType', because it does not exist or you do not have permission.
Cannot find the object 'DeleteTabModuleSettings', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSkin', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumRolesByDnnBBAccessType', because it does not exist or you do not have permission.
Cannot find the object 'Store_ShippingRates_GetShippingRate', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserThreadsDeleteByForum', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_PollUpdate', because it does not exist or you do not have permission.
Cannot find the object 'UpdateDesktopModule', because it does not exist or you do not have permission.
Cannot find the object 'Blog_DeleteEntry', because it does not exist or you do not have permission.
Cannot find the object 'Blog_SearchByPhraseByPortal', because it does not exist or you do not have permission.
Cannot find the object 'GetAuthenticationServices', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSkinPackage', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumRolesByDnnBBForum', because it does not exist or you do not have permission.
Cannot find the object 'Store_ShippingRates_GetShippingRates', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserThreadsGetByThread', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumAdd', because it does not exist or you do not have permission.
Cannot find the object 'AddBanner', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_PollDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetRolesByUser', because it does not exist or you do not have permission.
Cannot find the object 'AddFolderPermission', because it does not exist or you do not have permission.
Cannot find the object 'GetTabModuleSetting', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetBlogsByUserName', because it does not exist or you do not have permission.
Cannot find the object 'GetEnabledAuthenticationServices', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumRolesByRoles', because it does not exist or you do not have permission.
Cannot find the object 'Store_ShippingRates_UpdateShippingRate', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserThreadsGetByUser', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetAllTabsModules', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetMaps_ByProviderName', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_AnswerDelete', because it does not exist or you do not have permission.
Cannot find the object 'UpdateFolderPermission', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog5', because it does not exist or you do not have permission.
Cannot find the object 'Blog_ListEntriesByBlog', because it does not exist or you do not have permission.
Cannot find the object 'GetSkinPackageByPackageID', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumRolesGetAll', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetNewProducts', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserThreadsList', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumDelete', because it does not exist or you do not have permission.
Cannot find the object 'Map_UpdateMap', because it does not exist or you do not have permission.
Cannot find the object 'Forum_GroupDelete', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_PollGetOrphans', because it does not exist or you do not have permission.
Cannot find the object 'EventsLocationList', because it does not exist or you do not have permission.
Cannot find the object 'AddFolder', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetBlogByUserName', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSearchItemWordPosition', because it does not exist or you do not have permission.
Cannot find the object 'GetUserByAuthToken', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSkin', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumRolesByUser', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetPortalNewProducts', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumGet', because it does not exist or you do not have permission.
Cannot find the object 'GetDefaultLanguageByModule', because it does not exist or you do not have permission.
Cannot find the object 'Map_AddMap', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Polls_AnswerUpdate', because it does not exist or you do not have permission.
Cannot find the object 'UpdateFolder', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetBlogDaysformonth', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumGetForumsInGroup', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumDeleteAll', because it does not exist or you do not have permission.
Cannot find the object 'Map_DeleteMap', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Subscriptions_PostApproved', because it does not exist or you do not have permission.
Cannot find the object 'EventsMasterAssignedModules', because it does not exist or you do not have permission.
Cannot find the object 'AddModuleControl', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetBlogMonths', because it does not exist or you do not have permission.
Cannot find the object 'GetEventLogPendingNotifConfig', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumDeleteNonActive', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetMap', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_GetUserNewMessageCount', because it does not exist or you do not have permission.
Cannot find the object 'EventsMasterAvailableModules', because it does not exist or you do not have permission.
Cannot find the object 'UpdateModuleControl', because it does not exist or you do not have permission.
Cannot find the object 'Blog_GetBlogViewEntryModuleID', because it does not exist or you do not have permission.
Cannot find the object 'GetTabModuleSettings', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumGetAll', because it does not exist or you do not have permission.
Cannot find the object 'GetFolderPermissionsByPortal', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetMaps', because it does not exist or you do not have permission.
Cannot find the object 'Forum_GroupSortOrderUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Subscriptions_NewThread', because it does not exist or you do not have permission.
Cannot find the object 'AddModuleDefinition', because it does not exist or you do not have permission.
Cannot find the object 'DeleteEventLogConfig', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetProvidersByType', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Subscriptions_ModPostToModerate', because it does not exist or you do not have permission.
Cannot find the object 'EventsMasterGet', because it does not exist or you do not have permission.
Cannot find the object 'UpdateModuleDefinition', because it does not exist or you do not have permission.
Cannot find the object 'DeleteDesktopModule', because it does not exist or you do not have permission.
Cannot find the object 'grmGetSingleRepositoryObject', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumUpdatePosts', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetProvider', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Subscriptions_ModPostDeleted', because it does not exist or you do not have permission.
Cannot find the object 'EventsMasterSave', because it does not exist or you do not have permission.
Cannot find the object 'FindDatabaseVersion', because it does not exist or you do not have permission.
Cannot find the object 'DeleteModuleDefinition', because it does not exist or you do not have permission.
Cannot find the object 'grmGetRepositoryObjects', because it does not exist or you do not have permission.
Cannot find the object 'GetDesktopModuleByFriendlyName', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetSources_ByProviderName', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Subscriptions_ModPostAbuse', because it does not exist or you do not have permission.
Cannot find the object 'GetUser', because it does not exist or you do not have permission.
Cannot find the object 'EventsModerateEvents', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ThreadStatusChange', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSearchItemWord', because it does not exist or you do not have permission.
Cannot find the object 'Store_Products_GetPortalAllProducts', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetPoints_ByProviderName_NoGeo', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Post_Delete', because it does not exist or you do not have permission.
Cannot find the object 'EventsModerateSignups', because it does not exist or you do not have permission.
Cannot find the object 'Forum_ModeratePostApprove', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchItemWordBySearchItem', because it does not exist or you do not have permission.
Cannot find the object 'grmAddRepositoryComment', because it does not exist or you do not have permission.
Cannot find the object 'GetLists', because it does not exist or you do not have permission.
Cannot find the object 'GetModuleDefinitionByName', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetSyncUsers', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Moderate_PostDelete', because it does not exist or you do not have permission.
Cannot find the object 'EventsNotificationDelete', because it does not exist or you do not have permission.
Cannot find the object 'DeletePackage', because it does not exist or you do not have permission.
Cannot find the object 'grmDeleteRepositoryComment', because it does not exist or you do not have permission.
Cannot find the object 'GetList', because it does not exist or you do not have permission.
Cannot find the object 'GetUrlTracking', because it does not exist or you do not have permission.
Cannot find the object 'Map_AddSource', because it does not exist or you do not have permission.
Cannot find the object 'Forum_AA_UserPostCountUpdate', because it does not exist or you do not have permission.
Cannot find the object 'grmGetRepositoryComments', because it does not exist or you do not have permission.
Cannot find the object 'Map_DeleteSource', because it does not exist or you do not have permission.
Cannot find the object 'Forum_AA_ForumPostCountUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DeleteUrlTracking', because it does not exist or you do not have permission.
Cannot find the object 'DeleteUrl', because it does not exist or you do not have permission.
Cannot find the object 'grmGetSingleRepositoryComment', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserThreadsAdd', because it does not exist or you do not have permission.
Cannot find the object 'GetListEntry', because it does not exist or you do not have permission.
Cannot find the object 'GetDesktopModule', because it does not exist or you do not have permission.
Cannot find the object 'Map_UpdateSource', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Thread_Split', because it does not exist or you do not have permission.
Cannot find the object 'DeletePortalInfo', because it does not exist or you do not have permission.
Cannot find the object 'GetScheduleByScheduleID', because it does not exist or you do not have permission.
Cannot find the object 'grmUpdateRepositoryComment', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserThreadsGet', because it does not exist or you do not have permission.
Cannot find the object 'UpdateBannerClickThrough', because it does not exist or you do not have permission.
Cannot find the object 'Map_UpdateSource_Service', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Thread_GetAll', because it does not exist or you do not have permission.
Cannot find the object 'GetUserByUsername', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskGetNext', because it does not exist or you do not have permission.
Cannot find the object 'UpdateEventLogType', because it does not exist or you do not have permission.
Cannot find the object 'GetPackage', because it does not exist or you do not have permission.
Cannot find the object 'DeleteLanguage', because it does not exist or you do not have permission.
Cannot find the object 'Forum_UserThreadsUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumTrackingAdd', because it does not exist or you do not have permission.
Cannot find the object 'DeleteList', because it does not exist or you do not have permission.
Cannot find the object 'IsUserInRole', because it does not exist or you do not have permission.
Cannot find the object 'Map_UpdateSourceGeoLocator', because it does not exist or you do not have permission.
Cannot find the object 'EventsPPErrorLogAdd', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskGet', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSearchItemWord', because it does not exist or you do not have permission.
Cannot find the object 'AddContact', because it does not exist or you do not have permission.
Cannot find the object 'GetLanguages', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumTrackingDelete', because it does not exist or you do not have permission.
Cannot find the object 'UpdatePortalSetup', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetSource', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskEmailsGetIncomplete', because it does not exist or you do not have permission.
Cannot find the object 'AddTab', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSearchItem', because it does not exist or you do not have permission.
Cannot find the object 'UnRegisterAssembly', because it does not exist or you do not have permission.
Cannot find the object 'DeleteContact', because it does not exist or you do not have permission.
Cannot find the object 'GetLanguagesByPortal', because it does not exist or you do not have permission.
Cannot find the object 'Help_CategorySetInvisible', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumTrackingGet', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetSources', because it does not exist or you do not have permission.
Cannot find the object 'DeleteDocumentsSettings', because it does not exist or you do not have permission.
Cannot find the object 'DeletePropertyDefinition', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskEmailsToSendGet', because it does not exist or you do not have permission.
Cannot find the object 'UpdateTab', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchWords', because it does not exist or you do not have permission.
Cannot find the object 'GetContact', because it does not exist or you do not have permission.
Cannot find the object 'Help_CategorySetLevel', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBForumTrackingByDnnBBForum', because it does not exist or you do not have permission.
Cannot find the object 'UpdateOnlineUser', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetSource_Service', because it does not exist or you do not have permission.
Cannot find the object 'GetDocumentsSettings', because it does not exist or you do not have permission.
Cannot find the object 'GetPropertyDefinition', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskEmailsSendStatusUpdate', because it does not exist or you do not have permission.
Cannot find the object 'UpdateTabOrder', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog8', because it does not exist or you do not have permission.
Cannot find the object 'GetContacts', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_AddRow', because it does not exist or you do not have permission.
Cannot find the object 'Help_DeleteCategory', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupAdd', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetPoints_ByLocation', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskCompleted', because it does not exist or you do not have permission.
Cannot find the object 'AddRole', because it does not exist or you do not have permission.
Cannot find the object 'AddAffiliate', because it does not exist or you do not have permission.
Cannot find the object 'UpdateContact', because it does not exist or you do not have permission.
Cannot find the object 'DeletePortalLanguages', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_DeleteData', because it does not exist or you do not have permission.
Cannot find the object 'Help_DeleteTutorial', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetPoints', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskMarkFailed', because it does not exist or you do not have permission.
Cannot find the object 'UpdateRole', because it does not exist or you do not have permission.
Cannot find the object 'GetPackageType', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_DeleteField', because it does not exist or you do not have permission.
Cannot find the object 'Help_GetTutorial', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetTabPermissionsByTabID', because it does not exist or you do not have permission.
Cannot find the object 'UpdateModuleOrder', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetPoints_NoLocation', because it does not exist or you do not have permission.
Cannot find the object 'AddDocument', because it does not exist or you do not have permission.
Cannot find the object 'AddDefaultPropertyDefinitions', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskStart', because it does not exist or you do not have permission.
Cannot find the object 'AddRoleGroup', because it does not exist or you do not have permission.
Cannot find the object 'GetAllProfiles', because it does not exist or you do not have permission.
Cannot find the object 'DeleteLanguagePack', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_DeleteRow', because it does not exist or you do not have permission.
Cannot find the object 'Help_ListCategory', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupGet', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetPoint_ByGUID', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskScheduleItemIDGet', because it does not exist or you do not have permission.
Cannot find the object 'UpdateRoleGroup', because it does not exist or you do not have permission.
Cannot find the object 'GetEventLogByLogGUID', because it does not exist or you do not have permission.
Cannot find the object 'GetLanguagePackByPackage', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_GetData', because it does not exist or you do not have permission.
Cannot find the object 'Help_ListCategoryActive', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupGetAll', because it does not exist or you do not have permission.
Cannot find the object 'Map_AddPoint', because it does not exist or you do not have permission.
Cannot find the object 'GetOnlineUser', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskAdd', because it does not exist or you do not have permission.
Cannot find the object 'UpdateUser', because it does not exist or you do not have permission.
Cannot find the object 'AddMessage', because it does not exist or you do not have permission.
Cannot find the object 'Help_ListCategoryActiveByParent', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupGetInModule', because it does not exist or you do not have permission.
Cannot find the object 'UpdateUrlTracking', because it does not exist or you do not have permission.
Cannot find the object 'Map_UpdatePoint', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskCleanTasks', because it does not exist or you do not have permission.
Cannot find the object 'DeleteMessage', because it does not exist or you do not have permission.
Cannot find the object 'GetPackages', because it does not exist or you do not have permission.
Cannot find the object 'Help_ListTutorial', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupGetActiveInModule', because it does not exist or you do not have permission.
Cannot find the object 'Map_UpdatePoint_Location', because it does not exist or you do not have permission.
Cannot find the object 'EventsTimeZoneUpgrade', because it does not exist or you do not have permission.
Cannot find the object 'Forum_EmailQueue_TaskCleanEmails', because it does not exist or you do not have permission.
Cannot find the object 'UpdateSearchWord', because it does not exist or you do not have permission.
Cannot find the object 'UpdateAffiliateStats', because it does not exist or you do not have permission.
Cannot find the object 'GetMessage', because it does not exist or you do not have permission.
Cannot find the object 'GetPackagesByType', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_GetRow', because it does not exist or you do not have permission.
Cannot find the object 'Help_TutorialAddToCategory', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupForumAdd', because it does not exist or you do not have permission.
Cannot find the object 'Map_GetPoint_ByAddress', because it does not exist or you do not have permission.
Cannot find the object 'GetMessageByParentId', because it does not exist or you do not have permission.
Cannot find the object 'UserDefinedTable_GetRows', because it does not exist or you do not have permission.
Cannot find the object 'Help_TutorialCategoryList', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupForumUpdate', because it does not exist or you do not have permission.
Cannot find the object 'GetSuperUsers', because it does not exist or you do not have permission.
Cannot find the object 'Map_DeletePoints', because it does not exist or you do not have permission.
Cannot find the object 'EventsSave', because it does not exist or you do not have permission.
Cannot find the object 'GetSiteLog4', because it does not exist or you do not have permission.
Cannot find the object 'GetPortalRoles', because it does not exist or you do not have permission.
Cannot find the object 'GetTopLevelMessages', because it does not exist or you do not have permission.
Cannot find the object 'Help_TutorialDeleteCategory', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupForumDelete', because it does not exist or you do not have permission.
Cannot find the object 'AddDocumentsSettings', because it does not exist or you do not have permission.
Cannot find the object 'GetUserProfile', because it does not exist or you do not have permission.
Cannot find the object 'GetDesktopModuleByModuleName', because it does not exist or you do not have permission.
Cannot find the object 'DeleteTabModule', because it does not exist or you do not have permission.
Cannot find the object 'DeleteModuleControl', because it does not exist or you do not have permission.
Cannot find the object 'DeleteModulePermissionsByUserID', because it does not exist or you do not have permission.
Cannot find the object 'GetThreadMessages', because it does not exist or you do not have permission.
Cannot find the object 'Help_UpdateCategory', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupForumGet', because it does not exist or you do not have permission.
Cannot find the object 'DeleteBanner', because it does not exist or you do not have permission.
Cannot find the object 'UpdateDocumentsSettings', because it does not exist or you do not have permission.
Cannot find the object 'UpdateUserProfileProperty', because it does not exist or you do not have permission.
Cannot find the object 'EventsGetByRange', because it does not exist or you do not have permission.
Cannot find the object 'RestoreTabModule', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchItemWordPositionBySearchItemWord', because it does not exist or you do not have permission.
Cannot find the object 'DeleteTabPermissionsByUserID', because it does not exist or you do not have permission.
Cannot find the object 'UpdateMessage', because it does not exist or you do not have permission.
Cannot find the object 'Help_UpdateTutorial', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupForumByDnnBBForum', because it does not exist or you do not have permission.
Cannot find the object 'GetDocument', because it does not exist or you do not have permission.
Cannot find the object 'EventsDelete', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_ListBlogs', because it does not exist or you do not have permission.
Cannot find the object 'DeleteFolderPermissionsByUserID', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchItems', because it does not exist or you do not have permission.
Cannot find the object 'Help_UpdateTutorialViewOrder', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupForumByDnnBBGroup', because it does not exist or you do not have permission.
Cannot find the object 'UpdateVendor', because it does not exist or you do not have permission.
Cannot find the object 'GetDocuments', because it does not exist or you do not have permission.
Cannot find the object 'EventsMasterDelete', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_DeleteBlog', because it does not exist or you do not have permission.
Cannot find the object 'DeleteSearchWord', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchResults', because it does not exist or you do not have permission.
Cannot find the object 'Help_GetCategoryModules', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupForumGetAll', because it does not exist or you do not have permission.
Cannot find the object 'GetHostSetting', because it does not exist or you do not have permission.
Cannot find the object 'UpdateDocument', because it does not exist or you do not have permission.
Cannot find the object 'EventsSignupsDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetServers', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_ListEntriesByBlog', because it does not exist or you do not have permission.
Cannot find the object 'AddScheduleHistory', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchSettings', because it does not exist or you do not have permission.
Cannot find the object 'Help_AddCategory', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupModuleAdd', because it does not exist or you do not have permission.
Cannot find the object 'DeleteDocument', because it does not exist or you do not have permission.
Cannot find the object 'GetAllFiles', because it does not exist or you do not have permission.
Cannot find the object 'Forum_AA_PM_ThreadUpdate', because it does not exist or you do not have permission.
Cannot find the object 'UpdateServerActivity', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_DeleteEntry', because it does not exist or you do not have permission.
Cannot find the object 'GetScheduleByTypeFullName', because it does not exist or you do not have permission.
Cannot find the object 'DeleteAuthentication', because it does not exist or you do not have permission.
Cannot find the object 'Help_AddCategoryFromImport', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupModuleUpdate', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PostSortOrderGet', because it does not exist or you do not have permission.
Cannot find the object 'GetFile', because it does not exist or you do not have permission.
Cannot find the object 'UpdateServer', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_ListComments', because it does not exist or you do not have permission.
Cannot find the object 'GetSystemMessages', because it does not exist or you do not have permission.
Cannot find the object 'PurgeEventLog', because it does not exist or you do not have permission.
Cannot find the object 'GetRoleGroupByName', because it does not exist or you do not have permission.
Cannot find the object 'Help_AddTutorialFromImport', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupModuleDelete', because it does not exist or you do not have permission.
Cannot find the object 'GetFiles', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_ReadsAdd', because it does not exist or you do not have permission.
Cannot find the object 'GetServerConfiguration', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_DeleteComment', because it does not exist or you do not have permission.
Cannot find the object 'GetSkins', because it does not exist or you do not have permission.
Cannot find the object 'Help_AddTutorial', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupModuleGet', because it does not exist or you do not have permission.
Cannot find the object 'DeleteListEntryByID', because it does not exist or you do not have permission.
Cannot find the object 'GetFileById', because it does not exist or you do not have permission.
Cannot find the object 'EventsSignupsSave', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_ReadsUpdate', because it does not exist or you do not have permission.
Cannot find the object 'DeleteUserPortal', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_UpdateModuleDefId', because it does not exist or you do not have permission.
Cannot find the object 'GetBanner', because it does not exist or you do not have permission.
Cannot find the object 'UpdatePortalAliasOnInstall', because it does not exist or you do not have permission.
Cannot find the object 'Help_CategorySetVisibility', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupModuleByDnnBBGroup', because it does not exist or you do not have permission.
Cannot find the object 'EventsLocationDelete', because it does not exist or you do not have permission.
Cannot find the object 'Forum_PM_ReadsGet', because it does not exist or you do not have permission.
Cannot find the object 'GetUnAuthorizedUsers', because it does not exist or you do not have permission.
Cannot find the object 'Blog_Upgrade_GetSettings', because it does not exist or you do not have permission.
Cannot find the object 'GetSearchItemWordPosition', because it does not exist or you do not have permission.
Cannot find the object 'Help_GetCategory', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupModuleByModules', because it does not exist or you do not have permission.
Cannot find the object 'AddEventMessage', because it does not exist or you do not have permission.
Cannot find the object 'DeleteTab', because it does not exist or you do not have permission.
Cannot find the object 'EventsLocationGet', because it does not exist or you do not have permission.
Cannot find the object 'Forum_Tracking_ForumDeleteAll', because it does not exist or you do not have permission.
Cannot find the object 'GetTabsByModuleID', because it does not exist or you do not have permission.
Cannot find the object 'GetScheduleNextTask', because it does not exist or you do not have permission.
Cannot find the object 'Help_SearchTutorials', because it does not exist or you do not have permission.
Cannot find the object 'DnnBBGroupModuleGetAll', because it does not exist or you do not have permission.
Cannot find the object 'GetEventMessages', because it does not exist or you do not have permission.
Cannot find the object 'GetTabModuleOrder', because it does not exist or you do not have permission.
Cannot find the object 'UpdateFileContent', because it does not exist or you do not have permission.
Cannot find the object 'EventsLocationSave', because it does not exist or you do not have permission.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(SqlConnection connection, CommandType commandType, String commandText, SqlParameter[] commandParameters)
at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText, SqlParameter[] commandParameters)
at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText)
at DotNetNuke.Data.SqlDataProvider.GrantStoredProceduresPermission(String Permission, String LoginOrRole)
if exists (select * from dbo.sysusers where name='dbo169059670') begin declare @exec nvarchar(2000) declare @name varchar(150) declare sp_cursor cursor for select o.name as name from dbo.sysobjects o where ( OBJECTPROPERTY(o.id, N'IsProcedure') = 1 or OBJECTPROPERTY(o.id, N'IsExtendedProc') = 1 or OBJECTPROPERTY(o.id, N'IsReplProc') = 1 ) and OBJECTPROPERTY(o.id, N'IsMSShipped') = 0 and o.name not like N'#%%' and (left(o.name,len('')) = '' or left(o.name,7) = 'aspnet_') open sp_cursor fetch sp_cursor into @name while @@fetch_status >= 0 begin select @exec = 'grant EXECUTE on ' + @name + ' to [dbo169059670]' execute (@exec) fetch sp_cursor into @name end deallocate sp_cursor end
System.Data.SqlClient.SqlException: Cannot find the object 'grmAttributeCount', because it does not exist or you do not have permission.
Cannot find the object 'grmCheckAllAttributes', because it does not exist or you do not have permission.
Cannot find the object 'Map_DistanceBetweenPoints', because it does not exist or you do not have permission.
Cannot find the object 'Map_LatFromDistanceBearing', because it does not exist or you do not have permission.
Cannot find the object 'Map_LonFromDistanceBearing', because it does not exist or you do not have permission.
Cannot find the object 'fn_GetVersion', because it does not exist or you do not have permission.
Cannot find the object 'SplitIDs', because it does not exist or you do not have permission.
Cannot find the object 'Map_CalculateDistance', because it does not exist or you do not have permission.
Cannot find the object 'grmParseDelimitedStrings', because it does not exist or you do not have permission.
Cannot find the object 'GetListParentKey', because it does not exist or you do not have permission.
Cannot find the object 'grmGetCategoryItemCount', because it does not exist or you do not have permission.
Cannot find the object 'GetProfilePropertyDefinitionID', because it does not exist or you do not have permission.
Cannot find the object 'GetProfileElement', because it does not exist or you do not have permission.
Cannot find the object 'GetElement', because it does not exist or you do not have permission.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async)
at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe)
at System.Data.SqlClient.SqlCommand.ExecuteNonQuery()
at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(SqlConnection connection, CommandType commandType, String commandText, SqlParameter[] commandParameters)
at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText, SqlParameter[] commandParameters)
at Microsoft.ApplicationBlocks.Data.SqlHelper.ExecuteNonQuery(String connectionString, CommandType commandType, String commandText)
at DotNetNuke.Data.SqlDataProvider.GrantUserDefinedFunctionsPermission(String ScalarPermission, String TablePermission, String LoginOrRole)
if exists (select * from dbo.sysusers where name='dbo169059670') begin declare @exec nvarchar(2000) declare @name varchar(150) declare @isscalarfunction int declare @istablefunction int declare sp_cursor cursor for select o.name as name, OBJECTPROPERTY(o.id, N'IsScalarFunction') as IsScalarFunction from dbo.sysobjects o where ( OBJECTPROPERTY(o.id, N'IsScalarFunction') = 1 OR OBJECTPROPERTY(o.id, N'IsTableFunction') = 1 ) and OBJECTPROPERTY(o.id, N'IsMSShipped') = 0 and o.name not like N'#%%' and (left(o.name,len('')) = '' or left(o.name,7) = 'aspnet_') open sp_cursor fetch sp_cursor into @name, @isscalarfunction while @@fetch_status >= 0 begin if @IsScalarFunction = 1 begin select @exec = 'grant EXECUTE on ' + @name + ' to [dbo169059670]' execute (@exec) fetch sp_cursor into @name, @isscalarfunction end else begin select @exec = 'grant SELECT on ' + @name + ' to [dbo169059670]' execute (@exec) fetch sp_cursor into @name, @isscalarfunction end end deallocate sp_cursor end