mibuso.com

Microsoft Business Solutions online community
It is currently Sat May 25, 2013 6:43 am

All times are UTC + 1 hour [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Address lookup in invoice form
PostPosted: Wed Jan 21, 2004 4:29 pm 
Offline

Joined: Wed Jan 21, 2004 4:16 pm
Posts: 32
Location: UK
Country: United Kingdom (uk)
Hi

I have a navision install that is being used with an existing SQL application. The SQL application is transfering customer records and invoices into Navision rather than enter them by hand.
When I open an invoice the customer number shows fine but the address of the customer is not automatically populated. This only happens when you use the lookup button to lookup a customer number and change it. Does anyone know how to make this address lookup happen on demand e.g make it happen when the invoice form is opened.

Thanks

Debbie


Top
 Profile  
 
 Post subject:
PostPosted: Wed Jan 21, 2004 5:33 pm 
Offline

Joined: Thu Dec 19, 2002 11:12 pm
Posts: 219
Hi,

What is happening is the Onvalidate trigger of the sell-to customer no. on the Sales header is not being executed, which means that when you bring in the information from SQL you have to run the onvalidate trigger on the Sales header of Sell-to customer no. field in order to populate all the address fields on the Sales invoice.

I would recommend that after you bring in all the customer records, you need to write a small routine to update the sales header which is as follows:

Declare a global variable SalesHead pointing to record Sales header

Then write a codeunit as follows

if Saleshead.find('-') then begin
repeat
saleshead.validate("sell-to customer no.");
saleshead.modify;
until saleshead.next = 0;
end;

This should solve your problem.

Best regards
Suresh.


Top
 Profile E-mail  
 
 Post subject:
PostPosted: Thu Jan 22, 2004 6:37 pm 
Offline
MVP Microsoft Dynamics NAV

Joined: Thu Jan 02, 2003 6:37 pm
Posts: 7931
Location: Howell, MI
Country: United States (us)
Or, you change the program that gets the customer from the other application to do the validation, so there is no need to run further routines.

_________________
Daniel Rimmelzwaan
MVP - Dynamics NAV


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC + 1 hour [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum


Search for:
Jump to: