-- FR [2975307] - AD_Menu_Trl overwritten by AD_Window

-- https://sourceforge.net/tracker/index.php?func=detail&aid=2975307&group_id=176962&atid=879335
-- Summary Menu items must not be Centrally maintained as they can't be synchronized with any other element.
This commit is contained in:
trifonnt 2010-03-24 13:48:35 +00:00
parent de26bf1d00
commit d7fcea5dff
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,15 @@
-- FR [2975307] - AD_Menu_Trl overwritten by AD_Window
-- https://sourceforge.net/tracker/index.php?func=detail&aid=2975307&group_id=176962&atid=879335
-- Summary Menu items must not be Centrally maintained as they can't be synchronized with any other element.
UPDATE AD_Menu
SET IsCentrallyMaintained = 'N'
WHERE AD_Menu_ID IN
(SELECT AD_Menu_ID FROM AD_Menu
WHERE (AD_Window_ID IS NULL
AND AD_Process_ID IS NULL
AND AD_Form_ID IS NULL
AND AD_Workflow_ID IS NULL
AND AD_Task_ID IS NULL)
)
;

View File

@ -0,0 +1,15 @@
-- FR [2975307] - AD_Menu_Trl overwritten by AD_Window
-- https://sourceforge.net/tracker/index.php?func=detail&aid=2975307&group_id=176962&atid=879335
-- Summary Menu items must not be Centrally maintained as they can't be synchronized with any other element.
UPDATE AD_Menu
SET IsCentrallyMaintained = 'N'
WHERE AD_Menu_ID IN
(SELECT AD_Menu_ID FROM AD_Menu
WHERE (AD_Window_ID IS NULL
AND AD_Process_ID IS NULL
AND AD_Form_ID IS NULL
AND AD_Workflow_ID IS NULL
AND AD_Task_ID IS NULL)
)
;