Script error null.null.script encountered when attempting to access value of GlideRecord complex fields.Issue When accessing or printing value of GlideRecord complex field, the script fails with the error "null.null.script" Sample script var gr = new GlideRecord('kb_knowledge'); gr.get('24d9243187032100deddb882a2e3ec33'); gs.print(gr.short_description); gs.print(gr.number); gs.print(gr.wiki); Output *** Script: What is Spam? *** Script: KB0000029 getting default value for : TypeError: Cannot find default value for object. (null.null.script; line 5): ReleaseAll versions.CauseComplex fields like the following require the addition of .toString() to the GlideRecord in order to access their value and avoid the error. kb_knowledge.wikisys_ui_help.wiki_textsn_publications_publication.wikiResolutionIn the previous sample script, modify line #5 as follows. gs.print(gr.wiki.toString()); Script output after script modification. *** Script: What is Spam?*** Script: KB0000029*** Script: null