<?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 Updating RITM when related CHG updates in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211723#M2518</link>
    <description>&lt;P&gt;Hello experts,&lt;BR /&gt;&lt;BR /&gt;I created a business rule that creates automatically a “change request” from RITM.&lt;BR /&gt;Then I created another business rule that does the following : when the change request state changes to “assess” , the related RITM updates to “work in progress” : the problem is my script is not working : when I update a chg request, the related RITM didn't get updated ! I tried to fix it with chatgpt but it didn't work :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_0-1742392102431.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428302iC3168FC70B7C0661/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_0-1742392102431.png" alt="yasserbouat_0-1742392102431.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(function executeRule(current) {

    
    if (current.state == 3) {

        var ritm = new GlideRecord('sc_req_item');
        
        ritm.addQuery('sys_id', current.parent);  
        ritm.query();

        if (ritm.next()) {
            ritm.state = 2;  
            ritm.update();
          
        } else {
            gs.error('RITM not found ' + current.sys_id); 
        }
    }

})(current);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 19 Mar 2025 13:55:53 GMT</pubDate>
    <dc:creator>yasserbouat</dc:creator>
    <dc:date>2025-03-19T13:55:53Z</dc:date>
    <item>
      <title>Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211723#M2518</link>
      <description>&lt;P&gt;Hello experts,&lt;BR /&gt;&lt;BR /&gt;I created a business rule that creates automatically a “change request” from RITM.&lt;BR /&gt;Then I created another business rule that does the following : when the change request state changes to “assess” , the related RITM updates to “work in progress” : the problem is my script is not working : when I update a chg request, the related RITM didn't get updated ! I tried to fix it with chatgpt but it didn't work :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_0-1742392102431.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428302iC3168FC70B7C0661/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_0-1742392102431.png" alt="yasserbouat_0-1742392102431.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(function executeRule(current) {

    
    if (current.state == 3) {

        var ritm = new GlideRecord('sc_req_item');
        
        ritm.addQuery('sys_id', current.parent);  
        ritm.query();

        if (ritm.next()) {
            ritm.state = 2;  
            ritm.update();
          
        } else {
            gs.error('RITM not found ' + current.sys_id); 
        }
    }

})(current);&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 13:55:53 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211723#M2518</guid>
      <dc:creator>yasserbouat</dc:creator>
      <dc:date>2025-03-19T13:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211763#M2519</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/837055"&gt;@yasserbouat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You need to debug if your 2nd BR is getting triggered or not. Use Add Message to determine the same.&lt;/P&gt;&lt;P&gt;Also when a change Request is getting created from RITM, then in the RITM parent filed the newly created CR is getting mapped?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also make below changes in the 2nd BR&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(function executeRule(current) {

    
    if (current.state == 3) {

        var ritm = new GlideRecord('sc_req_item');
        
        ritm.addQuery('parent', current.sys_id);       // Changes here
        ritm.query();

        if (ritm.next()) {
            ritm.state = 2;  
            ritm.update();
          
        } else {
            gs.error('RITM not found ' + current.sys_id); 
        }
    }

})(current);&lt;/LI-CODE&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;If my response helped, please hit the Thumb Icon and accept the solution so that it benefits future readers.&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Rohit&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 14:14:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211763#M2519</guid>
      <dc:creator>Rohit  Singh</dc:creator>
      <dc:date>2025-03-19T14:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211780#M2520</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/837055"&gt;@yasserbouat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you checked what is stored in parent field on change request table? Depending on that value you need to modify the code. There are lot of ways which you can verify your script. Use background script, add info message or add logs in your script.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 14:21:00 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211780#M2520</guid>
      <dc:creator>Dhana3</dc:creator>
      <dc:date>2025-03-19T14:21:00Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211816#M2521</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/136767"&gt;@Dhana3&lt;/a&gt;&amp;nbsp;thanks for your reply : but where can i find the "parent" field please ?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_0-1742394771032.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428325i7CCB1A5CE9A41E91/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_0-1742394771032.png" alt="yasserbouat_0-1742394771032.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_1-1742394798018.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428328i4019E8A7A821835B/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_1-1742394798018.png" alt="yasserbouat_1-1742394798018.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 14:33:30 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211816#M2521</guid>
      <dc:creator>yasserbouat</dc:creator>
      <dc:date>2025-03-19T14:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211845#M2522</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/837055"&gt;@yasserbouat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Click on the hamburger menu on the change form, click on show xml and search for parent there. Tell me what value it has.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Dhana3_0-1742395855713.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428331i6857F9E5A97C061D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Dhana3_0-1742395855713.png" alt="Dhana3_0-1742395855713.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 14:51:42 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211845#M2522</guid>
      <dc:creator>Dhana3</dc:creator>
      <dc:date>2025-03-19T14:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211851#M2523</link>
      <description>&lt;P&gt;This is what I found : what shoul I do next in order to make the script functionning please ?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;order/&amp;gt;
&amp;lt;outside_maintenance_schedule&amp;gt;false&amp;lt;/outside_maintenance_schedule&amp;gt;
&amp;lt;parent/&amp;gt;
&amp;lt;phase&amp;gt;requested&amp;lt;/phase&amp;gt;
&amp;lt;phase_state&amp;gt;open&amp;lt;/phase_state&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_0-1742395984941.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428332i5010B19F4D6447D7/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_0-1742395984941.png" alt="yasserbouat_0-1742395984941.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 14:54:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211851#M2523</guid>
      <dc:creator>yasserbouat</dc:creator>
      <dc:date>2025-03-19T14:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211876#M2524</link>
      <description>&lt;P&gt;So this means, when RITM creates change request, the RITM number is not updated in the parent field in the change request table. Can you share your 1st BR code? How are you establishing that the relation between change request and RITM? How do you know which RITM created which change request?&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 15:05:47 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211876#M2524</guid>
      <dc:creator>Dhana3</dc:creator>
      <dc:date>2025-03-19T15:05:47Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211888#M2525</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/136767"&gt;@Dhana3&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This is what I got : can you please show what should i do in order to make my script functions :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;order/&amp;gt;
