<?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 Emptying a glide_list field in Community Central forum</title>
    <link>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238489#M2783</link>
    <description>&lt;P&gt;Hello everyone!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope you are all doing well. I have a question regaring the field "Type" from the table&amp;nbsp;sys_user_group. Basically we have a business rule running after a deletion. I'll leave the code here (EDIT):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;LI-CODE lang="markup"&gt;(function executeRule(current, previous /*null when async*/ ) {

    // Get the group name from the deleted group-role record
    var groupName = current.group.name.toString();
    var fulfillerType = false;
    var approverType = false;


    // Collect all remaining roles for the group
    var roleGR = new GlideRecord('sys_group_has_role');
    roleGR.addQuery('group', current.group.toString());
    roleGR.query();

    var remainingRoleIds = [];
    while (roleGR.next()) {
        remainingRoleIds.push(roleGR.role.name.toString()); // Use sys_id for proper license_role lookup
    }

    gs.addInfoMessage(remainingRoleIds.join(',').toString());
    // Now check license_role table for any roles that are of type 'fulfiller' or 'approver'
    if (remainingRoleIds.length &amp;gt; 0) {
        var licenseGR = new GlideRecord('license_role');
        //licenseGR.addQuery('name', 'IN', remainingRoleIds.join(',').toString());
        licenseGR.addEncodedQuery('license_role_typeSTARTSWITHFulfiller^ORlicense_role_typeSTARTSWITHApprover^nameIN' + remainingRoleIds.join(',').toString());
        licenseGR.query();

        if (licenseGR.hasNext()) {
            gs.addInfoMessage('Group "' + groupName + '" still has fulfiller or approver roles assigned.');
            while (licenseGR.next()) {
                var roleType = licenseGR.license_role_type.toString();
                var roleName = licenseGR.name.toString();
                gs.addInfoMessage(roleName + ': ' + roleType);

                if (roleType == 'fulfiller') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Fulfiller');
                    fulfillerType = true;
                } else if (roleType == 'approver') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Approver');
                    approverType = true;
                }
            }
        } else {
            gs.info('Group "' + groupName + '" no longer has any fulfiller or approver roles.');
        }
    }


    var groupGR = new GlideRecord('sys_user_group');
    if (fulfillerType &amp;amp;&amp;amp; approverType) {
        if (groupGR.get(current.group.toString())) {
            groupTypes = ['9c774e5dfb7ce61468bcfcbaaeefdc6a', '96c782ddfb7ce61468bcfcbaaeefdcd5']; // Sys_id Fulfiller Type &amp;amp; Approver Type
            groupGR.type = groupTypes.join(',');
            groupGR.update();
            gs.addInfoMessage('UPDATED BOTH');
        }
    } else if (fulfillerType &amp;amp;&amp;amp; !approverType) {
        if (groupGR.get(current.group.toString())) {
            groupTypes = ['9c774e5dfb7ce61468bcfcbaaeefdc6a']; // Sys_id Fulfiller Type
            groupGR.type = groupTypes.join(',');
            groupGR.update();
            gs.addInfoMessage('UPDATED FULFILLER');
        }
    } else if (approverType &amp;amp;&amp;amp; !fulfillerType) {
        if (groupGR.get(current.group.toString())) {
            groupTypes = ['96c782ddfb7ce61468bcfcbaaeefdcd5']; // Sys_id Approver Type
            groupGR.type = groupTypes.join(',');
            groupGR.update();
            gs.addInfoMessage('UPDATED APPROVER');
        }
    } else {
        groupTypes = ['']; // Sys_id Approver Type
        groupGR.type = groupTypes.join(',');
        groupGR.update();
        gs.addInfoMessage('REMOVED ALL ROLES');
    }


})(current, previous);&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Everything on this Business Rule runs well, except the else. When we don't find any roles that are from the type "Approver" or "Fulfiller" we basically want to empty the field "Type" on sys_user_group. On any of the conditions it fills the field with the right type, if there's one of each or more left it gets both types on the field, if it finds atleast one from both it also fills the field well. Problem is if it doesn't find any types on the form or if there are no roles associated at all. It enters our else, shows the info message we have for debug but doesn't clear the value. How can we make this work?&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks in advance!&lt;/DIV&gt;</description>
    <pubDate>Tue, 15 Apr 2025 15:22:14 GMT</pubDate>
    <dc:creator>joaopalmeida</dc:creator>
    <dc:date>2025-04-15T15:22:14Z</dc:date>
    <item>
      <title>Emptying a glide_list field</title>
      <link>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238489#M2783</link>
      <description>&lt;P&gt;Hello everyone!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope you are all doing well. I have a question regaring the field "Type" from the table&amp;nbsp;sys_user_group. Basically we have a business rule running after a deletion. I'll leave the code here (EDIT):&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;LI-CODE lang="markup"&gt;(function executeRule(current, previous /*null when async*/ ) {

    // Get the group name from the deleted group-role record
    var groupName = current.group.name.toString();
    var fulfillerType = false;
    var approverType = false;


    // Collect all remaining roles for the group
    var roleGR = new GlideRecord('sys_group_has_role');
    roleGR.addQuery('group', current.group.toString());
    roleGR.query();

    var remainingRoleIds = [];
    while (roleGR.next()) {
        remainingRoleIds.push(roleGR.role.name.toString()); // Use sys_id for proper license_role lookup
    }

    gs.addInfoMessage(remainingRoleIds.join(',').toString());
    // Now check license_role table for any roles that are of type 'fulfiller' or 'approver'
    if (remainingRoleIds.length &amp;gt; 0) {
        var licenseGR = new GlideRecord('license_role');
        //licenseGR.addQuery('name', 'IN', remainingRoleIds.join(',').toString());
        licenseGR.addEncodedQuery('license_role_typeSTARTSWITHFulfiller^ORlicense_role_typeSTARTSWITHApprover^nameIN' + remainingRoleIds.join(',').toString());
        licenseGR.query();

        if (licenseGR.hasNext()) {
            gs.addInfoMessage('Group "' + groupName + '" still has fulfiller or approver roles assigned.');
            while (licenseGR.next()) {
                var roleType = licenseGR.license_role_type.toString();
                var roleName = licenseGR.name.toString();
                gs.addInfoMessage(roleName + ': ' + roleType);

                if (roleType == 'fulfiller') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Fulfiller');
                    fulfillerType = true;
                } else if (roleType == 'approver') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Approver');
                    approverType = true;
                }
            }
        } else {
            gs.info('Group "' + groupName + '" no longer has any fulfiller or approver roles.');
        }
    }


    var groupGR = new GlideRecord('sys_user_group');
    if (fulfillerType &amp;amp;&amp;amp; approverType) {
        if (groupGR.get(current.group.toString())) {
            groupTypes = ['9c774e5dfb7ce61468bcfcbaaeefdc6a', '96c782ddfb7ce61468bcfcbaaeefdcd5']; // Sys_id Fulfiller Type &amp;amp; Approver Type
            groupGR.type = groupTypes.join(',');
            groupGR.update();
            gs.addInfoMessage('UPDATED BOTH');
        }
    } else if (fulfillerType &amp;amp;&amp;amp; !approverType) {
        if (groupGR.get(current.group.toString())) {
            groupTypes = ['9c774e5dfb7ce61468bcfcbaaeefdc6a']; // Sys_id Fulfiller Type
            groupGR.type = groupTypes.join(',');
            groupGR.update();
            gs.addInfoMessage('UPDATED FULFILLER');
        }
    } else if (approverType &amp;amp;&amp;amp; !fulfillerType) {
        if (groupGR.get(current.group.toString())) {
            groupTypes = ['96c782ddfb7ce61468bcfcbaaeefdcd5']; // Sys_id Approver Type
            groupGR.type = groupTypes.join(',');
            groupGR.update();
            gs.addInfoMessage('UPDATED APPROVER');
        }
    } else {
        groupTypes = ['']; // Sys_id Approver Type
        groupGR.type = groupTypes.join(',');
        groupGR.update();
        gs.addInfoMessage('REMOVED ALL ROLES');
    }


})(current, previous);&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Everything on this Business Rule runs well, except the else. When we don't find any roles that are from the type "Approver" or "Fulfiller" we basically want to empty the field "Type" on sys_user_group. On any of the conditions it fills the field with the right type, if there's one of each or more left it gets both types on the field, if it finds atleast one from both it also fills the field well. Problem is if it doesn't find any types on the form or if there are no roles associated at all. It enters our else, shows the info message we have for debug but doesn't clear the value. How can we make this work?&lt;/P&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thanks in advance!&lt;/DIV&gt;</description>
      <pubDate>Tue, 15 Apr 2025 15:22:14 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238489#M2783</guid>
      <dc:creator>joaopalmeida</dc:creator>
      <dc:date>2025-04-15T15:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: Emptying a glide_list field</title>
      <link>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238505#M2784</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/617970"&gt;@joaopalmeida&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try this&lt;/P&gt;
