<?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>New article articles in Service Management</title>
    <link>https://www.servicenow.com/community/service-management/ct-p/service-management</link>
    <description>New article articles in Service Management</description>
    <pubDate>Tue, 23 Jun 2026 22:50:47 GMT</pubDate>
    <dc:creator>service-management</dc:creator>
    <dc:date>2026-06-23T22:50:47Z</dc:date>
    <item>
      <title>Dynamic template for users to fill out.</title>
      <link>https://www.servicenow.com/community/service-management-articles/dynamic-template-for-users-to-fill-out/ta-p/3458388</link>
      <description>&lt;P&gt;In record producers for e.g. incident creation”, we often ask users to give a description of their problem. But did you know that you can provide a dynamic template for the user to fill out directly in the description and which can change dynamically based on form selection.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How to do this:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;In a record producer create a catalog client script which calls a glideajax/script include:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;    var ga = new GlideAjax('UIMessageAjax');
    ga.addParam('sysparm_name', 'getMappingForValue');
    ga.addParam('sysparm_application_service', newValue); // sys_id
    ga.getXMLAnswer(function(response) {
        var answer = JSON.parse(response || '{}');
        var templateKey = answer.templateKey;

        if (!templateKey) {
            g_form.setValue('description', '');
            return;
        }&lt;/LI-CODE&gt;
&lt;P&gt;The script include will then utilize the decisiontableAPI to fetch the unique key value from sys_ui_message based on the input from the e.g. selected application on the form or whatever input you chose and whatever you have mapped in your decision table.&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var appServiceSysId = this.getParameter('sysparm_application_service');
        appServiceSysId = String(appServiceSysId);

        try {

            var inputs = {};
            inputs['u_application'] = appServiceSysId;

            var dtSysId = '(SYSID of the decision table)';

            var dt = new sn_dt.DecisionTableAPI();
            var response = dt.getDecision(dtSysId, inputs);
            var result_elements = response.result_elements;

            var u_templateKey = result_elements.u_templatekey.getValue();

            //Return value to the client script
            var result = {
                templateKey: u_templateKey
            };
            return JSON.stringify(result);&lt;/LI-CODE&gt;
&lt;P&gt;After they key has been fetched, the template text will be fetched based on the key and inserted into the description field on the form (the actual template) for the user to fill out by another glideajax:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;    function fetchMessageAjax(key, variableName) {
        var ga = new GlideAjax('UIMessageAjax');
        ga.addParam('sysparm_name', 'getMessageByKey');
        ga.addParam('sysparm_key', key);
        ga.getXMLAnswer(function(response) {
            g_form.setValue(variableName, response || '');&lt;/LI-CODE&gt;
&lt;P&gt;And then by the script include:&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;    getMessageByKey: function() {
        var key = (this.getParameter('sysparm_key') || '').trim();
        if (!key) return '';

        var gr = new GlideRecord('sys_ui_message');
        gr.addQuery('sys_id', key);
        gr.query();
        if (gr.next()) {
            var msg = gr.getValue('message'); // returns raw message HTML
            return msg;&lt;/LI-CODE&gt;
&lt;P&gt;This approach is quite handy when there is something that is nice to be informed about but not needed to have and it's scalable, as you only need to enhance your decision table and off course the message in the sys_ui_message table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For information that is needed, I would always go for a mandatory variable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 22:46:48 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-articles/dynamic-template-for-users-to-fill-out/ta-p/3458388</guid>
      <dc:creator>AndersBGS</dc:creator>
      <dc:date>2025-12-30T22:46:48Z</dc:date>
    </item>
    <item>
      <title>🔍 Global search is missing from instance?</title>
      <link>https://www.servicenow.com/community/service-management-articles/global-search-is-missing-from-instance/ta-p/3458384</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_14-1767133586037.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493338i2CDBE0B95CFBEE0C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_14-1767133586037.png" alt="tiagomacul_14-1767133586037.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-path-to-node="4"&gt;&lt;FONT dir="auto"&gt;&lt;A href="https://www.servicenow.com/community/brazil-snug/a-busca-global-n%C3%A3o-aparece-na-inst%C3%A2ncia-global-search-is-missing/ta-p/3457725" target="_self"&gt;Leia em português&lt;/A&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-path-to-node="4"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-path-to-node="4"&gt;&lt;FONT dir="auto"&gt;The global search bar is essential for the day-to-day agility of ServiceNow. When it simply&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;STRONG data-path-to-node="4" data-index-in-node="105"&gt;&lt;FONT dir="auto"&gt;doesn't appear&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;, it can disrupt the workflow of the entire team.&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-path-to-node="5"&gt;&lt;STRONG data-path-to-node="5" data-index-in-node="93"&gt;&lt;FONT dir="auto"&gt;This guide details how to diagnose and correct this problem using the Global Text Search&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;settings&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and supplementing&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;STRONG data-path-to-node="5" data-index-in-node="131"&gt;&lt;A class="ng-star-inserted" href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://support.servicenow.com/kb?id%3Dkb_article_view%26sysparm_article%3DKB2112361" target="_blank" rel="noopener noreferrer" data-hveid="0" data-ved="0CAAQ_4QMahgKEwjC8srX2eORAxUAAAAAHQAAAAAQnQE"&gt;&lt;FONT dir="auto"&gt;KB2112361&lt;/FONT&gt;&lt;/A&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-path-to-node="5"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-path-to-node="5"&gt;&lt;FONT dir="auto"&gt;If I haven't been clear enough about the context of the behavior:&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-path-to-node="5"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P data-path-to-node="5"&gt;&lt;FONT dir="auto"&gt;What is unexpected?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_0-1767133485715.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493328i817F9CE30FFF6C00/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_0-1767133485715.png" alt="tiagomacul_0-1767133485715.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT dir="auto"&gt;Notice that in the image above we don't have the global marker, but in the image below the global marker appears.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_1-1767133485736.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493330i4F6A06BDFA986918/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_1-1767133485736.png" alt="tiagomacul_1-1767133485736.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;HR data-path-to-node="6" /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_2-1767133485483.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493329iFB60183D53094825/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_2-1767133485483.png" alt="tiagomacul_2-1767133485483.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2 id="toc-hId-449261367" data-path-to-node="7"&gt;&lt;FONT dir="auto"&gt;Step 1: Checking System Properties&lt;/FONT&gt;&lt;/H2&gt;
&lt;P data-path-to-node="8"&gt;&lt;FONT dir="auto"&gt;Often, the feature is simply disabled in the global settings. To check, follow the path below as illustrated in the image:&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-path-to-node="9"&gt;&lt;STRONG data-path-to-node="9" data-index-in-node="0"&gt;&lt;FONT dir="auto"&gt;Navigation Route:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;OL start="1" data-path-to-node="10"&gt;
&lt;LI&gt;
&lt;P data-path-to-node="10,0,0"&gt;&lt;FONT dir="auto"&gt;In the main menu, click on the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;STRONG data-path-to-node="10,0,0" data-index-in-node="33"&gt;&lt;FONT dir="auto"&gt;All&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;tab .&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P data-path-to-node="10,1,0"&gt;&lt;FONT dir="auto"&gt;In the filter field (Filter Navigator), type:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;CODE data-path-to-node="10,1,0" data-index-in-node="47"&gt;global text search&lt;/CODE&gt;&lt;FONT dir="auto"&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P data-path-to-node="10,2,0"&gt;&lt;FONT dir="auto"&gt;Find and click:&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;STRONG data-path-to-node="10,2,0" data-index-in-node="22"&gt;&lt;FONT dir="auto"&gt;System Properties &amp;gt; Global Text Search&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_3-1767133485730.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493331iDFCCCA6D516D0C99/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_3-1767133485730.png" alt="tiagomacul_3-1767133485730.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;H3 id="toc-hId-1139822841" data-path-to-node="11"&gt;&amp;nbsp;&lt;/H3&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId--667631622" data-path-to-node="11"&gt;&lt;STRONG&gt;&lt;FONT dir="auto"&gt;Key Property:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/H3&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_4-1767133485699.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493333i2BB7EF0D14782533/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_4-1767133485699.png" alt="tiagomacul_4-1767133485699.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;P data-path-to-node="12"&gt;&lt;FONT dir="auto"&gt;Within this screen, look for the property:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL data-path-to-node="13"&gt;
&lt;LI&gt;
&lt;P data-path-to-node="13,0,0"&gt;&lt;STRONG data-path-to-node="13,0,0" data-index-in-node="0"&gt;&lt;FONT dir="auto"&gt;Name:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE data-path-to-node="13,0,0" data-index-in-node="6"&gt;glide.ui.text_search.enable&lt;/CODE&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P data-path-to-node="13,1,0"&gt;&lt;STRONG data-path-to-node="13,1,0" data-index-in-node="0"&gt;&lt;FONT dir="auto"&gt;Value:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Make sure it is set to&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;STRONG data-path-to-node="13,1,0" data-index-in-node="47"&gt;&lt;FONT dir="auto"&gt;true&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;LI-CODE lang="javascript"&gt;https://&amp;lt;instance&amp;gt;.service-now.com/now/nav/ui/classic/params/target/sys_properties_list.do%3Fsysparm_query%3Dname%253Dglide.ui.text_search.enable%26sysparm_first_row%3D1%26sysparm_view%3D&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE data-path-to-node="14"&gt;
&lt;P data-path-to-node="14,0"&gt;&lt;STRONG data-path-to-node="14,0" data-index-in-node="0"&gt;&lt;FONT dir="auto"&gt;Note:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If global search does not appear even with this property enabled, the system may be experiencing a cache or permission conflict.&lt;/FONT&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;HR data-path-to-node="15" /&gt;
&lt;H2 id="toc-hId--678134726" data-path-to-node="16"&gt;&amp;nbsp;&lt;/H2&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_5-1767133485487.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493332i5186001A492705C6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_5-1767133485487.png" alt="tiagomacul_5-1767133485487.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2 id="toc-hId-1809378107" data-path-to-node="16"&gt;&lt;FONT dir="auto"&gt;Step 2: Other Common Causes&lt;/FONT&gt;&lt;/H2&gt;
&lt;P data-path-to-node="17"&gt;&lt;FONT dir="auto"&gt;If the above information is correct and the magnifying glass icon still doesn't appear, check these points:&lt;/FONT&gt;&lt;/P&gt;
&lt;H3 id="toc-hId--1795027715" data-path-to-node="18"&gt;&lt;FONT dir="auto"&gt;1. AI Search Configuration (Next Experience)&lt;/FONT&gt;&lt;/H3&gt;
&lt;P data-path-to-node="19"&gt;&lt;FONT dir="auto"&gt;In recent instances, the standard search has been replaced by&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;STRONG data-path-to-node="19" data-index-in-node="60"&gt;&lt;FONT dir="auto"&gt;AI Search&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;UL data-path-to-node="20"&gt;
&lt;LI&gt;
&lt;P data-path-to-node="20,0,0"&gt;&lt;STRONG data-path-to-node="20,0,0" data-index-in-node="0"&gt;&lt;FONT dir="auto"&gt;Verification:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;If AI Search is enabled but the search profile&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;I data-path-to-node="20,0,0" data-index-in-node="70"&gt;&lt;FONT dir="auto"&gt;is&lt;/FONT&gt;&lt;/I&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;not configured for your application's header, the search bar will be invisible.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId-692485118" data-path-to-node="21"&gt;&lt;FONT dir="auto"&gt;2. Roles and Permissions&lt;/FONT&gt;&lt;/H3&gt;
&lt;P data-path-to-node="22"&gt;&lt;FONT dir="auto"&gt;The global search can be restricted to specific roles.&lt;/FONT&gt;&lt;/P&gt;
&lt;UL data-path-to-node="23"&gt;
&lt;LI&gt;
&lt;P data-path-to-node="23,0,0"&gt;&lt;STRONG data-path-to-node="23,0,0" data-index-in-node="0"&gt;&lt;FONT dir="auto"&gt;Test:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Check if the search appears for the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;STRONG data-path-to-node="23,0,0" data-index-in-node="51"&gt;&lt;FONT dir="auto"&gt;Admin&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;user . If it only appears for them, review the table permissions&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;CODE data-path-to-node="23,0,0" data-index-in-node="118"&gt;sys_search_scope&lt;/CODE&gt;&lt;FONT dir="auto"&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_6-1767133485914.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493334iF78AE97C2031B8EF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_6-1767133485914.png" alt="tiagomacul_6-1767133485914.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;H3 id="toc-hId--1114969345" data-path-to-node="24"&gt;&lt;FONT dir="auto"&gt;3. Plugins Disabled&lt;/FONT&gt;&lt;/H3&gt;
&lt;P data-path-to-node="25"&gt;&lt;FONT dir="auto"&gt;Functionality depends on the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;STRONG data-path-to-node="25" data-index-in-node="43"&gt;&lt;FONT dir="auto"&gt;Zing&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;or&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;STRONG data-path-to-node="25" data-index-in-node="51"&gt;&lt;FONT dir="auto"&gt;AI Search&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;search engine . Check if the base plugins (such as the one provided&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;CODE data-path-to-node="25" data-index-in-node="99"&gt;com.glide.sn_zig&lt;/CODE&gt;&lt;FONT dir="auto"&gt;) are active.&lt;/FONT&gt;&lt;/P&gt;
&lt;P data-path-to-node="25"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_7-1767133485488.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493335iC9F6220D8EF691C9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_7-1767133485488.png" alt="tiagomacul_7-1767133485488.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId-1372543488" data-path-to-node="11,0"&gt;&lt;FONT dir="auto"&gt;Step 3: Validation in Next Experience (UX Page Properties)&lt;/FONT&gt;&lt;/H3&gt;
&lt;P data-path-to-node="11,1"&gt;&lt;FONT dir="auto"&gt;If your instance uses the new interface (Polaris), global search depends on a specific page property.&lt;/FONT&gt;&lt;/P&gt;
&lt;OL start="1" data-path-to-node="11,2"&gt;
&lt;LI&gt;
&lt;P data-path-to-node="11,2,0,0"&gt;&lt;FONT dir="auto"&gt;Navigate to the property&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;CODE data-path-to-node="11,2,0,0" data-index-in-node="20"&gt;globalSearchDataConfigId&lt;/CODE&gt;&lt;FONT dir="auto"&gt;via this direct link:&lt;/FONT&gt;&lt;CODE data-path-to-node="11,2,0,0" data-index-in-node="72"&gt;/nav_to.do?uri=sys_ux_page_property.do?sys_id=33922957c7b32010099a308dc7c26072&lt;/CODE&gt;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;https://&amp;lt;instance&amp;gt;.service-now.com/now/nav/ui/classic/params/target/sys_ux_page_property.do%3Fsys_id%3D33922957c7b32010099a308dc7c26072&lt;/LI-CODE&gt;
&lt;P data-path-to-node="11,2,0,0"&gt;&lt;CODE data-path-to-node="11,2,0,0" data-index-in-node="72"&gt;&lt;/CODE&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P data-path-to-node="11,2,1,0"&gt;&lt;STRONG data-path-to-node="11,2,1,0" data-index-in-node="9"&gt;&lt;FONT dir="auto"&gt;In the Value&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;field&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;, ensure there is a valid Sys ID pointing to your page's search configuration. If this field is empty or contains an incorrect ID, the search bar will not render.&lt;/FONT&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_8-1767133485443.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493336i751BF9878B2E3563/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_8-1767133485443.png" alt="tiagomacul_8-1767133485443.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT dir="auto"&gt;KB2112361&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&amp;nbsp;mentions reverting to a previous version, something that might not be available; I had the ID&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;A href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://support.servicenow.com/kb?id%3Dkb_article_view%26sysparm_article%3DKB2112361" target="_self" rel="noopener noreferrer"&gt;&lt;FONT dir="auto"&gt;.&lt;/FONT&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT dir="auto"&gt;c861cea2c7022010099a308dc7c26041&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT dir="auto"&gt;6ebf8fe1531201107f03ddeeff7b122b&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT dir="auto"&gt;These IDs refer to the sys_search_context_config table.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT dir="auto"&gt;[AIS] Next Experience Search Configuration&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE data-path-to-node="11,2,0,0" data-index-in-node="20"&gt;6ebf8fe1531201107f03ddeeff7b122b&amp;nbsp;&amp;nbsp;&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_9-1767133485809.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493337i02126F1CFB1349B7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_9-1767133485809.png" alt="tiagomacul_9-1767133485809.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;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT dir="auto"&gt;Now Experience Search Configuration&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;CODE data-path-to-node="11,2,0,0" data-index-in-node="20"&gt;c861cea2c7022010099a308dc7c26041&lt;/CODE&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_15-1767133638268.png" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493339i6D8A8C2D39CECAF6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_15-1767133638268.png" alt="tiagomacul_15-1767133638268.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;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR data-path-to-node="26" /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H2 id="toc-hId-1362040384" data-path-to-node="27"&gt;&lt;FONT dir="auto"&gt;Quick Verification Summary&lt;/FONT&gt;&lt;/H2&gt;
&lt;TABLE data-path-to-node="28"&gt;
&lt;THEAD&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;STRONG&gt;&lt;FONT dir="auto"&gt;Where to Check&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;STRONG&gt;&lt;FONT dir="auto"&gt;Action Needed&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/THEAD&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;SPAN data-path-to-node="28,1,0,0"&gt;&lt;STRONG data-path-to-node="28,1,0,0" data-index-in-node="0"&gt;&lt;FONT dir="auto"&gt;System Properties&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;SPAN data-path-to-node="28,1,1,0"&gt;&lt;CODE data-path-to-node="28,1,1,0" data-index-in-node="0"&gt;All &amp;gt; Global Text Search &amp;gt; glide.ui.text_search.enable = true&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;SPAN data-path-to-node="28,2,0,0"&gt;&lt;STRONG data-path-to-node="28,2,0,0" data-index-in-node="0"&gt;&lt;FONT dir="auto"&gt;AI Search&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;SPAN data-path-to-node="28,2,1,0"&gt;&lt;FONT dir="auto"&gt;Confirm that the service is "Active" and has generated indexes.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;&lt;SPAN data-path-to-node="28,3,0,0"&gt;&lt;STRONG data-path-to-node="28,3,0,0" data-index-in-node="0"&gt;&lt;FONT dir="auto"&gt;User Profiles&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;TD&gt;&lt;SPAN data-path-to-node="28,3,1,0"&gt;&lt;FONT dir="auto"&gt;Ensure that the user has the necessary role to view the search scope.&lt;/FONT&gt;&lt;/SPAN&gt;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;HR data-path-to-node="29" /&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;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="tiagomacul_16-1767133654735.jpeg" style="width: 400px;"&gt;&lt;img src="https://www.servicenow.com/community/image/serverpage/image-id/493340iF1E07F51C0B9A824/image-size/medium?v=v2&amp;amp;px=400" role="button" title="tiagomacul_16-1767133654735.jpeg" alt="tiagomacul_16-1767133654735.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H3 id="toc-hId-1357438379" data-path-to-node="30"&gt;&lt;FONT dir="auto"&gt;Official Technical Reference&lt;/FONT&gt;&lt;/H3&gt;
&lt;P&gt;&lt;FONT dir="auto"&gt;For details on known bugs in specific versions, please consult the official documentation:&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT dir="auto"&gt;Access&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/FONT&gt;&lt;A href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://support.servicenow.com/kb?id%3Dkb_article_view%26sysparm_article%3DKB2112361" target="_self" rel="noopener noreferrer"&gt;&lt;FONT dir="auto"&gt;KB2112361&lt;/FONT&gt;&lt;/A&gt;&lt;FONT dir="auto"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;(ServiceNow Support)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="pw-post-body-paragraph xj xk tt xl b xm xn xo xp xq xr xs xt xu xv xw xx xy xz ya yb yc yd ye yf yg ki bx" data-selectable-paragraph=""&gt;&lt;FONT dir="auto"&gt;Participate, join the communities, follow the posts:&lt;/FONT&gt;&lt;/P&gt;
&lt;UL class=""&gt;
&lt;LI id="cf30" class="xj xk tt xl b xm xn xo xp xq xr xs xt xu xv xw xx xy xz ya yb yc yd ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://www.youtube.com/@servicenowbr/" target="_blank" rel="noopener ugc nofollow noreferrer"&gt;&lt;FONT dir="auto"&gt;https://www.youtube.com/@servicenowbr/&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="bbcc" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://www.facebook.com/groups/servicenowbrasil" target="_blank" rel="noopener ugc nofollow noreferrer"&gt;&lt;FONT dir="auto"&gt;https://www.facebook.com/groups/servicenowbrasil&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="3884" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://www-servicenow-com.translate.goog/community/brazil-snug/tkb-p/snug-br-brazil-tkb-board?_x_tr_sl=pt&amp;amp;_x_tr_tl=en&amp;amp;_x_tr_hl=pt-BR&amp;amp;_x_tr_pto=wapp" target="_blank" rel="noopener ugc"&gt;&lt;FONT dir="auto"&gt;https://www.servicenow.com/community/brazil-snug/tkb-p/snug-br-brazil-tkb-board&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="b2ef" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://www.linkedin.com/groups/5134493/" target="_blank" rel="noopener ugc nofollow noreferrer"&gt;&lt;FONT dir="auto"&gt;https://www.linkedin.com/groups/5134493/&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="33aa" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://www-servicenow-com.translate.goog/community/user/viewprofilepage/user-id/73505?_x_tr_sl=pt&amp;amp;_x_tr_tl=en&amp;amp;_x_tr_hl=pt-BR&amp;amp;_x_tr_pto=wapp" target="_blank" rel="noopener ugc"&gt;&lt;FONT dir="auto"&gt;https://www.servicenow.com/community/user/viewprofilepage/user-id/73505&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="18fe" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://github.com/Tiagomacul/ServiceNow-scripts.git" target="_blank" rel="noopener ugc nofollow noreferrer"&gt;&lt;FONT dir="auto"&gt;https://github.com/Tiagomacul/&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="3b3b" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://www.tiktok.com/@servicenowbr" target="_blank" rel="noopener ugc nofollow noreferrer"&gt;&lt;FONT dir="auto"&gt;https://www.tiktok.com/@servicenowbr&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="3c68" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://open.spotify.com/show/1Qa4xVz7xXnKM9y9wggfT9" target="_blank" rel="noopener ugc nofollow noreferrer"&gt;&lt;FONT dir="auto"&gt;https://open.spotify.com/show/1Qa4xVz7xXnKM9y9wggfT9&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="55a0" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://join.slack.com/t/servicenowbrasil/shared_invite/zt-2sooa78s7-MWwcMxEdbktNjjIYRZfqHg" target="_blank" rel="noopener ugc nofollow noreferrer"&gt;&lt;FONT dir="auto"&gt;https://join.slack.com/t/servicenowbrasil/shared_invite/zt-2sooa78s7-MWwcMxEdbktNjjIYRZfqHg&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="2957" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://www-servicenow-com.translate.goog/community/user/viewprofilepage/user-id/73505?_x_tr_sl=pt&amp;amp;_x_tr_tl=en&amp;amp;_x_tr_hl=pt-BR&amp;amp;_x_tr_pto=wapp" target="_blank" rel="noopener ugc"&gt;&lt;FONT dir="auto"&gt;https://www.servicenow.com/community/user/viewprofilepage/user-id/73505&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI id="e438" class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A class="bf hs" href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://www.linkedin.com/in/tiagomacul/" target="_blank" rel="noopener ugc nofollow noreferrer"&gt;&lt;FONT dir="auto"&gt;https://www.linkedin.com/in/tiagomacul/&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;LI class="xj xk tt xl b xm yv xo xp xq yw xs xt xu yx xw xx xy yy ya yb yc yz ye yf yg za yt yu bx" data-selectable-paragraph=""&gt;&lt;A href="https://translate.google.com/website?sl=pt&amp;amp;tl=en&amp;amp;hl=pt-BR&amp;amp;client=webapp&amp;amp;u=https://circle.nowbridge.com.br/" target="_self" rel="nofollow noopener noreferrer"&gt;&lt;FONT dir="auto"&gt;https://circle.nowbridge.com.br/&lt;/FONT&gt;&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 30 Dec 2025 22:27:45 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-articles/global-search-is-missing-from-instance/ta-p/3458384</guid>
      <dc:creator>tiagomacul</dc:creator>
      <dc:date>2025-12-30T22:27:45Z</dc:date>
    </item>
    <item>
      <title>Extracting URL Parameters in ServiceNow Using Client Scripts</title>
      <link>https://www.servicenow.com/community/service-management-articles/extracting-url-parameters-in-servicenow-using-client-scripts/ta-p/3104601</link>
      <description>&lt;DIV class="eq er es et eu l"&gt;
&lt;ARTICLE&gt;
&lt;DIV class="l"&gt;
&lt;DIV class="l"&gt;
&lt;SECTION&gt;
&lt;DIV&gt;
&lt;DIV class="fj fk fl fm fn"&gt;
&lt;DIV class="ab cb"&gt;
&lt;DIV class="ci bh ev ew ex ey"&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;In ServiceNow, URL parameters are commonly used to pass data between forms, catalog items, or during redirection between records. Extracting these parameters can be crucial in various use cases, especially when you need to pre-fill fields or control the behavior of a form based on the information passed through the URL. Understanding how to efficiently grab URL parameters in ServiceNow can significantly enhance the functionality and user experience of your applications.&lt;/P&gt;
&lt;H1 id="29a9" class="ly lz fq bf ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv bk" data-selectable-paragraph=""&gt;Common Use Cases for Grabbing URL Parameters&lt;/H1&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld mw lf lg lh mx lj lk ll my ln lo lp mz lr ls lt na lv lw lx fj bk" data-selectable-paragraph=""&gt;URL parameters are widely used in ServiceNow for a variety of tasks. Some common use cases include:&lt;/P&gt;
&lt;OL class=""&gt;
&lt;LI id="9e97" class="la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx nb nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;Redirecting from an Incident Record to a Catalog Item:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;When redirecting from an Incident record to a Catalog Item, you may want to pass certain details, such as the Incident’s short description, caller information, or any other specific details related to the Incident. This helps create a seamless experience, allowing users to see relevant information when interacting with the catalog item.&lt;/LI&gt;
&lt;LI id="a954" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx nb nc nd bk" data-selectable-paragraph=""&gt;For example, you might want to pass the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;short_description&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;and&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;caller_id&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;as URL parameters when redirecting to a catalog item. By passing these parameters in the URL, you can pre-populate certain fields on the catalog item form.&lt;/LI&gt;
&lt;LI id="79ca" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx nb nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;Creating Requests from Incidents:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;When creating requests from incidents, it’s often necessary to pass additional information like the caller’s details, the short description of the incident, or any other relevant data to the request. These parameters can then be used to automatically fill out fields such as the “Requested For” field, which is often populated with the caller’s information.&lt;/LI&gt;
&lt;LI id="6104" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx nb nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;Linking Between Custom Forms:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Another common scenario is linking custom forms or tables and passing data between them. URL parameters allow for this transfer of information, making it easier to maintain context between different forms or tasks within ServiceNow.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H1 id="ad93" class="ly lz fq bf ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv bk" data-selectable-paragraph=""&gt;Example of a ServiceNow URL with Parameters&lt;/H1&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld mw lf lg lh mx lj lk ll my ln lo lp mz lr ls lt na lv lw lx fj bk" data-selectable-paragraph=""&gt;Consider a URL like the following that might be used in ServiceNow&lt;/P&gt;
&lt;PRE class="nn no np nq nr ns nm nt bp nu bb bk"&gt;&lt;SPAN class="nv lz fq nm b bg nw nx l ny nz" data-selectable-paragraph=""&gt;https://instanceName.service-now.com/incident.do?sys_id=-1&amp;amp;sysparm_query=active=&lt;SPAN class="hljs-literal"&gt;true&lt;/SPAN&gt;&amp;amp;sys_myParameter=hello&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;This URL contains the following parameters:&lt;/P&gt;
&lt;UL class=""&gt;
&lt;LI id="0ff6" class="la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;&lt;CODE class="cx nj nk nl nm b"&gt;sys_id&lt;/CODE&gt;: Identifies the unique record in ServiceNow (in this case, an incident record).&lt;/LI&gt;
&lt;LI id="8f1b" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;&lt;CODE class="cx nj nk nl nm b"&gt;sysparm_query&lt;/CODE&gt;: Specifies a query to filter records (e.g., to show only active incidents).&lt;/LI&gt;
&lt;LI id="addb" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;&lt;CODE class="cx nj nk nl nm b"&gt;sys_myParameter&lt;/CODE&gt;: A custom parameter that could be used for passing any value (in this case, the value&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;hello&lt;/CODE&gt;).&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;If you need to extract the value of the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;sys_myParameter&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;parameter from this URL, you can use different methods depending on the context in which the script is running (such as whether it's in the global scope or the portal).&lt;/P&gt;
&lt;H1 id="5a02" class="ly lz fq bf ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv bk" data-selectable-paragraph=""&gt;Extracting URL Parameters Using GlideURLV3 (Preferred Method)&lt;/H1&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld mw lf lg lh mx lj lk ll my ln lo lp mz lr ls lt na lv lw lx fj bk" data-selectable-paragraph=""&gt;ServiceNow provides the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="lc fr"&gt;GlideURLV3&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;API to work with URLs and extract parameters efficiently. The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="lc fr"&gt;GlideURLV3&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;API offers the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;getParam&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;method, which simplifies extracting URL parameters. This method is commonly used in non-portal environments, such as within ServiceNow forms or custom applications.&lt;/P&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;Here’s an example of how to use the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="lc fr"&gt;GlideURLV3&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;API in an&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="lc fr"&gt;onLoad&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;client script to extract a parameter:&lt;/P&gt;
&lt;PRE class="nn no np nq nr ns nm nt bp nu bb bk"&gt;&lt;SPAN class="nv lz fq nm b bg nw nx l ny nz" data-selectable-paragraph=""&gt;&lt;SPAN class="hljs-keyword"&gt;var&lt;/SPAN&gt; url = &lt;SPAN class="hljs-keyword"&gt;new&lt;/SPAN&gt; &lt;SPAN class="hljs-title.class"&gt;GlideURL&lt;/SPAN&gt;(&lt;SPAN class="hljs-variable.language"&gt;window&lt;/SPAN&gt;.&lt;SPAN class="hljs-property"&gt;location&lt;/SPAN&gt;.&lt;SPAN class="hljs-property"&gt;href&lt;/SPAN&gt;);&lt;BR /&gt;&lt;SPAN class="hljs-keyword"&gt;var&lt;/SPAN&gt; myParam = url.&lt;SPAN class="hljs-title.function"&gt;getParam&lt;/SPAN&gt;(&lt;SPAN class="hljs-string"&gt;'sys_myParameter'&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;In this example:&lt;/P&gt;
&lt;UL class=""&gt;
&lt;LI id="910f" class="la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;&lt;CODE class="cx nj nk nl nm b"&gt;window.location.href&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;is used to get the full URL of the current page.&lt;/LI&gt;
&lt;LI id="3b5f" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;getParam&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;method is called to extract the value of the parameter&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;sys_myParameter&lt;/CODE&gt;.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;This approach is simple and works seamlessly in non-portal environments, where GlideURLV3 is fully supported.&lt;/P&gt;
&lt;H1 id="3377" class="ly lz fq bf ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv bk" data-selectable-paragraph=""&gt;Handling URL Parameters in the ServiceNow Portal (Legacy Approach)&lt;/H1&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld mw lf lg lh mx lj lk ll my ln lo lp mz lr ls lt na lv lw lx fj bk" data-selectable-paragraph=""&gt;While&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="lc fr"&gt;GlideURLV3&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;works well in ServiceNow forms and custom applications, it is&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="lc fr"&gt;not supported&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;within the ServiceNow portal framework. In portal pages, you’ll need to use a more traditional JavaScript method to extract parameters from the URL. This can be done using the native&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;window.location&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;object and regular expressions.&lt;/P&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;Here’s an example of how to retrieve a parameter from the URL using legacy JavaScript methods in a portal:&lt;/P&gt;
&lt;PRE class="nn no np nq nr ns nm nt bp nu bb bk"&gt;&lt;SPAN class="nv lz fq nm b bg nw nx l ny nz" data-selectable-paragraph=""&gt;&lt;SPAN class="hljs-keyword"&gt;function&lt;/SPAN&gt; &lt;SPAN class="hljs-title.function"&gt;getParameterByName&lt;/SPAN&gt;(&lt;SPAN class="hljs-params"&gt;name&lt;/SPAN&gt;) {&lt;BR /&gt;    &lt;SPAN class="hljs-keyword"&gt;var&lt;/SPAN&gt; url = &lt;SPAN class="hljs-variable.language"&gt;window&lt;/SPAN&gt;.&lt;SPAN class="hljs-property"&gt;location&lt;/SPAN&gt;.&lt;SPAN class="hljs-property"&gt;href&lt;/SPAN&gt;;&lt;BR /&gt;    name = name.&lt;SPAN class="hljs-title.function"&gt;replace&lt;/SPAN&gt;(&lt;SPAN class="hljs-regexp"&gt;/[\[\]]/g&lt;/SPAN&gt;, &lt;SPAN class="hljs-string"&gt;'\\$&amp;amp;'&lt;/SPAN&gt;); &lt;SPAN class="hljs-comment"&gt;// Escape any special characters&lt;/SPAN&gt;&lt;BR /&gt;    &lt;SPAN class="hljs-keyword"&gt;var&lt;/SPAN&gt; regex = &lt;SPAN class="hljs-keyword"&gt;new&lt;/SPAN&gt; &lt;SPAN class="hljs-title.class"&gt;RegExp&lt;/SPAN&gt;(&lt;SPAN class="hljs-string"&gt;'[?&amp;amp;]'&lt;/SPAN&gt; + name + &lt;SPAN class="hljs-string"&gt;'(=([^&amp;amp;#]*)|&amp;amp;|#|$)'&lt;/SPAN&gt;);&lt;BR /&gt;    &lt;SPAN class="hljs-keyword"&gt;var&lt;/SPAN&gt; results = regex.&lt;SPAN class="hljs-title.function"&gt;exec&lt;/SPAN&gt;(url);&lt;BR /&gt;    &lt;SPAN class="hljs-keyword"&gt;if&lt;/SPAN&gt; (!results) &lt;SPAN class="hljs-keyword"&gt;return&lt;/SPAN&gt; &lt;SPAN class="hljs-literal"&gt;null&lt;/SPAN&gt;; &lt;SPAN class="hljs-comment"&gt;// If parameter not found&lt;/SPAN&gt;&lt;BR /&gt;    &lt;SPAN class="hljs-keyword"&gt;if&lt;/SPAN&gt; (!results[&lt;SPAN class="hljs-number"&gt;2&lt;/SPAN&gt;]) &lt;SPAN class="hljs-keyword"&gt;return&lt;/SPAN&gt; &lt;SPAN class="hljs-string"&gt;''&lt;/SPAN&gt;; &lt;SPAN class="hljs-comment"&gt;// If parameter is empty&lt;/SPAN&gt;&lt;BR /&gt;    &lt;SPAN class="hljs-keyword"&gt;return&lt;/SPAN&gt; &lt;SPAN class="hljs-built_in"&gt;decodeURIComponent&lt;/SPAN&gt;(results[&lt;SPAN class="hljs-number"&gt;2&lt;/SPAN&gt;].&lt;SPAN class="hljs-title.function"&gt;replace&lt;/SPAN&gt;(&lt;SPAN class="hljs-regexp"&gt;/\+/g&lt;/SPAN&gt;, &lt;SPAN class="hljs-string"&gt;' '&lt;/SPAN&gt;)); &lt;SPAN class="hljs-comment"&gt;// Decode and return the parameter value&lt;/SPAN&gt;&lt;BR /&gt;}&lt;BR /&gt;&lt;SPAN class="hljs-keyword"&gt;var&lt;/SPAN&gt; myParam = &lt;SPAN class="hljs-title.function"&gt;getParameterByName&lt;/SPAN&gt;(&lt;SPAN class="hljs-string"&gt;'sys_myParameter'&lt;/SPAN&gt;);&lt;/SPAN&gt;&lt;/PRE&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;In this example:&lt;/P&gt;
&lt;UL class=""&gt;
&lt;LI id="7316" class="la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;getParameterByName&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;function uses a regular expression to search for a parameter in the URL query string.&lt;/LI&gt;
&lt;LI id="1d5d" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;If the parameter is found, it is decoded (to handle URL-encoded characters) and returned.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;This method works in portal pages where the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="lc fr"&gt;GlideURLV3&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;API is not available, allowing you to extract URL parameters even in the portal context.&lt;/P&gt;
&lt;H1 id="046e" class="ly lz fq bf ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv bk" data-selectable-paragraph=""&gt;Key Considerations for URL Parameter Extraction&lt;/H1&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld mw lf lg lh mx lj lk ll my ln lo lp mz lr ls lt na lv lw lx fj bk" data-selectable-paragraph=""&gt;When working with URL parameters in ServiceNow, there are a few important points to keep in mind:&lt;/P&gt;
&lt;OL class=""&gt;
&lt;LI id="97dd" class="la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx nb nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;Parameter Encoding and Decoding:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;URL parameters may contain special characters (such as spaces or non-ASCII characters) that need to be properly encoded and decoded. Make sure to use&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE class="cx nj nk nl nm b"&gt;decodeURIComponent()&lt;/CODE&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;in your scripts to handle the decoding of these characters.&lt;/LI&gt;
&lt;LI id="eaa9" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx nb nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;Parameter Names:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Ensure that you use the correct parameter names when trying to retrieve them from the URL. Inconsistent naming or typos in the parameter names can cause the script to fail or return incorrect results.&lt;/LI&gt;
&lt;LI id="829c" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx nb nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;Scope Considerations:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;The&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="lc fr"&gt;GlideURLV3&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;API works well in non-portal environments (such as custom forms and applications), but if you are working within the ServiceNow portal, you’ll need to rely on the legacy JavaScript methods described above.&lt;/LI&gt;
&lt;LI id="d10c" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx nb nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;Security Implications:&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;When passing sensitive information via URL parameters, be mindful of security considerations. URL parameters are visible in browser address bars and may be captured in logs or history, so avoid passing sensitive data like passwords or confidential user information in URLs.&lt;/LI&gt;
&lt;/OL&gt;
&lt;H1 id="d1ea" class="ly lz fq bf ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv bk" data-selectable-paragraph=""&gt;Conclusion&lt;/H1&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld mw lf lg lh mx lj lk ll my ln lo lp mz lr ls lt na lv lw lx fj bk" data-selectable-paragraph=""&gt;Grabbing URL parameters in ServiceNow is a powerful technique that can be used to pre-fill fields, pass context between records, and enhance the user experience by providing seamless transitions between forms or catalog items. By leveraging the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG class="lc fr"&gt;GlideURLV3&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;API for non-portal environments and using legacy JavaScript methods for the ServiceNow portal, you can ensure that your ServiceNow applications are flexible and robust, with easy access to URL parameters whenever necessary.&lt;/P&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;Understanding how to work with URL parameters is a key skill for any ServiceNow developer, and mastering these techniques can help you build more dynamic and user-friendly applications.&lt;/P&gt;
&lt;H1 id="95ef" class="ly lz fq bf ma mb mc md me mf mg mh mi mj mk ml mm mn mo mp mq mr ms mt mu mv bk" data-selectable-paragraph=""&gt;Key Takeaways:&lt;/H1&gt;
&lt;UL class=""&gt;
&lt;LI id="53ff" class="la lb fq lc b ld mw lf lg lh mx lj lk ll my ln lo lp mz lr ls lt na lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;ServiceNow URL Parameters&lt;/STRONG&gt;: Essential for passing data between forms, catalog items, and records.&lt;/LI&gt;
&lt;LI id="da1a" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;GlideURLV3 API&lt;/STRONG&gt;: The preferred method for URL parameter extraction in non-portal environments.&lt;/LI&gt;
&lt;LI id="72ab" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;Legacy JavaScript Methods&lt;/STRONG&gt;: Required for extracting URL parameters in ServiceNow portals.&lt;/LI&gt;
&lt;LI id="27eb" class="la lb fq lc b ld ne lf lg lh nf lj lk ll ng ln lo lp nh lr ls lt ni lv lw lx oa nc nd bk" data-selectable-paragraph=""&gt;&lt;STRONG class="lc fr"&gt;Security&lt;/STRONG&gt;: Always be cautious when passing sensitive data through URL parameters.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;By understanding these techniques and methods, you can effectively manage URL parameters within your ServiceNow instance and improve the overall functionality and user experience of your applications.&lt;/P&gt;
&lt;P class="pw-post-body-paragraph la lb fq lc b ld le lf lg lh li lj lk ll lm ln lo lp lq lr ls lt lu lv lw lx fj bk" data-selectable-paragraph=""&gt;#ServiceNowCommunity #ServiceNowDeveloper #ServiceNow&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/SECTION&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/ARTICLE&gt;
&lt;/DIV&gt;
&lt;DIV class="l"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV class="l"&gt;Regards,&lt;/DIV&gt;
&lt;DIV class="l"&gt;Vaishnavi Lathkar&lt;/DIV&gt;
&lt;FOOTER class="ob oc od oe of og oh oi oj ab q ok ol c"&gt;
&lt;DIV class="l ae"&gt;
&lt;DIV class="ab cb"&gt;
&lt;DIV class="ci bh ev ew ex ey"&gt;
&lt;DIV class="ab cp om"&gt;
&lt;DIV class="ab q iu"&gt;
&lt;DIV class="on l"&gt;
&lt;DIV class="ab q iu iv"&gt;
&lt;DIV class="pw-multi-vote-icon ed ru ix iy iz"&gt;
&lt;DIV class=""&gt;
&lt;DIV&gt;
&lt;DIV class="bm" aria-hidden="false" aria-describedby="54" aria-labelledby="54"&gt;
&lt;DIV class="ja rv jc jd je jf jg am jh ji jj iz"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="bq ab"&gt;
&lt;DIV&gt;
&lt;DIV class="bm" aria-hidden="false" aria-describedby="8" aria-labelledby="8"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="ab q"&gt;
&lt;DIV class="ot l hi"&gt;
&lt;DIV&gt;
&lt;DIV class="bm" aria-hidden="false" aria-describedby="9" aria-labelledby="9"&gt;
&lt;DIV class="bm" aria-hidden="false"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="ot l hi"&gt;
&lt;DIV class="bm" aria-hidden="false" aria-describedby="postFooterSocialMenu" aria-labelledby="postFooterSocialMenu"&gt;
&lt;DIV&gt;
&lt;DIV class="bm" aria-hidden="false" aria-describedby="10" aria-labelledby="10"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;DIV class="bm" aria-hidden="false"&gt;
&lt;DIV class="bm" aria-hidden="false" aria-describedby="creatorActionOverflowMenu" aria-labelledby="creatorActionOverflowMenu"&gt;
&lt;DIV class="qn l hi"&gt;
&lt;DIV&gt;
&lt;DIV class="bm" aria-hidden="false" aria-describedby="176" aria-labelledby="176"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/FOOTER&gt;
&lt;DIV class="ou ov ow ox oy l bx"&gt;
&lt;DIV class="ab cb"&gt;
&lt;DIV class="ci bh ev ew ex ey"&gt;
&lt;DIV class="cl ab oz cp"&gt;
&lt;DIV class="ab gw"&gt;
&lt;DIV class="l pa pb by pc ha"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 14 Nov 2024 13:56:59 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-articles/extracting-url-parameters-in-servicenow-using-client-scripts/ta-p/3104601</guid>
      <dc:creator>Vaishnavi Lathk</dc:creator>
      <dc:date>2024-11-14T13:56:59Z</dc:date>
    </item>
    <item>
      <title>How to add Digital Signature in PDF through Script</title>
      <link>https://www.servicenow.com/community/service-management-articles/how-to-add-digital-signature-in-pdf-through-script/ta-p/2295238</link>
      <description>&lt;P&gt;In the attach document we will see how we can create and add signature in PDF file.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Use case:&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;We need to create an UI Action on which, one pop-up will ask you to sign, after signature submission, one pdf file will auto-generate where information of record and sign will be there.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;Required Capabilities:&lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;To achieve this, we used below ServiceNow platform capabilities:&lt;/P&gt;
&lt;UL&gt;&lt;LI&gt;ServiceNow PDF Generation API&lt;/LI&gt;&lt;LI&gt;UI Action&lt;/LI&gt;&lt;LI&gt;UI Page&lt;/LI&gt;&lt;LI&gt;Script Include&lt;/LI&gt;&lt;LI&gt;UI Script&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please find the attach PDF.&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 24 Aug 2022 04:52:46 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-articles/how-to-add-digital-signature-in-pdf-through-script/ta-p/2295238</guid>
      <dc:creator>Community Alums</dc:creator>
      <dc:date>2022-08-24T04:52:46Z</dc:date>
    </item>
    <item>
      <title>GlideRecord Vs GlideRecordSecure Live Demo</title>
      <link>https://www.servicenow.com/community/service-management-articles/gliderecord-vs-gliderecordsecure-live-demo/ta-p/2329666</link>
      <description>&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 14pt;"&gt;Hello Everyone,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif; font-size: 14pt;"&gt;I have demonstrated the difference between &lt;STRONG&gt;GlideRecord Vs GlideRecordSecure in &lt;/STRONG&gt;the below video.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: arial, helvetica, sans-serif;"&gt;&lt;SPAN style="font-size: 14pt;"&gt;Have a look &amp;amp; share your feedback &lt;/SPAN&gt;- &lt;SPAN style="font-size: 18pt;"&gt;&lt;STRONG&gt;&lt;A href="https://youtu.be/5Y_d7fI0giU" target="_blank" rel="noopener noreferrer"&gt;Click Here&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 18pt; font-family: arial, helvetica, sans-serif; background-color: #fbeeb8;"&gt;&lt;STRONG&gt;Hit Helpful, if helpful.&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 12:04:03 GMT</pubDate>
      <guid>https://www.servicenow.com/community/service-management-articles/gliderecord-vs-gliderecordsecure-live-demo/ta-p/2329666</guid>
      <dc:creator>Omender Singh</dc:creator>
      <dc:date>2022-06-30T12:04:03Z</dc:date>
    </item>
  </channel>
</rss>