&amp;lt;outside_maintenance_schedule&amp;gt;false&amp;lt;/outside_maintenance_schedule&amp;gt;
&amp;lt;parent/&amp;gt;
&amp;lt;phase&amp;gt;requested&amp;lt;/phase&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_0-1742397073873.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428341iD67DBF5D27AF390B/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_0-1742397073873.png" alt="yasserbouat_0-1742397073873.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 15:11:22 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211888#M2525</guid>
      <dc:creator>yasserbouat</dc:creator>
      <dc:date>2025-03-19T15:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211902#M2526</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/136767"&gt;@Dhana3&lt;/a&gt;&amp;nbsp;here is thescript of the first BR that creates "chg" from RITM :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;(function executeRule(current) {

    var chg = new GlideRecord('change_request'); 
    chg.initialize();

    chg.type = current.variables.v_model.toString();  
    chg.category = current.variables.v_category.toString();
    chg.short_description = current.variables.v_short_description.toString();
    chg.priority = current.variables.v_priority.toString();
    
    // Ensure service reference is valid
    if (current.variables.v_service) {
        chg.cmdb_ci = current.variables.v_service;
    }

    chg.state = 1; // Optional: Defaults to "New"

    // Assign to "ITSM Engineering" group
    var group = new GlideRecord('sys_user_group');
    if (group.get('name', 'ITSM Engineering')) {
        chg.assignment_group = group.sys_id;
    } else {
        gs.error('Assignment group "ITSM Engineering" not found.');
    }

    var chgSysId = chg.insert();

    if (chgSysId) {
        gs.info('Change Request ' + chgSysId + ' created from RITM ' + current.sys_id);
    } else {
        gs.error('Failed to create Change Request from RITM ' + current.sys_id);
    }

})(current);&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 19 Mar 2025 15:14:11 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211902#M2526</guid>
      <dc:creator>yasserbouat</dc:creator>
      <dc:date>2025-03-19T15:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211921#M2527</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/837055"&gt;@yasserbouat&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this script you need to below line of code to establish a relationship between RITM and Change. There is no relationship that is why parent is showing blank in your XML.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;chg.parent = current.sys_id;    //&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 15:21:15 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211921#M2527</guid>
      <dc:creator>Rohit  Singh</dc:creator>
      <dc:date>2025-03-19T15:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211925#M2528</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/837055"&gt;@yasserbouat&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;add this code :&lt;/P&gt;&lt;P&gt;chg.parent = current.sys_id;&lt;/P&gt;&lt;P&gt;after -&amp;nbsp;chg.priority = current.variables.v_priority.toString();&lt;/P&gt;&lt;P&gt;Then try to test it and check it parent field on change request form is updated or no.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 15:30:07 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3211925#M2528</guid>
      <dc:creator>Dhana3</dc:creator>
      <dc:date>2025-03-19T15:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3212004#M2531</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/837055"&gt;@yasserbouat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please accept the solution as well, so that it will help future readers as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 16:03:44 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3212004#M2531</guid>
      <dc:creator>Rohit  Singh</dc:creator>
      <dc:date>2025-03-19T16:03:44Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3212014#M2532</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/136767"&gt;@Dhana3&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I added the line as you suggusted, and I create a request and I opend the xml and I found the parent, then i updated the change state to assess, but the related RITM didn't get updtaed ! and i also noticed an error on the portal :&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_0-1742400334880.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428369i5DE4D62C1A7EA61E/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_0-1742400334880.png" alt="yasserbouat_0-1742400334880.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_1-1742400387935.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428370i086FA822BE7610B2/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_1-1742400387935.png" alt="yasserbouat_1-1742400387935.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_2-1742400406199.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428371iA38EBB92BD3FFA03/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_2-1742400406199.png" alt="yasserbouat_2-1742400406199.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="yasserbouat_3-1742400432962.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/428373i5B51684E2318A651/image-size/medium/is-moderation-mode/true?v=v2&amp;amp;px=400" role="button" title="yasserbouat_3-1742400432962.png" alt="yasserbouat_3-1742400432962.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 16:07:26 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3212014#M2532</guid>
      <dc:creator>yasserbouat</dc:creator>
      <dc:date>2025-03-19T16:07:26Z</dc:date>
    </item>
    <item>
      <title>Re: Updating RITM when related CHG updates</title>
      <link>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3212610#M2540</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/837055"&gt;@yasserbouat&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This issue is with your change model configuration. But that is a different issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please check this documentation -&amp;nbsp;&lt;A href="https://www.servicenow.com/docs/bundle/yokohama-it-service-management/page/product/change-management/task/create-a-change-model.html" target="_blank"&gt;https://www.servicenow.com/docs/bundle/yokohama-it-service-management/page/product/change-management/task/create-a-change-model.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I suppose you are new to ServiceNow development. I suggest you to do through the documentation and learn about scripting. It is not that difficult.&lt;/P&gt;&lt;P&gt;All the best!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dhanashree&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 06:03:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/updating-ritm-when-related-chg-updates/m-p/3212610#M2540</guid>
      <dc:creator>Dhana3</dc:creator>
      <dc:date>2025-03-20T06:03:37Z</dc:date>
    </item>
  </channel>
</rss>

