<?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 Re: Using fix script same table we need to copy from one field to other field in Developer forum</title>
    <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3439696#M1238786</link>
    <description>&lt;P&gt;Hi, you didn't change anything in the script I gave you right ?&lt;BR /&gt;For me it works fine, the record comes up in the cmdb_ci field correctly. Also one thing, you are sure right that the input provided in the user_input field is the name of the cmdb_ci item ? if the name doesn't match then the cmdb_ci wont get populated.&lt;/P&gt;</description>
    <pubDate>Fri, 28 Nov 2025 09:34:15 GMT</pubDate>
    <dc:creator>soumyadeep10</dc:creator>
    <dc:date>2025-11-28T09:34:15Z</dc:date>
    <item>
      <title>Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438266#M1238520</link>
      <description>&lt;P&gt;Using fix script same table we need to copy from one field to other field i tried with below code but it's not working let me know my mistake&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var ga=new GlideRecord('sn_compliance_policy_exception');
ga.addEncodedQuery('policy=87420b0bc3ef71103cbbfb1f0501317b^cmdb_ciISEMPTY');
ga.query();
while(ga.next()){
	ga.cmdb_ci=ga.user_input;
	//current.name = current.u_imei_string;
	ga.update();
}&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 26 Nov 2025 12:48:16 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438266#M1238520</guid>
      <dc:creator>mani55</dc:creator>
      <dc:date>2025-11-26T12:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438269#M1238522</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maybe try with below code&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var ga = new GlideRecord('sn_compliance_policy_exception');
ga.addEncodedQuery('policy=87420b0bc3ef71103cbbfb1f0501317b^cmdb_ciISEMPTY');
ga.query();

