ServiceDesk

 View Only

How to Restore a Tab in the Process Manager After It Has Been Deleted 

Mar 11, 2011 11:03 AM

The Process Manager is highly customizable and will allow users to edit, add and delete pages. In some cases, pages may be unintentionally deleted. The process below can be used to recover pages, but will not necessarily work in all cases. When a Process manager page has been deleted, attempting to browse to it will return an error like this:

(Click image for larger view)

The above error contains a GUID (the alphanumeric string) that identifies the missing page. In most cases, the missing page still exists in the Ensemble database. Below is a SQL query to locate the page. As with any SQL query, you should backup your SQL database before running this.

select * from PageDefinition where PageID = "GUID"

Please note that the GUID (without quotes) needs to replace "GUID" in the above query. If this returns values, note the entry in the MenuName column for that item. After that, run the following SQL query to restore the page. As with any SQL query, you should backup your SQL database before running this.

UPDATE PageDefinition
SET IncludeInMenu=1
where MenuName = 'MenuName value'

In this query, please replace 'MenuName value' with the entry from the MenuName column in single quotes. Run this and check to see if the page is available. 

Statistics
0 Favorited
0 Views
0 Files
0 Shares
0 Downloads

Tags and Keywords

Related Entries and Links

No Related Resource entered.