We wanted to change the field size of the item description to 250. A client needs to do so for searching capabilities on complex parts. After changing this field, and fields in other talbes, I soon realized that there are many functions in the system that use the description as a parameter being passed in.
Does anyone have an easy way of determining where all of these functions are, and how to easily change them all?
Mike
0
Comments
- You must search "Where used..." and set "Set all".
- Then you get many many results.
- With these results you do (see #1) until you think that you have all found :roll:
I know, this is a hard way, but it is the only way to find all.We have extended the item description from 30 to 50. So we could stop the search at the sales line. This was hard enough. :x
Microsoft Dynamics NAV Developer since 1997
MSDynamics.de - German Microsoft Dynamics Community - member of [clip]
With this tool you will be able to get a overview of all field, functions and others that have to be changed to get a description of 250 working.
btw, maybe it's better to solve this problem by using ext. texts instead of expanding the description field!!!
If it was hard to write, it should be hard to understand."
It's easier to write a codeunit which will help you to manage many Ext. text lines wherever you need than to extend the description field(s).
Another problem will be how to print 250 characters in one field.
Microsoft Dynamics NAV Developer since 1997
MSDynamics.de - German Microsoft Dynamics Community - member of [clip]
Mike
But what you could do is the folllowing
make 2 sections, 1 for all tekst shorter then (for example) 50, and one for over 50. Make the text box for the more-then-50-textbox a multiline box. Print the first if strlen <= 50, the otherone when strlen > 50.
But!
due to a little bug in navision, it is better not to use the showoutput command. Better to create 2 new integers, one for under and one for over 50. Then break the dataitem if ness.
btw, what does "Full ACK " mean?
If it was hard to write, it should be hard to understand."
Microsoft Dynamics NAV Developer since 1997
MSDynamics.de - German Microsoft Dynamics Community - member of [clip]