while (ga.next()) {
    ga.setValue('cmdb_ci', ga.getValue('user_input'));
    ga.update();
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Please mark my answer correct and helpful if this works for you&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sarthak&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 12:59:49 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438269#M1238522</guid>
      <dc:creator>Sarthak Kashyap</dc:creator>
      <dc:date>2025-11-26T12:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438278#M1238525</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Firstly let me know whether you want the field value of cmdb_ci to go to user_input or you want the other way round.&amp;nbsp;&lt;BR /&gt;If you want the cmdb_ci value to flow to user_input , replace your 5th line with the below line:&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;ga.user_input = ga.cmdb_ci.getDisplayValue();&lt;/LI-CODE&gt;&lt;P&gt;I've already tried this in my instance, and it works.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*************************************************************************************************************&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 13:16:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438278#M1238525</guid>
      <dc:creator>soumyadeep10</dc:creator>
      <dc:date>2025-11-26T13:16:21Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438281#M1238526</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;, if the above script from&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/257359"&gt;@Sarthak Kashyap&lt;/a&gt;&amp;nbsp;will not work (but I hope it will work) - try this one,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var ci = new GlideRecord('cmdb_ci');
ci.addQuery('name', gr.getValue('user_input')); 
ci.query();
if (ci.next()) {
    gr.setValue('cmdb_ci', ci.getUniqueValue());
    gr.update();
}&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;I hope it helps, and if it was helpful, please vote with thumbs-up, thanks.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Renat Akhmedov&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 13:09:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438281#M1238526</guid>
      <dc:creator>Renat Akhmedov</dc:creator>
      <dc:date>2025-11-26T13:09:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438283#M1238527</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it will only work if both the field type is same&lt;/P&gt;
&lt;P&gt;user_input and cmdb_ci both refer to same table?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":light_bulb:"&gt;💡&lt;/span&gt; If my response helped, please mark it as correct &lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; and close the thread &lt;span class="lia-unicode-emoji" title=":locked:"&gt;🔒&lt;/span&gt;— this helps future readers find the solution faster! &lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Nov 2025 13:10:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438283#M1238527</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-11-26T13:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438815#M1238615</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;User input field is string field but cmdb_ci field is reference field so we can get copy from that&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 03:02:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438815#M1238615</guid>
      <dc:creator>mani55</dc:creator>
      <dc:date>2025-11-27T03:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438834#M1238616</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;&amp;nbsp;- Where is user_input coming from? I would have serious reservations about matching on text input since CI names aren't necessarily unique, but technically something like this should work:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;// Instantiate GlideRecord
var ci = new GlideRecord("cmdb_ci");

// Get the name of the display field
var ciDisplayName = ci.getDisplayName();

var policyException = new GlideRecord('sn_compliance_policy_exception');
policyException.addEncodedQuery('policy=87420b0bc3ef71103cbbfb1f0501317b^cmdb_ciISEMPTY');
policyException.query();
while (policyException.next()) {
    // Query cmdb_ci for a match
    if (ci.get(ciDisplayName, policyException.getValue('user_input'))) {
        // If there's a match, set cmdb_ci
        policyException.cmdb_ci = ci.getUniqueValue();
        policyException.update();
    }
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 03:45:50 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438834#M1238616</guid>
      <dc:creator>Sheldon  Swift</dc:creator>
      <dc:date>2025-11-27T03:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438851#M1238620</link>
      <description>&lt;P&gt;i tried with below script but it's not working&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// Instantiate GlideRecord
var ci = new GlideRecord("cmdb_ci_pc_hardware");

// Get the name of the display field
var ciDisplayName = ci.getDisplayName();

var policyException = new GlideRecord('sn_compliance_policy_exception');
policyException.addEncodedQuery('policy=87420b0bc3ef71103cbbfb1f0501317b^cmdb_ciISEMPTY');
policyException.query();
while (policyException.next()) {
    // Query cmdb_ci for a match
    if (ci.get(ciDisplayName, policyException.getValue('user_input'))) {
        // If there's a match, set cmdb_ci
        policyException.cmdb_ci = ci.getUniqueValue();
        policyException.update();
    }
}&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 27 Nov 2025 04:32:41 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438851#M1238620</guid>
      <dc:creator>mani55</dc:creator>
      <dc:date>2025-11-27T04:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438857#M1238621</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;&amp;nbsp;Could you please clarify which field you want to populate from which. User input value from cmdb_ci or vice versa.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 04:38:06 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438857#M1238621</guid>
      <dc:creator>soumyadeep10</dc:creator>
      <dc:date>2025-11-27T04:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438872#M1238622</link>
      <description>&lt;P&gt;we have this two fields like cmdb_ci field and user input we have in sn_compliance_policy_exception table . already&amp;nbsp; we have value in user_input table and it's string field . cmdb_ci is refrence field and it's refereing cmdb_ci_pc_hardware table what we need is we need copy from user_input to cmdb_ci field in&amp;nbsp;sn_compliance_policy_exception table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 04:54:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438872#M1238622</guid>
      <dc:creator>mani55</dc:creator>
      <dc:date>2025-11-27T04:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438881#M1238626</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Please try the below script, it's working for me:&lt;/P&gt;&lt;P&gt;(Change the field names accordingly if required)&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var ga=new GlideRecord('sn_compliance_policy_exception');
ga.addEncodedQuery('policy=87420b0bc3ef71103cbbfb1f0501317b^cmdb_ciISEMPTY');
ga.query();
if (ga.next()){
    var gN = new GlideRecord('cmdb_ci_pc_hardware');
    gN.addQuery('name', ga.user_input);
    gN.query();
    if (gN.next()) {
        ga.cmdb_ci = gN.sys_id;
        ga.update();
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;STRONG&gt;*************************************************************************************************************&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 05:22:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438881#M1238626</guid>
      <dc:creator>soumyadeep10</dc:creator>
      <dc:date>2025-11-27T05:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438892#M1238628</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Simply use this script:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var ga = new GlideRecord('sn_compliance_policy_exception');
// 1. Ensure the query is actually finding records
ga.addEncodedQuery('policy=87420b0bc3ef71103cbbfb1f0501317b^cmdb_ciISEMPTY'); 
// Optional: restrict row count for testing
// ga.setLimit(10); 
ga.query();

while(ga.next()){
    // 2. Ensure 'user_input' actually has data to copy
    if(ga.user_input){
        // 3. Make sure Workflow/Business Rules don't block this
        ga.setWorkflow(false); 
        ga.autoSysFields(false);
        
        // 4. Copy the value
        ga.cmdb_ci = ga.user_input;
        ga.update();
    }
}&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P class="p1"&gt;Happy to help! If this resolved your issue, kindly mark it as the correct answer&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and Helpful and close the thread so others can benefit too.&lt;/P&gt;
&lt;P class="p1"&gt;Warm Regards,&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;Deepak Sharma&lt;/STRONG&gt;&lt;/P&gt;
&lt;P class="p1"&gt;&lt;STRONG&gt;&lt;I&gt;Community Rising Star 2025&lt;/I&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 06:08:05 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438892#M1238628</guid>
      <dc:creator>Deepak Shaerma</dc:creator>
      <dc:date>2025-11-27T06:08:05Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438895#M1238629</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kindly check my response, this working as expected for me:&lt;/P&gt;&lt;P&gt;(Change the field names accordingly if required)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var ga=new GlideRecord('sn_compliance_policy_exception');
ga.addEncodedQuery('policy=87420b0bc3ef71103cbbfb1f0501317b^cmdb_ciISEMPTY');
ga.query();
if (ga.next()){
    var gN = new GlideRecord('cmdb_ci_pc_hardware');
    gN.addQuery('name', ga.user_input);
    gN.query();
    if (gN.next()) {
        ga.cmdb_ci = gN.sys_id;
        ga.update();
    }
}&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;STRONG&gt;*************************************************************************************************************&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 06:14:16 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3438895#M1238629</guid>
      <dc:creator>soumyadeep10</dc:creator>
      <dc:date>2025-11-27T06:14:16Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3439227#M1238700</link>
      <description>&lt;P&gt;i checked background script it's not showing any thing&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var ga=new GlideRecord('sn_compliance_policy_exception');
ga.addEncodedQuery('policy=87420b0bc3ef71103cbbfb1f0501317b^cmdb_ciISEMPTY');
ga.query();
while(ga.next()){
	gs.print('the rowa'+ga.getRowCount());
    var gN = new GlideRecord('cmdb_ci_pc_hardware');
    gN.addQuery('name', ga.user_input);
    gN.query();
    if (gN.next()) {
		//gs.print('the rowa'+gN.getRowCount());
        ga.cmdb_ci = gN.sys_id;
        ga.update();
    }
}&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 27 Nov 2025 12:07:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3439227#M1238700</guid>
      <dc:creator>mani55</dc:creator>
      <dc:date>2025-11-27T12:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3439245#M1238705</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/368929"&gt;@mani55&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The script is working perfectly fine for me.&lt;BR /&gt;1. Check whether the Encoded query you have given is right or not and whether it successfully picks any record or not.&lt;/P&gt;&lt;P&gt;2. Check whether any cmdb_ci_pc_hardware record exists with the same name which the user input field has. If not, then the scriptwont work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For me after execution:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="soumyadeep10_0-1764246099163.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/487702i481824CC5B0960E4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="soumyadeep10_0-1764246099163.png" alt="soumyadeep10_0-1764246099163.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;*************************************************************************************************************&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;If my response proves useful, please indicate its helpfulness by selecting " Accept as Solution" and " Helpful." This action benefits both the community and me.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 12:21:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3439245#M1238705</guid>
      <dc:creator>soumyadeep10</dc:creator>
      <dc:date>2025-11-27T12:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3439643#M1238773</link>
      <description>&lt;P&gt;Hi i Used below script in fix script after that i am checking in list view cmdb_ci value is not displaying but when i open any single record i checked that record XML cmdb_ci value showing&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;our script related XML:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mani55_0-1764315742761.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/487801iF5B557DAE7252479/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mani55_0-1764315742761.png" alt="mani55_0-1764315742761.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;manual update record&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mani55_1-1764315774018.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/487802i457441C9596DACDD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mani55_1-1764315774018.png" alt="mani55_1-1764315774018.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 07:43:33 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3439643#M1238773</guid>
      <dc:creator>mani55</dc:creator>
      <dc:date>2025-11-28T07:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Using fix script same table we need to copy from one field to other field</title>
      <link>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3439696#M1238786</link>
      <description>&lt;P&gt;Hi, you didn't change anything in the script I gave you right ?&lt;BR /&gt;For me it works fine, the record comes up in the cmdb_ci field correctly. Also one thing, you are sure right that the input provided in the user_input field is the name of the cmdb_ci item ? if the name doesn't match then the cmdb_ci wont get populated.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Nov 2025 09:34:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/developer-forum/using-fix-script-same-table-we-need-to-copy-from-one-field-to/m-p/3439696#M1238786</guid>
      <dc:creator>soumyadeep10</dc:creator>
      <dc:date>2025-11-28T09:34:15Z</dc:date>
    </item>
  </channel>
</rss>

