Flashes (Alerts)
Abstract
After removing the quick insert section, it still appears when a user logs in.
Content
Pulled up a security group and completely removed the start center from the group by clearing the "Start Center Template" field. Then log out of the system and then log back in as a user that has this group assigned to their profile. You could still see the start center that had just been removed. For some reason, any changes that are made to start centers are not showing up.
Workaround: Using 37 as the Test Template ID
/** 37 is the Test Template ID, the ID can be found when Modify A Template is displayed **/
select scconfigid, description, userid, groupname from scconfig where sctemplateid='37'
/** Replace the 37 with the template id that has been modified **/
delete from faconfig where layoutid in (select layoutid from layout where scconfigid in (select scconfigid from scconfig where sctemplateid='37'))
delete from actionscfg where layoutid in (select layoutid from layout where scconfigid in (select scconfigid from scconfig where sctemplateid='37'))
delete from inbxconfig where layoutid in (select layoutid from layout where scconfigid in (select scconfigid from scconfig where sctemplateid='37'))
delete from kpigconfig where layoutid in (select layoutid from layout where scconfigid in (select scconfigid from scconfig where sctemplateid='37'))
delete from kpilconfig where layoutid in (select layoutid from layout where scconfigid in (select scconfigid from scconfig where sctemplateid='37'))
delete from rsconfig where layoutid in (select layoutid from layout where scconfigid in (select scconfigid from scconfig where sctemplateid='37'))
delete from layout where scconfigid in (select scconfigid from scconfig where sctemplateid='37')
delete from scconfig where sctemplateid='37'
Product Synonym
Maximo
Was this topic helpful?
Document Information
Modified date:
25 September 2022
UID
swg21295907