<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://greggsmith.net/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cowsert</id>
		<title>SDU - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://greggsmith.net/wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Cowsert"/>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Special:Contributions/Cowsert"/>
		<updated>2026-04-17T15:33:37Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.26.1</generator>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Set_Defaults_on_Manual_Notify&amp;diff=4786</id>
		<title>Set Defaults on Manual Notify</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Set_Defaults_on_Manual_Notify&amp;diff=4786"/>
				<updated>2012-09-17T15:36:18Z</updated>
		
		<summary type="html">&lt;p&gt;Cowsert: /* Step 1. Edit the nf.htmpl form */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[Category:Customizations]]&lt;br /&gt;
{{Global Header}}&lt;br /&gt;
{{Global Announcement}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
This article provides instructions on how to automatically set the recipients of a [[Manual Notification]] to Affected End User and Group and then have the ability to remove them.&lt;br /&gt;
&lt;br /&gt;
== Procedures ==&lt;br /&gt;
=== Step 1. Edit the nf.htmpl form ===&lt;br /&gt;
In the head of nf.htmpl, look for the following code:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;	function initNames() {&lt;br /&gt;
&amp;lt;PDM_IF $dob.notify_list.length == 0&amp;gt;&lt;br /&gt;
		// Cope with Netscape's lack of resizing:&lt;br /&gt;
		document.main_form.notify_list.options.length = 0;&lt;br /&gt;
&amp;lt;/PDM_IF&amp;gt;&amp;lt;/source&amp;gt;and place this code directly below it:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;if (document.main_form.in_names.value == ''){&lt;br /&gt;
document.main_form.in_names.value = '$args.customer.combo_name::$args.group.last_name';&lt;br /&gt;
document.main_form.in_ids.value = '$args.customer.id $args.group.id';&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For r11.x releases it is recommended that you edit your pages via the [[Web Screen Painter]]. For older releases you must edit the files directly.&lt;br /&gt;
&lt;br /&gt;
For r12.6 release, functionality is found in the Notifications.  Add a Requestor and/or Affected End User to Administrator Tab&amp;gt;&amp;gt;Notifications&amp;gt;&amp;gt;Activity Notifications&amp;gt;&amp;gt;Manual Notify&amp;gt;&amp;gt;Object Contact Recipients tab.  Adding the Requestor and/or Affected End User objects to this tab will then set those objects as the default Available Recipients on the Manual Notify form.&lt;br /&gt;
&lt;br /&gt;
=== Step 2. Clear the web cache ===&lt;br /&gt;
The final step is to clear Service Desk's cache. The methods vary depending on release.&lt;br /&gt;
 &lt;br /&gt;
''For r11.x releases'' publish your changes via the [[Web Screen Painter]]. The process of publishing automatically initiates a [[pdm_webcache]].&lt;br /&gt;
&lt;br /&gt;
''For older releases'' execute [[pdm_webcache]] from a command prompt on the [[Primary Server]]. There is no need to run this command on the [[Secondary Server|Secondary Servers]].&lt;/div&gt;</summary>
		<author><name>Cowsert</name></author>	</entry>

	<entry>
		<id>http://greggsmith.net/wiki/index.php?title=Set_Defaults_on_Manual_Notify&amp;diff=4785</id>
		<title>Set Defaults on Manual Notify</title>
		<link rel="alternate" type="text/html" href="http://greggsmith.net/wiki/index.php?title=Set_Defaults_on_Manual_Notify&amp;diff=4785"/>
				<updated>2012-09-17T15:35:29Z</updated>
		
		<summary type="html">&lt;p&gt;Cowsert: /* Step 1. Edit the nf.htmpl form */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
[[Category:Customizations]]&lt;br /&gt;
{{Global Header}}&lt;br /&gt;
{{Global Announcement}}&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
This article provides instructions on how to automatically set the recipients of a [[Manual Notification]] to Affected End User and Group and then have the ability to remove them.&lt;br /&gt;
&lt;br /&gt;
== Procedures ==&lt;br /&gt;
=== Step 1. Edit the nf.htmpl form ===&lt;br /&gt;
In the head of nf.htmpl, look for the following code:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;	function initNames() {&lt;br /&gt;
&amp;lt;PDM_IF $dob.notify_list.length == 0&amp;gt;&lt;br /&gt;
		// Cope with Netscape's lack of resizing:&lt;br /&gt;
		document.main_form.notify_list.options.length = 0;&lt;br /&gt;
&amp;lt;/PDM_IF&amp;gt;&amp;lt;/source&amp;gt;and place this code directly below it:&lt;br /&gt;
&amp;lt;source lang=&amp;quot;javascript&amp;quot;&amp;gt;if (document.main_form.in_names.value == ''){&lt;br /&gt;
document.main_form.in_names.value = '$args.customer.combo_name::$args.group.last_name';&lt;br /&gt;
document.main_form.in_ids.value = '$args.customer.id $args.group.id';&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For r11.x releases it is recommended that you edit your pages via the [[Web Screen Painter]]. For older releases you must edit the files directly.&lt;br /&gt;
&lt;br /&gt;
For r12.6 release, functionality is found in the Notifications.  Add a Requestor and/or Affected End User to Administrator Tab&amp;gt;&amp;gt;Notifications&amp;gt;&amp;gt;Activity Notifications&amp;gt;&amp;gt;Manual Notify&amp;gt;&amp;gt;Object Contact Recipients.  Adding the Requestor and/or Affected End User objects to this tab will then set those objects as the default Available Recipients on the Manual Notify form.&lt;br /&gt;
&lt;br /&gt;
=== Step 2. Clear the web cache ===&lt;br /&gt;
The final step is to clear Service Desk's cache. The methods vary depending on release.&lt;br /&gt;
 &lt;br /&gt;
''For r11.x releases'' publish your changes via the [[Web Screen Painter]]. The process of publishing automatically initiates a [[pdm_webcache]].&lt;br /&gt;
&lt;br /&gt;
''For older releases'' execute [[pdm_webcache]] from a command prompt on the [[Primary Server]]. There is no need to run this command on the [[Secondary Server|Secondary Servers]].&lt;/div&gt;</summary>
		<author><name>Cowsert</name></author>	</entry>

	</feed>