Hi There!
I'm involved in a migration project... the old system item table has CHAR(80) for item description... navision has only 30! I'll been looking around and it seems to me that it can be up to 50, based on other tables that store the description also...
Is there anybody with a Text:80 in the description without problems? or, what are the collateral effects if I set Item.Descript¡on up to 80?
Thansk a lot
Juan
0
Comments
You can use the Navision Developers Toolkit to find out where Item.Description is being used in the application. This are the area's where most likely some changes needs to be made as well.
To avoid this mods: create a new field Item.FullDescription with the required length and copy that to the tables where you need this info.
divide up you current description -
Description 1 & 2 will allow you 60 characters.
you can combine them again anywhere
ex/
SourceExpr | Item."Description"+' '+Item."Description 2"
Our old system also required more than 60, but we used to add the Vendor_Item_no in the description also. Thank goodness it has a seperate space for that. It allowed us to then:
SourceExpr | Item."Description"+' '+Item."Description 2"+'#'+Item."Vendor Item No."
and put us right back where we wanted to be. There is probably a post in this forum somewhere about "string length"
http://www.BiloBeauty.com
http://www.autismspeaks.org
All in all, several days work if you want to do it properly and your upgradability pretty much goes out of the window. You will also have problems with your reports where you can use the multiline propery to have the description printed over more than one line, but then it reserves space even for those items with short descriptions. Even that can be solved, but I won't bore you with that.
We had valid reasons to go through all of this pain, but it is only fair you know what you are letting yourself in for
Regards
Meint
If you go this route you may want to add a function to the SO / PO line to automatically expand the text.
Those of you who think you know everything are annoying to those of us who do. -
David Brent
RIS Plus, LLC