Notifications
Announcements
No record found.
I could not find in our NAV 2013 R2, "COMBINE VENDOR". May I know how to have this option?
*This post is locked for comments
"Combine Vendor" (or Combine Customer) is part of Russian Localization.
Hi Mohamed,
Yes, these function are part of russian localization
Then is there other option / solution to Remove Duplicate Vendors?
Download a Russian demo database. Look for the functionality and copy it. Ask a developer (your partner) to do it.
pls refer this
msdn.microsoft.com/.../dn397373(v=nav.71).aspx
Dear Maneesha De Silva, it is not in all versions as other said.
Vendor - OnPreDataItem()
IF (OldVendor = '') OR (NewVendor = '') THEN
EXIT
ELSE BEGIN
IF NOT CONFIRM(Text001) THEN
EXIT;
Window.OPEN('#1################################');
Vendor.SETRANGE("No.",OldVendor);
END;
Vendor - OnAfterGetRecord()
IF (OldVendor <> '') AND (NewVendor <> '') THEN
WITH Vendor DO BEGIN
Vend.GET(NewVendor);
TmpVendor.INIT;
TmpVendor.TRANSFERFIELDS(Vend,FALSE);
Vend.DELETE;
Window.UPDATE(1,Text002);
IF VendAgrmt.GET(OldVendor,'') THEN (we have agreement functionality in Russia)
VendAgrmt.DELETE; (we have agreement functionality in Russia)
IF RENAME(NewVendor) THEN BEGIN
TRANSFERFIELDS(TmpVendor,FALSE);
MODIFY;
Window.UPDATE(1,Text003);
END ELSE BEGIN
TmpVendor.INSERT;
Window.UPDATE(1,Text004)
SLEEP(200);
Vendor - OnPostDataItem()
Name ConstValue
Text001 Are you sure?
Text002 Change links process are going
Text003 Change links process completed
Text004 Change links process failed
Text005 Type must not be %1
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.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
HoangNam 7