Kbase P10336: Not all menu structures listed in Object Menu Structures in Dynamics
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  10/16/2008 |
|
Status: Unverified
FACT(s) (Environment):
Dynamics 2.0a
SYMPTOM(s):
Not all menu structures listed in Object Menu Structures
In the container builder, if the object menu structures dialog is opened and the lookup on the Menu Structure field invoked then not all menu structures are listed, some missing, eg. Dynamics Build
CAUSE:
Bug# 20021113-016
FIX:
Upgrade to Dynamics 2.0A01,2.1A or 10.0A or above
Looking in the query of the lookup in ryobjmnusr.w the code is:
FOR EACH gsm_menu_structure NO-LOCK,
FIRST gsc_product_module NO-LOCK
WHERE gsc_product_module.product_module_obj = gsm_menu_structure.product_module_obj,
FIRST gsc_product NO-LOCK
WHERE gsc_product.product_obj = gsc_product_module.product_obj
AND TRUE = TRUE
OR (NOT TRUE = TRUE
AND NOT (gsc_product.product_code BEGINS '090':U)),
Which means that for some entries which have a gsm_menu_structure.product_module_obj of 0.0 are not included in the lookup. Not sure why some menus should have a value of 0.0 but if a gsc_product and a gsc_product_module are created with an obj of 0.0 then the lookup includes these
entries so this is a workaround though an issue has been logged.