I'm currently migrating our older version of Great Plains to the newest version of 10.0. Way back when we added a Extra's menu on the startup script in the following way:
set l_result to Trigger_RegisterForm(form
Cards_Financial_Palette,
"PA Extras Application", "", script
PA_Main_Menu);
if l_result<>SY_NOERR then
warning "Form trigger registration failed.";
if l_result=LOCKED then
warning "This recrod has been locked";
else
warning "This error came from the Startup
Script";
end if;
end if;
This would allow the user to go to "Cards" then Financial and see an "Extra's" menu that all the custom forms would hang off of. Worked great for years.
For the life of me I can't see how this is done in the newest version of 10.0. The menu structure is very different but all I want to do is hang a few menus in there own area. Any suggestions on how to achive this wouild be greatly appreciated.
set l_result to Trigger_RegisterForm(form
Cards_Financial_Palette,
"PA Extras Application", "", script
PA_Main_Menu);
if l_result<>SY_NOERR then
warning "Form trigger registration failed.";
if l_result=LOCKED then
warning "This recrod has been locked";
else
warning "This error came from the Startup
Script";
end if;
end if;
This would allow the user to go to "Cards" then Financial and see an "Extra's" menu that all the custom forms would hang off of. Worked great for years.
For the life of me I can't see how this is done in the newest version of 10.0. The menu structure is very different but all I want to do is hang a few menus in there own area. Any suggestions on how to achive this wouild be greatly appreciated.