<?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: Business Service not being logged in Update set in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/business-service-not-being-logged-in-update-set/m-p/3344182#M4157</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/910797"&gt;@mgomez29&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;only the tables with "&lt;EM&gt;&lt;STRONG&gt;update_synch&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;" attribute set to true will be captured in the update set&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0535262" target="_blank"&gt;https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0535262&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0656394" target="_blank" rel="noopener"&gt;https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0656394&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Business services are considered as data and the attributes update_synch is not add to that table&lt;/P&gt;&lt;P&gt;to add that record to the update set you can run below code&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var recGr = new GlideRecord("your table name"); //add your table name

if (recGr.get('sysid of your record')) { //add sysid of the record
	var updManager = new GlideUpdateManager2();
        updManager.saveRecord(gr);
   
}&lt;/LI-CODE&gt;&lt;P&gt;or you can take the xml of the record and import it to target instance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can use this Add TO update set project&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.servicenow.com/connect.do#!/share/contents/9824957_add_to_update_set_utility?v=8.7&amp;amp;t=PRODUCT_DETAILS" target="_blank" rel="noopener"&gt;https://developer.servicenow.com/connect.do#!/share/contents/9824957_add_to_update_set_utility?v=8.7&amp;amp;t=PRODUCT_DETAILS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please mark my answer as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;helpful/correct&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;if it resolves your query.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Regards,&lt;BR /&gt;Chaitanya&lt;/I&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 05 Aug 2025 17:07:57 GMT</pubDate>
    <dc:creator>Chaitanya ILCR</dc:creator>
    <dc:date>2025-08-05T17:07:57Z</dc:date>
    <item>
      <title>Business Service not being logged in Update set</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-service-not-being-logged-in-update-set/m-p/3344165#M4156</link>
      <description>&lt;P&gt;I created a new business service in test however it is not being logged in my update set anywhere. Are business services not tracked in update sets? Would I just remake that bit in production and only retrieve my sets for my workflows and order guides?&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 16:40:20 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-service-not-being-logged-in-update-set/m-p/3344165#M4156</guid>
      <dc:creator>mgomez29</dc:creator>
      <dc:date>2025-08-05T16:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Business Service not being logged in Update set</title>
      <link>https://www.servicenow.com/community/community-central-forum/business-service-not-being-logged-in-update-set/m-p/3344182#M4157</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/910797"&gt;@mgomez29&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;only the tables with "&lt;EM&gt;&lt;STRONG&gt;update_synch&amp;nbsp;&lt;/STRONG&gt;&lt;/EM&gt;" attribute set to true will be captured in the update set&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0535262" target="_blank"&gt;https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0535262&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0656394" target="_blank" rel="noopener"&gt;https://support.servicenow.com/kb?id=kb_article_view&amp;amp;sysparm_article=KB0656394&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Business services are considered as data and the attributes update_synch is not add to that table&lt;/P&gt;&lt;P&gt;to add that record to the update set you can run below code&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var recGr = new GlideRecord("your table name"); //add your table name

if (recGr.get('sysid of your record')) { //add sysid of the record
	var updManager = new GlideUpdateManager2();
        updManager.saveRecord(gr);
   
}&lt;/LI-CODE&gt;&lt;P&gt;or you can take the xml of the record and import it to target instance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can use this Add TO update set project&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.servicenow.com/connect.do#!/share/contents/9824957_add_to_update_set_utility?v=8.7&amp;amp;t=PRODUCT_DETAILS" target="_blank" rel="noopener"&gt;https://developer.servicenow.com/connect.do#!/share/contents/9824957_add_to_update_set_utility?v=8.7&amp;amp;t=PRODUCT_DETAILS&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Please mark my answer as&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;helpful/correct&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/STRONG&gt;if it resolves your query.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;Regards,&lt;BR /&gt;Chaitanya&lt;/I&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Aug 2025 17:07:57 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/business-service-not-being-logged-in-update-set/m-p/3344182#M4157</guid>
      <dc:creator>Chaitanya ILCR</dc:creator>
      <dc:date>2025-08-05T17:07:57Z</dc:date>
    </item>
  </channel>
</rss>

