For my use only don't use this without understanding what you are doing. I had a bunch of old MDS features in my menu which was causing our menu to collapse on login. (The collapse feature was set to not persist so the users had no way of fixing this). Instead of writing code or purging all settings from MDS for that page I decided on a data fix. Forgive my sql skills this was a quick and dirty. SCHEMA: ???_MDS TABLE : MDS_ATTRIBUTES - this is where all the mds configuration is kept for each item and attribute. TABLE : MDS_PATHS - this is where the file name for the resource you are looking for is kept. (ie page.jsff) you can also find the user in the path so you can do this for a specific user. DECLARE v_content_id MDS_PATHS.PATH_CONTENTID%TYPE; v_col_seq MDS_ATTRIBUTES.ATT_COMP_SEQ%TYPE; CURSOR v_path_cursor IS SELECT pa.PATH_CONTENTID FROM MDS_PATHS pa WHERE pa.PATH_PARTITION_ID = 3 AND PA....
The Incident Archive: A blog to store my knowledge on the errors that I fix on a daily basis