How expand the Description in Tables.
kiLL
Member Posts: 53
Hi,
I have a Item list from my Client and I have a problem of the "Item description",bec. they are too long to insert to NAV Item Description. Is there a safe to Expand the LEght of Item Descrption in NAV with out affecting other module.Hope you can help me. THNKS
I have a Item list from my Client and I have a problem of the "Item description",bec. they are too long to insert to NAV Item Description. Is there a safe to Expand the LEght of Item Descrption in NAV with out affecting other module.Hope you can help me. THNKS
DEV.Trainee
0
Comments
-
kiLL wrote:Hi,
I have a Item list from my Client and I have a problem of the "Item description",bec. they are too long to insert to NAV Item Description. Is there a safe to Expand the LEght of Item Descrption in NAV with out affecting other module.Hope you can help me. THNKS
In simple terms - "Never do it!"
It would lead to a series of miseries once you change the length.0 -
Ok, but you have any suggestion what I can do? THANKSDEV.Trainee0
-
I guess you would have to lessen the length of string before inserting to the maximum length that NAV accepts. So, you use COPYSTR or something before you try to insert/validate the item description.0
-
Ok, I think ,I have No choice but to cut the lenght :? , before Inserting in to NAV.THANKS very much for your suggestion.DEV.Trainee0
-
If the description is too lengthy, you can split it in 30 characters each for description and description 2 and then import. Excel can do splitting easily. For report you can use both together. You can also use Extended Text functionality.
The issue has been discussed on the forun many times. search and you might find the solution which works your way.CA Sandeep Singla
http://ssdynamics.co.in0 -
What I would do is add a field with the right length and call it "Legacy Description". Just import the values in there, so you can always decide to change it up later, without having to redo the migration.
Then, as stated before, you can use the existing Description and Description 2 fields. For additional space you should really consider adding new fields.0 -
We import many lengthy Item descriptions for new items.
I create a variable in the dataport to accept the large name (mydescription) and then break it up to fit into Desc1 & 2
OnAfterImportRecord()Item.Description := UPPERCASE(COPYSTR(mydescription, 1, 30)); Item."Description 2" := UPPERCASE(COPYSTR(mydescription,31,30));
*Uppercase Optional
0
Categories
- All Categories
- 75 General
- 75 Announcements
- 66.7K Microsoft Dynamics NAV
- 18.8K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 610 NAV Courses, Exams & Certification
- 1.9K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 251 Dynamics CRM
- 103 Dynamics GP
- 6 Dynamics SL
- 1.5K Other
- 991 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 28 Design Patterns (General & Best Practices)
- Architectural Patterns
- 9 Design Patterns
- 4 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1K General Chat
- 1.6K Website
- 77 Testing
- 1.2K Download section
- 23 How Tos section
- 249 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions
