You're almost there! Please answer a few more questions for access to the Applications content. Complete registration
Interested in joining? Complete your registration by providing Areas of Interest here. Register

View custom object - Notes column in the console

Accepted answer
23
Views
2
Comments
edited Jun 7, 2022 1:17PM in General Technical Discussions 2 comments

Summary

View Notes column in custom object

Content

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.

Howdy, Stranger!

Log In

To view full details, sign in.

Register

Don't have an account? Click here to get started!