Topic by Umer
Hi, I am trying to set a Mane filed value from connect php. The object is a custom object in which a menu field is being used.
The record is being created correctly but value is not being set in the menu field. I am using following code:
function AddNotesObj($newIncidentId, $Note, $NoteType, $Private){try{$s_Notes = new RNCPHP\Halton\S_Notes();$s_Notes->Incident = RNCPHP\Incident::fetch($newIncidentId);$s_Notes->Note = $Note;$s_Notes->S_NotesType = new RNCPHP\NamedIDOptList();$s_Notes->S_NotesType->Name = 'Note';$s_Notes->Private = $Private;$s_Notes->save();}catch (Exception $err ){echo $err->getMessage();}}
'Note' is there as value as well as Label.
Please advice what is wrong I am doing here.