<?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 setMandatory is not working in my onchange script in ServiceNow AI Platform forum</title>
    <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187318#M143707</link>
    <description>&lt;P&gt;This my onChange Client script that makes the comment field mandatory if correct state is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is that if i select state(1,2,4) &amp;nbsp; the comment field will become mandatory and I select state(3), it wont become mandatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you help me on this, i don't know the root cause of this script because they are in the same IF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function onChange(control, oldValue, newValue, isLoading) {&lt;/P&gt;&lt;P&gt; &amp;nbsp; if (isLoading || newValue == '') {&lt;/P&gt;&lt;P&gt; &amp;nbsp; return;&lt;/P&gt;&lt;P&gt; &amp;nbsp; }&lt;/P&gt;&lt;P&gt; var state = newValue;&lt;/P&gt;&lt;P&gt;if(state == '1' || state == '2' || state == '3' || state == '4'){&lt;/P&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; form.setMandatory('comments', true);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;</description>
    <pubDate>Fri, 24 Jun 2016 10:43:36 GMT</pubDate>
    <dc:creator>John Gomolon</dc:creator>
    <dc:date>2016-06-24T10:43:36Z</dc:date>
    <item>
      <title>setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187318#M143707</link>
      <description>&lt;P&gt;This my onChange Client script that makes the comment field mandatory if correct state is selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is that if i select state(1,2,4) &amp;nbsp; the comment field will become mandatory and I select state(3), it wont become mandatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you help me on this, i don't know the root cause of this script because they are in the same IF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function onChange(control, oldValue, newValue, isLoading) {&lt;/P&gt;&lt;P&gt; &amp;nbsp; if (isLoading || newValue == '') {&lt;/P&gt;&lt;P&gt; &amp;nbsp; return;&lt;/P&gt;&lt;P&gt; &amp;nbsp; }&lt;/P&gt;&lt;P&gt; var state = newValue;&lt;/P&gt;&lt;P&gt;if(state == '1' || state == '2' || state == '3' || state == '4'){&lt;/P&gt;&lt;P&gt; &amp;nbsp; &amp;nbsp; form.setMandatory('comments', true);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &amp;nbsp; }&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2016 10:43:36 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187318#M143707</guid>
      <dc:creator>John Gomolon</dc:creator>
      <dc:date>2016-06-24T10:43:36Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187319#M143708</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I'm sure it is just a typo, but if not, please use g_form.setMandatory("comments", true);&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Also, since this script is working for other states, check if there's any UI policy or other script that might be causing comments to not be mandatory.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Mandar&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 10:48:18 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187319#M143708</guid>
      <dc:creator>ohhgr</dc:creator>
      <dc:date>2016-06-24T10:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187320#M143709</link>
      <description>&lt;P&gt;it is g_form.setMandatory('comments', true);&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 10:48:23 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187320#M143709</guid>
      <dc:creator>Harish KM</dc:creator>
      <dc:date>2016-06-24T10:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187321#M143710</link>
      <description>&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;STRONG style="line-height: 1.5;"&gt;Apply IF condition for only 1,2,4. and also change "form" to "g_form".&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;function onChange(control, oldValue, newValue, isLoading) {&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; if (isLoading || newValue == '') {&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; return;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; }&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var state = newValue;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;if(state == '1' || state == '2' || state == '4'){&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; &amp;nbsp; g_form.setMandatory('comments', true);&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; }&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;else&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;g_form.setMandatory('comments', false);&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 10:50:07 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187321#M143710</guid>
      <dc:creator>ramireddy</dc:creator>
      <dc:date>2016-06-24T10:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187322#M143711</link>
      <description>&lt;P&gt;Sorry for the typo &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_emote jive_macro" data-renderedposition="8_122_16_16" src="https://www.servicenow.com/8.0.1.35b65d4/images/emoticons/happy.png"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;There is no UI policy running. just the Script.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 10:54:44 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187322#M143711</guid>
      <dc:creator>John Gomolon</dc:creator>
      <dc:date>2016-06-24T10:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187323#M143712</link>
      <description>&lt;P&gt;Hi Ram,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Already did that but not working! &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_emote jive_macro" data-renderedposition="50_216_16_16" src="https://www.servicenow.com/8.0.1.35b65d4/images/emoticons/sad.png"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 10:55:32 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187323#M143712</guid>
      <dc:creator>John Gomolon</dc:creator>
      <dc:date>2016-06-24T10:55:32Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187324#M143713</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Let us simplify this even further. Put two alerts before and after the if condition to check if the control reaches till the comments part.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var stateValue = newValue;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;alert("State is "+stateValue);&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;if(&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;stateValue &lt;/SPAN&gt;== '1' || &lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;stateValue &lt;/SPAN&gt;== '2' || &lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;stateValue &lt;/SPAN&gt;== '3' || &lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;stateValue &lt;/SPAN&gt;== '4'){&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;alert("should set comments mandatory");&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; &amp;nbsp; form.setMandatory('comments', true);&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;See, what responses you get for states 1 or 2 or 4 and for state 3.&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;Hope that helps.&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;Mandar&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 11:02:54 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187324#M143713</guid>
      <dc:creator>ohhgr</dc:creator>
      <dc:date>2016-06-24T11:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187325#M143714</link>
      <description>&lt;P&gt;Hi mandar,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I already did that and alerts for the all the state with correct value but still the comment is not mandatory.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 11:07:25 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187325#M143714</guid>
      <dc:creator>John Gomolon</dc:creator>
      <dc:date>2016-06-24T11:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187326#M143715</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;That means there's no problem with this particular script. Please check other client scripts that might be working on comments field. Try disabling all other scripts (I know, its drastic) and run only this script. If even that doesn't work, I suggest raising an incident for HI.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Mandar&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 11:28:28 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187326#M143715</guid>
      <dc:creator>ohhgr</dc:creator>
      <dc:date>2016-06-24T11:28:28Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187327#M143716</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;I hope your form's current state value is not 3 when you test this. If so, Client script will not apply to that form, since you are running Onchange client script on the field state.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Here I would suggest to try by removing the below two lines of code in your client script and check once.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;STRONG&gt; if (isLoading || newValue == '') {&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;STRONG&gt; &amp;nbsp; return;&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;STRONG&gt; &amp;nbsp; }&lt;/STRONG&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;Gowthaman Balu.&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 12:15:33 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187327#M143716</guid>
      <dc:creator>gowthamanbalu</dc:creator>
      <dc:date>2016-06-24T12:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187328#M143717</link>
      <description>&lt;P&gt;I tried an example. Its working. You need to start debugging. Please place few "alert" statements and check whether this event is firing or not, then whats the value is passing as newValue? I placed few alerts. Please let us know what are you getting as alerts.&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;function onChange(control, oldValue, newValue, isLoading) {&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; alert("In onchange event:newValue is" + newValue);&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; if (isLoading || newValue == '') {&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; return;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; }&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;var state = newValue;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;if(state == '1' || state == '2' || state == '4'){&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; alert("to set mandatory as true");&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; &amp;nbsp; g_form.setMandatory('comments', true);&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt; &amp;nbsp; }&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;else&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;{&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt; alert("to set mandatory as false");&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;g_form.setMandatory('comments', false);&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;}&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;&lt;P style="font-family: arial, sans-serif; color: #666666;"&gt;}&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 24 Jun 2016 12:36:52 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187328#M143717</guid>
      <dc:creator>ramireddy</dc:creator>
      <dc:date>2016-06-24T12:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187329#M143718</link>
      <description>&lt;P&gt;&lt;SPAN style="color: #666666; font-family: arial, sans-serif;"&gt;I already did that and alerts for the all the state with correct value but still the comment is not mandatory.&lt;/SPAN&gt;&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Jun 2016 07:56:01 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187329#M143718</guid>
      <dc:creator>John Gomolon</dc:creator>
      <dc:date>2016-06-27T07:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: setMandatory is not working in my onchange script</title>
      <link>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187330#M143719</link>
      <description>&lt;P&gt;If the alerts are firing as intended and as per logic, then only issue will be name of "Catalog variable". Is the name is exactly "&lt;STRONG&gt;comments&lt;/STRONG&gt;"?&lt;/P&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 27 Jun 2016 08:54:33 GMT</pubDate>
      <guid>https://www.servicenow.com/community/servicenow-ai-platform-forum/setmandatory-is-not-working-in-my-onchange-script/m-p/1187330#M143719</guid>
      <dc:creator>ramireddy</dc:creator>
      <dc:date>2016-06-27T08:54:33Z</dc:date>
    </item>
  </channel>
</rss>

