View custom object - Notes column in the console
Summary
View Notes column in custom objectContent
I have created notes column of data type 'Notes' in custom object SLAHistory. SLAhistory is linked to incident table.
I have used following PHP code to update notes column in SLAHistory Custom Object
$thread = new Connect\Thread();
$thread->Text = $slanotes;
$thread->EntryType = new Connect\NamedIDOptList();
$thread->EntryType->ID = 2;
$SLAHistory->Threads[] = $thread;
$SLAHistory->save();
No error. How to view updated notes field in the console? I can't add notes field in the report or it is also
not showing in workspace.
Any help on this is very much appreciated.
Tagged:
0