<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question To copy variable's value into a journal type field in ITSM forum</title>
    <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2797666#M512196</link>
    <description>&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have few select box variables, if user selects the value of those variables as rejected, rejection reason field will populate. I want to copy the value of those variables if they are rejected along with the rejection reason from sctask to another table's journal type field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am thinking about the logic like if xyz == rejected &amp;amp;&amp;amp; rejection reason != '' then need to add them in that journal field. If those are not rejected, those i approved i dont want to add them in this journal field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Poorva Bhawsar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Jan 2024 06:52:56 GMT</pubDate>
    <dc:creator>Poorva Bhawsar</dc:creator>
    <dc:date>2024-01-19T06:52:56Z</dc:date>
    <item>
      <title>To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2797666#M512196</link>
      <description>&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have few select box variables, if user selects the value of those variables as rejected, rejection reason field will populate. I want to copy the value of those variables if they are rejected along with the rejection reason from sctask to another table's journal type field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am thinking about the logic like if xyz == rejected &amp;amp;&amp;amp; rejection reason != '' then need to add them in that journal field. If those are not rejected, those i approved i dont want to add them in this journal field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Poorva Bhawsar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 06:52:56 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2797666#M512196</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-01-19T06:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2797689#M512199</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/119703"&gt;@Poorva Bhawsar&lt;/a&gt; you can do like you said, to check the value of variable in BR you can do like this&lt;/P&gt;&lt;P&gt;if(current.variables.xyz == 'rejected' &amp;amp;&amp;amp; current.rejection_reason !='')&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;//glide another table to pass the values to journal field.&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 07:03:47 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2797689#M512199</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2024-01-19T07:03:47Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2797909#M512222</link>
      <description>&lt;P&gt;This logic i already told but how to pass those values that i need.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 09:37:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2797909#M512222</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-01-19T09:37:23Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2797952#M512224</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/119703"&gt;@Poorva Bhawsar&lt;/a&gt;&amp;nbsp; assuming your BR is on sc task table with before update checked&lt;/P&gt;&lt;P&gt;sample script:&lt;/P&gt;&lt;P&gt;if(current.variables.xyz == 'rejected' &amp;amp;&amp;amp; current.rejection_reason !='')&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;var gr = new GlideRecord('tablename');&lt;/P&gt;&lt;P&gt;gr.addQuery('parent',current.sys_id); // parent is the field on the table which holds reference to sc task table&lt;/P&gt;&lt;P&gt;gr.query();&lt;/P&gt;&lt;P&gt;if(gr.next())&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;gr.comments = "Rejected Reason :"+current.variables.variablename +'&amp;lt;br&amp;gt;'+ "Reason": +current.fieldname;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 09:54:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2797952#M512224</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2024-01-19T09:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2798013#M512227</link>
      <description>&lt;P&gt;I have multiple variables. Do i need to gliderecord for all or i need to loop for that?&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 10:09:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2798013#M512227</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-01-19T10:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2798032#M512229</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/119703"&gt;@Poorva Bhawsar&lt;/a&gt; no need to do multiple glide, you can just pass multiple variables like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;gr.comments += "Rejected Reason :"+current.variables.variablename +'&amp;lt;br&amp;gt;'+ "Reason": +current.fieldname +'&amp;lt;br&amp;gt;'+ "variableName:"+current.variables.variablename +'&amp;lt;br&amp;gt;'+;&lt;/P&gt;&lt;P&gt;gr.comments += variableName1:"+current.variables.variablename1 +'&amp;lt;br&amp;gt;'+;&lt;/P&gt;&lt;P&gt;gr.comments += variableName2:"+current.variables.variablename2 +'&amp;lt;br&amp;gt;'+;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;it will map all your variables to comments field. you can see the mapped values in activity of the record .&lt;/P&gt;</description>
      <pubDate>Fri, 19 Jan 2024 10:16:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2798032#M512229</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2024-01-19T10:16:48Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2807053#M512806</link>
      <description>&lt;P&gt;But i have multiple variables and for those multiple variables i have multiple different variables for rejection reasons.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 05:28:00 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2807053#M512806</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-01-29T05:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2807056#M512807</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;//var reqtask = new GlideRecord("sc_task");&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;//reqtask.addQuery('request_item', reqitem.sys_id);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;//reqtask.query();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;//while (reqtask.next()) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.vendor_support_in_place_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason3 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;){&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; gr = &lt;/SPAN&gt;&lt;SPAN&gt;new&lt;/SPAN&gt; &lt;SPAN&gt;GlideRecord&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'sc_task'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.addQuery(&lt;/SPAN&gt;&lt;SPAN&gt;'parent'&lt;/SPAN&gt;&lt;SPAN&gt;, current.sys_id);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.query();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt;(gr.next()){&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason3 +&lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt;+ &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.vendor_support_in_place_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.built_as_per_soe_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason1 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.infra_design_document_isc_isd_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason5 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.db_monitoring_tested_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason7 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.shutdown_started_tested_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason9 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.version_is_atleast_tweleve_month_from_vendor_eos_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason2 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.pre_doat_checklist_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason4 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.built_as_per_design_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason8 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.backup_restore_tested_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason6 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.non_prod_oat_is_passed_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason11 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.patching_automated_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason10 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.csrc_patching_cadence == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason2 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.database_onboarded_to_siem_confirmation_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason3 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.server_privilaged_account_onboarded_to_piam == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason4 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.account_management_onboarded_to_uam_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason5 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.cis_scan_nessus_scan_passed_confirmation_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason6 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.ds_am_av_and_network_protect_with_ips_policy_is_set_to_prevent_or_ms_defender_installed == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason7 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; reqtask.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;DIV&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Like this. But its not working. So, do i need to gliderecord for all variables?&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 29 Jan 2024 05:28:49 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2807056#M512807</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-01-29T05:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2808364#M512875</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/119703"&gt;@Poorva Bhawsar&lt;/a&gt; Assuming you BR is after update on SC Task table, try below code&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if (current.variables.vendor_support_in_place_approval == 'failed' &amp;amp;&amp;amp; current.variables.rejection_reason3 != ''){&lt;BR /&gt;var gr = new GlideRecord('tablename'); //table you want to copy variable value&lt;BR /&gt;gr.addQuery('parent', current.sys_id); // parent field from your table holds sc task sysID&lt;BR /&gt;gr.query();&lt;BR /&gt;if(gr.next()){&lt;BR /&gt;gr.u_deviation_notes = "Requested Number: " + current.variables.number, "Rejected Reason :" + current.variables.rejection_reason3 +'&amp;lt;br&amp;gt;'+ "Failed :" + current.vendor_support_in_place_approval;&lt;BR /&gt;&lt;STRONG&gt;gr.update(); // missed update here, you need to update your custom table&lt;/STRONG&gt;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 02:20:33 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2808364#M512875</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2024-01-30T02:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2808438#M512882</link>
      <description>&lt;P&gt;Do i need to glide record all conditions?&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 04:24:55 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2808438#M512882</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-01-30T04:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2808466#M512889</link>
      <description>&lt;P&gt;You can add all the variables inside if condition, no need to gliderecord again.&lt;/P&gt;&lt;P&gt;example:&lt;/P&gt;&lt;P&gt;gr.u_deviation_notes&lt;STRONG&gt; +=&lt;/STRONG&gt; "Requested Number: " + current.variables.number, "Rejected Reason :" + current.variables.rejection_reason3 +'&amp;lt;br&amp;gt;'+ "Failed :" + current.vendor_support_in_place_approval ;&lt;/P&gt;&lt;P&gt;if (current.variables.shutdown_started_tested_approval == 'failed' &amp;amp;&amp;amp; current.variables.rejection_reason9 != '')&lt;BR /&gt;gr.u_deviation_notes += +current.variables.rejection_reason9;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Jan 2024 05:50:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2808466#M512889</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2024-01-30T05:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2810097#M513034</link>
      <description>&lt;P&gt;But i have multiple if conditions and for multiple if conditions i want to add deviation notes as different for all. According to the code you have given, under if condition i need to gliderecord that. But what if i have multiple if conditions. How it will work?&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 07:55:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2810097#M513034</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-01-31T07:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2810110#M513035</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/119703"&gt;@Poorva Bhawsar&lt;/a&gt; you can concatenate like this&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;var gr = new GlideRecord('tablename'); //table you want to copy variable value&lt;BR /&gt;gr.addQuery('parent', current.sys_id); // parent field from your table holds sc task sysID&lt;BR /&gt;gr.query();&lt;BR /&gt;if(gr.next()){&lt;BR /&gt;gr.u_deviation_notes += "Requested Number: " + current.variables.number, "Rejected Reason :" + current.variables.rejection_reason3 +'&amp;lt;br&amp;gt;'+ "Failed :" + current.vendor_support_in_place_approval;&lt;/P&gt;&lt;P&gt;if(cond1)&lt;/P&gt;&lt;P&gt;gr.u_deviation_notes += "Variable Question: " + current.variables.variablename;&lt;/P&gt;&lt;P&gt;if(cond2)&lt;/P&gt;&lt;P&gt;gr.u_deviation_notes += "Variable Question: " + current.variables.variablename;&lt;/P&gt;&lt;P&gt;if(cond3)&lt;/P&gt;&lt;P&gt;gr.u_deviation_notes += "Variable Question: " + current.variables.variablename;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;gr.update();&lt;/STRONG&gt;&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 08:10:06 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2810110#M513035</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2024-01-31T08:10:06Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2810215#M513042</link>
      <description>&lt;P&gt;I am doing exactly same now. But its not updating the deviation notes field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the updated code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;var&lt;/SPAN&gt;&lt;SPAN&gt; gr = &lt;/SPAN&gt;&lt;SPAN&gt;new&lt;/SPAN&gt; &lt;SPAN&gt;GlideRecord&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'cmdb_ci_server'&lt;/SPAN&gt;&lt;SPAN&gt;);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; gr.addQuery(&lt;/SPAN&gt;&lt;SPAN&gt;'parent'&lt;/SPAN&gt;&lt;SPAN&gt;, current.sys_id);&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; gr.query();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (gr.next()) {&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.vendor_support_in_place_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason3 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason3 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.vendor_support_in_place_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.built_as_per_soe_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason1 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason1 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.built_as_per_soe_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.infra_design_document_isc_isd_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason5 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason5 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.infra_design_document_isc_isd_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.db_monitoring_tested_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason7 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason7 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.db_monitoring_tested_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.shutdown_started_tested_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason9 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason9 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.shutdown_started_tested_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.version_is_atleast_tweleve_month_from_vendor_eos_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason2 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason2 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.version_is_atleast_tweleve_month_from_vendor_eos_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.pre_doat_checklist_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason4 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason4 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.pre_doat_checklist_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.built_as_per_design_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason8 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason8 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.built_as_per_design_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.backup_restore_tested_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason6 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason6 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.backup_restore_tested_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.non_prod_oat_is_passed_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason11 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason11 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.non_prod_oat_is_passed_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.patching_automated_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.rejection_reason10 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.rejection_reason10 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.patching_automated_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.csrc_patching_cadence == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason2 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.sr_rejection_reason2 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.csrc_patching_cadence;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.database_onboarded_to_siem_confirmation_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason3 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.sr_rejection_reason3 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.database_onboarded_to_siem_confirmation_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.server_privilaged_account_onboarded_to_piam == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason4 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.sr_rejection_reason4 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.server_privilaged_account_onboarded_to_piam;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.account_management_onboarded_to_uam_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason5 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.sr_rejection_reason5 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.account_management_onboarded_to_uam_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.cis_scan_nessus_scan_passed_confirmation_approval == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason6 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.number, &lt;/SPAN&gt;&lt;SPAN&gt;"Rejected Reason :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.sr_rejection_reason6 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.cis_scan_nessus_scan_passed_confirmation_approval;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;if&lt;/SPAN&gt;&lt;SPAN&gt; (current.variables.ds_am_av_and_network_protect_with_ips_policy_is_set_to_prevent_or_ms_defender_installed == &lt;/SPAN&gt;&lt;SPAN&gt;'failed'&lt;/SPAN&gt;&lt;SPAN&gt; &amp;amp;&amp;amp; current.variables.sr_rejection_reason7 != &lt;/SPAN&gt;&lt;SPAN&gt;''&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.u_deviation_notes = &lt;/SPAN&gt;&lt;SPAN&gt;"Requested Number: "&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.sr_rejection_reason7 + &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;br&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;"Failed :"&lt;/SPAN&gt;&lt;SPAN&gt; + current.variables.ds_am_av_and_network_protect_with_ips_policy_is_set_to_prevent_or_ms_defender_installed;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; gr.update();&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 31 Jan 2024 09:46:30 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2810215#M513042</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-01-31T09:46:30Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2810245#M513044</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/119703"&gt;@Poorva Bhawsar&lt;/a&gt; your code is not working because on cmdb_ci_server table we donot have a field called "parent", so the code is failing, the below line&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;gr.addQuery('parent', current.sys_id); // you need to pass correct field name here,&amp;nbsp; parent field is invalid&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 31 Jan 2024 10:03:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2810245#M513044</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2024-01-31T10:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811248#M513100</link>
      <description>&lt;P&gt;Here i have an another issue. If i am using cmdb_ci table for the gliderecord, its not working for its child tables. I mean its not updating the deviation notes field for this. Thats why i did gliderecord on cmdb_ci_server table but if i use this table it will not work for server child tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What we need to do in this case?&lt;/P&gt;&lt;P&gt;And what if i need to gliderecord it on server table only. What should be the query for this?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 04:50:41 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811248#M513100</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-02-01T04:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811250#M513101</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/119703"&gt;@Poorva Bhawsar&lt;/a&gt;&amp;nbsp; you need a relationship between your server table and catalog task table for the query to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you dont have a relationship then you need to find a unique value between server and task table and use that field in your query so that it can provide correct update.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What is your requirement exactly? How is the task generated? Do you have any workflow or flow designer?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 04:58:00 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811250#M513101</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2024-02-01T04:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811273#M513104</link>
      <description>&lt;P&gt;i have a workflow for this.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 05:26:19 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811273#M513104</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-02-01T05:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811330#M513116</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/119703"&gt;@Poorva Bhawsar&lt;/a&gt; what is the reason behind to update deviation notes on Server table? are you selecting any servers in your catalog form and in return your updating the selected servers in server table?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 06:06:40 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811330#M513116</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2024-02-01T06:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: To copy variable's value into a journal type field</title>
      <link>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811354#M513121</link>
      <description>&lt;P&gt;Yes i have server names field. Whatever servers i am selecting there, it should update deviation notes with the request item no and the reason user selected and mentioned if its failed.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Feb 2024 06:37:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/itsm-forum/to-copy-variable-s-value-into-a-journal-type-field/m-p/2811354#M513121</guid>
      <dc:creator>Poorva Bhawsar</dc:creator>
      <dc:date>2024-02-01T06:37:26Z</dc:date>
    </item>
  </channel>
</rss>

