Having supported the various customization tools over the years, you run into common requests again and again. Something that often surprises me is that you get requests to 'customize' Dynamics GP to make it do something and as it turns out Dynamics GP already does this out of the box.
To be sure, this isn't an everyday occurrence and sometimes the requested tweak is fairly obscure in Dynamics- but not always.
I was able to come up with a couple customizations that I've been requested to do several times - either as support cases or as consulting - that the end user can do themselves in the system without a customization. I'm sure there are more - these just came readily to mind. If I think of any others, I'll amend this post to include them for future reference.
Scenario 1: I need to be able to change the menu item names in Dynamics.
If you want any menu item name changed, then you can use the Toolbar Customization window in Dynamics GP to change this. Use Layout Icon on the Navigation Pane | Toolbars | Customize to open the window.
There are a couple of drawbacks to this method however.
Scenario 2: I need to change the Internet Information categories in the Internet Information window from what Dynamics GP uses.
This actually is a set up issue in Dynamics GP. In Dynamics GP, we default the names as you see them in this window when you create your company. However these values can be changed by the end user using the Internet User Defined Setup window.
Open this window by choosing Microsoft Dynamics GP | Tools | Setup | Company | Company. In the Company Setup window, choose the Internet User Defined button to open the Internet User Defined Setup prompt values.
Scenario 3: I need to change the User Defined 1 prompt in the Customer Address Maintenance window to a specific value.
OK, you got me on this one. For some reason, there isn't a setup option on this and the prompt is just a static string on the window. So in order to change this you would need a customization of some sort.
Solution 1:
This approach would work fine and you can use the Customization Maintenance window to make a package file in order to import into your other machines that you want to see this changed.
Solution 2:
There is another approach you can use however. You can use VBA to change this prompt.
That is about it. When you open the window again the prompt will now say "Test".
The advantage to this method is that you don't have to change security in order to see the change. And if you really wanted to be cool, you could also make a SQL table to store your prompt name(s). Then in the Window_AfterOpen() event, make a connection to your SQL data and query your table for the name. Then set the Caption property in your code to the value from your query.
Edit: Mariano Gomez brings up a great point about using this technique. It only works if the prompt has been linked to the field. Please see his blog article The importance of linking your fields to their prompts in Microsoft Dexterity for more details.
Patrick
06-Feb-2009: Added link to Mariano Gomez's article on linking prompts.
// Copyright © Microsoft Corporation. All Rights Reserved.// This code released under the terms of the // Microsoft Public License (MS-PL, http://opensource.org/licenses/ms-pl.html.)
Posting from DynamicAccounting.net
http://msdynamicsgp.blogspot.com/2009/01/customizations-that-you-don-need-to-do.html
My friend Jeff Katz from the US Microsoft Dynamics GP Field Team has created a blog post about Partner
Posting from the Dynamics GP Blogster
http://dynamicsgpblogster.blogspot.com/2009/02/developing-for-dynamics-gp-weekly.html
Post from Jivtesh Singh at About Dynamics, Development and Life
www.jivtesh.com/.../dynamics-gp-customizations-best.html
PLEASE READ BEFORE POSTING
Please only post comments relating to the topic of this page.
If you wish to ask a technical question, please use the links in the links section (scroll down, on right hand side) to ask on the Newsgroups or Forums. If you ask on the Newsgroups or Forums, others in the community can respond and the answers are available for everyone in the future.