&lt;P&gt;Changes done&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Query the sys_user_group record: Ensure the groupGR object is queried for the current group before updating the type field.&lt;/LI&gt;
&lt;LI&gt;Clear the type field: Set groupGR.type to an empty string to clear the field when no roles of type "Approver" or "Fulfiller" are found.&lt;/LI&gt;
&lt;/OL&gt;
&lt;LI-CODE lang="javascript"&gt;(function executeRule(current, previous /*null when async*/) {
    // Get the group name from the deleted group-role record
    var groupName = current.group.name.toString();
    var fulfillerType = false;
    var approverType = false;

    // Collect all remaining roles for the group
    var roleGR = new GlideRecord('sys_group_has_role');
    roleGR.addQuery('group', current.group.toString());
    roleGR.query();

    var remainingRoleIds = [];
    while (roleGR.next()) {
        remainingRoleIds.push(roleGR.role.name.toString()); // Use sys_id for proper license_role lookup
    }

    gs.addInfoMessage(remainingRoleIds.join(',').toString());

    // Now check license_role table for any roles that are of type 'fulfiller' or 'approver'
    if (remainingRoleIds.length &amp;gt; 0) {
        var licenseGR = new GlideRecord('license_role');
        licenseGR.addEncodedQuery('license_role_typeSTARTSWITHFulfiller^ORlicense_role_typeSTARTSWITHApprover^nameIN' + remainingRoleIds.join(',').toString());
        licenseGR.query();

        if (licenseGR.hasNext()) {
            gs.addInfoMessage('Group "' + groupName + '" still has fulfiller or approver roles assigned.');
            while (licenseGR.next()) {
                var roleType = licenseGR.license_role_type.toString();
                var roleName = licenseGR.name.toString();
                gs.addInfoMessage(roleName + ': ' + roleType);

                if (roleType == 'fulfiller') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Fulfiller');
                    fulfillerType = true;
                } else if (roleType == 'approver') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Approver');
                    approverType = true;
                }
            }
        } else {
            gs.info('Group "' + groupName + '" no longer has any fulfiller or approver roles.');
        }
    }

    // Update the group type field
    var groupGR = new GlideRecord('sys_user_group');
    if (groupGR.get(current.group.toString())) {
        if (fulfillerType &amp;amp;&amp;amp; roleGR.getRowCount() &amp;lt;= 1 || approverType &amp;amp;&amp;amp; roleGR.getRowCount() &amp;lt;= 1 || !approverType &amp;amp;&amp;amp; !fulfillerType) {
            groupGR.type = ''; // Clear the type field
            groupGR.update();
            gs.addInfoMessage('REMOVED ALL ROLES');
        }
    }
})(current, previous);
&lt;/LI-CODE&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 15:00:51 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238505#M2784</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-04-15T15:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: Emptying a glide_list field</title>
      <link>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238532#M2785</link>
      <description>&lt;P&gt;Hi &lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/265966"&gt;@Ankur Bawiskar&lt;/a&gt;&amp;nbsp;, I was actually mistaken when sending this snipped. This is from another business rule, the one we have working is this one:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;(function executeRule(current, previous /*null when async*/ ) {

    // Get the group name from the deleted group-role record
    var groupName = current.group.name.toString();
    var fulfillerType = false;
    var approverType = false;


    // Collect all remaining roles for the group
    var roleGR = new GlideRecord('sys_group_has_role');
    roleGR.addQuery('group', current.group.toString());
    roleGR.query();

    var remainingRoleIds = [];
    while (roleGR.next()) {
        remainingRoleIds.push(roleGR.role.name.toString()); // Use sys_id for proper license_role lookup
    }

    gs.addInfoMessage(remainingRoleIds.join(',').toString());
    // Now check license_role table for any roles that are of type 'fulfiller' or 'approver'
    if (remainingRoleIds.length &amp;gt; 0) {
        var licenseGR = new GlideRecord('license_role');
        //licenseGR.addQuery('name', 'IN', remainingRoleIds.join(',').toString());
        licenseGR.addEncodedQuery('license_role_typeSTARTSWITHFulfiller^ORlicense_role_typeSTARTSWITHApprover^nameIN' + remainingRoleIds.join(',').toString());
        licenseGR.query();

        if (licenseGR.hasNext()) {
            gs.addInfoMessage('Group "' + groupName + '" still has fulfiller or approver roles assigned.');
            while (licenseGR.next()) {
                var roleType = licenseGR.license_role_type.toString();
                var roleName = licenseGR.name.toString();
                gs.addInfoMessage(roleName + ': ' + roleType);

                if (roleType == 'fulfiller') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Fulfiller');
                    fulfillerType = true;
                } else if (roleType == 'approver') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Approver');
                    approverType = true;
                }
            }
        } else {
            gs.info('Group "' + groupName + '" no longer has any fulfiller or approver roles.');
        }
    }


    var groupGR = new GlideRecord('sys_user_group');
    if (fulfillerType &amp;amp;&amp;amp; approverType) {
        if (groupGR.get(current.group.toString())) {
            groupTypes = ['9c774e5dfb7ce61468bcfcbaaeefdc6a', '96c782ddfb7ce61468bcfcbaaeefdcd5']; // Sys_id Fulfiller Type &amp;amp; Approver Type
            groupGR.type = groupTypes.join(',');
            groupGR.update();
            gs.addInfoMessage('UPDATED BOTH');
        }
    } else if (fulfillerType &amp;amp;&amp;amp; !approverType) {
        if (groupGR.get(current.group.toString())) {
            groupTypes = ['9c774e5dfb7ce61468bcfcbaaeefdc6a']; // Sys_id Fulfiller Type
            groupGR.type = groupTypes.join(',');
            groupGR.update();
            gs.addInfoMessage('UPDATED FULFILLER');
        }
    } else if (approverType &amp;amp;&amp;amp; !fulfillerType) {
        if (groupGR.get(current.group.toString())) {
            groupTypes = ['96c782ddfb7ce61468bcfcbaaeefdcd5']; // Sys_id Approver Type
            groupGR.type = groupTypes.join(',');
            groupGR.update();
            gs.addInfoMessage('UPDATED APPROVER');
        }
    } else {
        groupTypes = ['']; // Sys_id Approver Type
        groupGR.type = groupTypes.join(',');
        groupGR.update();
        gs.addInfoMessage('REMOVED ALL ROLES');
    }


})(current, previous);&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 15 Apr 2025 15:20:37 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238532#M2785</guid>
      <dc:creator>joaopalmeida</dc:creator>
      <dc:date>2025-04-15T15:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Emptying a glide_list field</title>
      <link>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238545#M2786</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/617970"&gt;@joaopalmeida&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;so is this script working as expected?&lt;/P&gt;
