Tuesday, February 10, 2009

Delete MAXIMO 6.0 Custom APPS

to delete maximo custom apps

open your favorite SQL IDE and connect as MAXIMO execute the folowing sql statements

delete from maxpresentation where app = 'APPNAME';
delete from appfielddefaults where app = 'APPNAME';
delete from maxlabels where app = 'APPNAME';
delete from maxmenu where moduleapp = 'APPNAME' or (menutype='MODULE' and elementtype='APP' and keyvalue='APPNAME');
delete from sigoption where app = 'APPNAME';
delete from applicationauth where app = 'APPNAME';
delete from query where app = 'APPNAME';
delete from defaultquery where app = 'APPNAME';
delete from wfapptoolbar where appname = 'APPNAME';
delete from excludedactions where app = 'APPNAME';
delete from maxapps where app = 'APPNAME';
delete from appdoctype where app= 'APPNAME';

replace APPNAME with the name of the application you want to delete.

My First Maximo

This blog would be my respository for work arrounds, notes regarding IBM MAXIMO development