Options

Which fields will be synchronized with Outlook/Nav. synchron

NokioNokio Member Posts: 52
Hi,
does someone have a list or something similar where I can see all the fields which will be synchronized when you install the Outlook\Navision synchronization.

Thx 4 help,
Nokio

Comments

  • Options
    Marije_BrummelMarije_Brummel Member, Moderators Design Patterns Posts: 4,262
    OLContact.LastName := Cont.Surname;
    OLContact.FirstName := Cont."First Name";
    OLContact.MiddleName := Cont."Middle Name";
    OLContact.JobTitle := Cont."Job Title";
    OLContact.FileAs := Cont.Name;

    OLContact.CompanyName := Cont."Company Name";

    OLContact.BusinessAddressCountry := Country.Name;
    OLContact.BusinessAddressPostalCode := Cont."Post Code";

    OLContact.BusinessAddressCity := Cont.City;
    OLContact.BusinessAddressStreet := Compose2LineAddress(Cont.Address, Cont."Address 2");

    OLContact.BusinessHomePage := Cont."Home Page";
    OLContact.BusinessPhone := Cont."Phone No.";
    OLContact.MobilePhone := Cont."Mobile Phone No.";
    OLContact.BusinessFax := Cont."Fax No.";
    OLContact.EMail1 := Cont."E-Mail";

    OLContact.AttainDbCompanyName := COMPANYNAME;
    OLContact.AttainSalespersonCode := Cont."Salesperson Code";
    OLContact.AttainContactNo := Cont."No.";
    OLContact.AttainContextURL := CreateContactLink (Cont."No.");
    OLContact.AttainContactVersionNo := Cont."Version No.";
    OLContact.AttainCompanyNo := Cont."Company No.";
    OLContact.LastSynchronizedTime := DATI2VARIANT(TODAY,TIME);
  • Options
    NokioNokio Member Posts: 52
    thx Mark, but this List shows only the fields for the contact, I thougt the jobs etc. will be synchronized as well
    Do you have a List with all synchronized fields?
  • Options
    Marije_BrummelMarije_Brummel Member, Moderators Design Patterns Posts: 4,262
    Sorry never heard of that. Only thing else you can synchronise is to do & salespersons.

    You can ofcourse program your own synchronisation for jobs to outlook tatks.

    Please look in codeunit 5069 - 5073 for more information.

    Greetz,

    Marq
Sign In or Register to comment.