&lt;P&gt;If yes then close the thread by marking your own response as correct.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 15:36:27 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238545#M2786</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-04-15T15:36:27Z</dc:date>
    </item>
    <item>
      <title>Re: Emptying a glide_list field</title>
      <link>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238550#M2787</link>
      <description>&lt;P&gt;No&amp;nbsp;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/265966"&gt;@Ankur Bawiskar&lt;/a&gt;. Everything here runs correct until it enters the last else. It shows the InfoMessage present inside, but it doesn't clear the field value as it's supposed&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 15:39:05 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238550#M2787</guid>
      <dc:creator>joaopalmeida</dc:creator>
      <dc:date>2025-04-15T15:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Emptying a glide_list field</title>
      <link>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238562#M2788</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/617970"&gt;@joaopalmeida&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;try this&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;(function executeRule(current, previous /*null when async*/ ) {
    // Get the group name from the deleted group-role record
    var groupName = current.group.name.toString();
    var fulfillerType = false;
    var approverType = false;

    // Collect all remaining roles for the group
    var roleGR = new GlideRecord('sys_group_has_role');
    roleGR.addQuery('group', current.group.toString());
    roleGR.query();

    var remainingRoleIds = [];
    while (roleGR.next()) {
        remainingRoleIds.push(roleGR.role.name.toString()); // Use sys_id for proper license_role lookup
    }

    gs.addInfoMessage(remainingRoleIds.join(',').toString());

    // Now check license_role table for any roles that are of type 'fulfiller' or 'approver'
    if (remainingRoleIds.length &amp;gt; 0) {
        var licenseGR = new GlideRecord('license_role');
        licenseGR.addEncodedQuery('license_role_typeSTARTSWITHFulfiller^ORlicense_role_typeSTARTSWITHApprover^nameIN' + remainingRoleIds.join(',').toString());
        licenseGR.query();

        if (licenseGR.hasNext()) {
            gs.addInfoMessage('Group "' + groupName + '" still has fulfiller or approver roles assigned.');
            while (licenseGR.next()) {
                var roleType = licenseGR.license_role_type.toString();
                var roleName = licenseGR.name.toString();
                gs.addInfoMessage(roleName + ': ' + roleType);

                if (roleType == 'fulfiller') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Fulfiller');
                    fulfillerType = true;
                } else if (roleType == 'approver') {
                    gs.addInfoMessage('Role: ' + roleName + ' - Approver');
                    approverType = true;
                }
            }
        } else {
            gs.info('Group "' + groupName + '" no longer has any fulfiller or approver roles.');
        }
    }

    var groupGR = new GlideRecord('sys_user_group');
    if (groupGR.get(current.group.toString())) {
        if (fulfillerType &amp;amp;&amp;amp; approverType) {
            groupGR.type = '9c774e5dfb7ce61468bcfcbaaeefdc6a,96c782ddfb7ce61468bcfcbaaeefdcd5'; // Sys_id Fulfiller Type &amp;amp; Approver Type
            groupGR.update();
            gs.addInfoMessage('UPDATED BOTH');
        } else if (fulfillerType &amp;amp;&amp;amp; !approverType) {
            groupGR.type = '9c774e5dfb7ce61468bcfcbaaeefdc6a'; // Sys_id Fulfiller Type
            groupGR.update();
            gs.addInfoMessage('UPDATED FULFILLER');
        } else if (approverType &amp;amp;&amp;amp; !fulfillerType) {
            groupGR.type = '96c782ddfb7ce61468bcfcbaaeefdcd5'; // Sys_id Approver Type
            groupGR.update();
            gs.addInfoMessage('UPDATED APPROVER');
        } else {
            groupGR.type = ''; // Clear the type field
            groupGR.update();
            gs.addInfoMessage('REMOVED ALL ROLES');
        }
    }
})(current, previous);&lt;/LI-CODE&gt;
&lt;P&gt;If my response helped please mark it correct and close the thread so that it benefits future readers.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 15:51:21 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3238562#M2788</guid>
      <dc:creator>Ankur Bawiskar</dc:creator>
      <dc:date>2025-04-15T15:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Emptying a glide_list field</title>
      <link>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3239944#M2808</link>
      <description>&lt;P&gt;&lt;a href="https://www.servicenow.com/community/user/viewprofilepage/user-id/265966"&gt;@Ankur Bawiskar&lt;/a&gt;&amp;nbsp;Thanks! It worked like a charm.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Apr 2025 17:24:44 GMT</pubDate>
      <guid>https://www.servicenow.com/community/community-central-forum/emptying-a-glide-list-field/m-p/3239944#M2808</guid>
      <dc:creator>joaopalmeida</dc:creator>
      <dc:date>2025-04-16T17:24:44Z</dc:date>
    </item>
  </channel>
</rss>

