Pinpoint multiple addresses on Dispatch Board

aseigleaseigle Member Posts: 207
version - NAVNA5.00.01

I've read multiple posts on creating pinpoint and maps to various Ship-to Addresses on Order Headers, and from Master Records.

My questions is, is it possible to add a button to the Service Dispatch Board so I can select multiple Service Orders, click the button, and get a map (google, yahoo, bing) with pinpoints for multiple addresses.

Thanks for your time.

Adam

Answers

  • garakgarak Member Posts: 3,263
    what is with google maps ;-)

    http://mapki.com/wiki/Google_Map_Parameters
    http://code.google.com/intl/de-DE/apis/ ... taticmaps/

    example:
    cust1.get(10000);
    Cust2.get(20000);
    HYPERLINK(
      'http://www.google.de/maps?f=d&hl=en&saddr='+
      Cust1.Address+','+
      Cust1."Post Code"+','+
      Cust1.City+
      '&daddr='+
      Cust2.Address+','+
      Cust2."Post Code"+','+
      Cust2.City);
    

    Regards
    Do you make it right, it works too!
  • garakgarak Member Posts: 3,263
    And here for google Earth:
    viewtopic.php?f=7&t=14954
    Do you make it right, it works too!
  • aseigleaseigle Member Posts: 207
    Hi Rene,

    Thank you for your prompt reply. I don't know that I explained well enough in my first post, and for that I apologize. While I'm not a developer, I noticed in your code you called out specific Customer Nos. I was hoping the button would pull the Customer No, Ship-to City, State, and Zip etc. right from the Dispatch Board, which looks at Service Header table. I don't expect you to do the work for me, I just want to know if A) my request makes sense, and B) will it work. Thank you again.

    Adam
  • garakgarak Member Posts: 3,263
    edited 2009-07-29
    I understand what you want and it could make sense, so your "driver" can plan the optimal route.
    It's very easy to add a button (and the logic behind it) on this card to show on google maps all the Service Orders that you have in your Dispatch board (based on your filters like Resource Filter, Zone filter and so on). I would say: 10-60 minutes and you got it. If you have a partner that customize you NAV solution, ask them for this. But more then a 2-3 hours (incl. tests) it should not cost. It's very simple. If you have a developer in your firm and the license, ask him and show him this topic.
    Do you make it right, it works too!
  • aseigleaseigle Member Posts: 207
    Thank you for your help.
  • garakgarak Member Posts: 3,263
    Please and welcome
    Do you make it right, it works too!
Sign In or Register to comment.