Quantcast
Channel: Discussion Forum > Connect Data Services
Viewing all articles
Browse latest Browse all 2504

Setting MenuOnlyObject Value in Connect PHP (1 Comment)

$
0
0

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. 


Viewing all articles
Browse latest Browse all 2504

Trending Articles