I wanted to map custom fields of lead to map with custom field of contact' when converted using binding.convertLead().
It should replicate the behaviour what we are manually doing from UI when custom fields of Lead are mapped with contact (Navigate to SetUp->Customize->Leads->Fields then in Lead Custom Fields & Relationships section Map Lead Fields button.)
I have the C# code to convert a lead into contact. However I need to map the custom fields of lead to custom fields of contact.
Like for e.g:
1) Lead.Newsletter__c (Custom field of check box type in lead)
2) Contact.Newsletter__c (Custom field of check box type in contact)
3) Now, if Lead.Newsletter__c is checked then when I convert any lead to contact, then Contact.Newsletter__c should be checked automatically.
I am able to fetch all the custom fields by using describeSObjects of Partener WSDL proxy class, but still unable to located where the changes should be made