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 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?
Comments
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);
Do you have a List with all synchronized fields?
You can ofcourse program your own synchronisation for jobs to outlook tatks.
Please look in codeunit 5069 - 5073 for more information.
Greetz,
Marq