Announcements
No record found.
The error message indicates that an Extended Text Line with the same key values (Table Name = 'Item', No. = '998', Text No. = '2179', Line No. = '1000') already exists in Microsoft Dynamics NAV. This typically happens when importing multiple invoices via Excel, where duplicate extended text lines are being inserted for the same item.
Check the Extended Text Table:
SELECT * FROM [YourDatabaseName].[dbo].[Extended Text Line] WHERE [No_] = '998' AND [Text No_] = '2179' AND [Line No_] = '1000'
Review Your Excel File:
998
2179
1000
Modify the Import Process:
IF NOT ExtendedTextLine.GET(ItemNo, TextNo, LineNo) THEN ExtendedTextLine.INSERT;
Its clearly that, the error occurs because an Extended Text entry already exists for Item 998 with Text No. 2179 and Line No. 1000.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
Congratulations to our 2026 Super Stars!
We are thrilled to have these Champions in our Community!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
OussamaSabbouh 2,012 Super User 2026 Season 1
YUN ZHU 986 Super User 2026 Season 1
Teagen Boll 659 Super User 2026 Season 1