get_leads = zoho.crm.getRecordById("Leads",leadId.toLong());
Titelvor = ifNull(get_leads.get("Titel_vorgestellt"),"");
Titelnach = ifNull(get_leads.get("Titel_nachgestellt"),"");
Vorname = ifNull(get_leads.get("Vorname"),"");
Nachname = ifNull(get_leads.get("Nachname"),"");
personname = Titelvor + " " + Vorname + " " + Nachname + " " + Titelnach;
mp = Map();
mp.put("Person_Name",personname);
update_record = zoho.crm.updateRecord("Leads",leadId,mp);