Previous  Next          Contents  Index  Glossary

#HIDE_REASSIGN Attribute

You can use a special message attribute or notification attribute with the internal name #HIDE_REASSIGN to hide the Reassign button in the Notfication Detail web page. When users view a notification from their Worklist web page, the response frame in the Notification Detail page includes the Reassign button by default. If you want to prevent users from reassigning a notification, you can add the #HIDE_REASSIGN attribute to control whether the Reassign button is displayed or hidden.

The #HIDE_REASSIGN attribute must be of type text. To hide the Reassign button, set the value of this attribute to Y. To display the Reassign button, set the value to N.

You can use different methods to add the #HIDE_REASSIGN attribute, depending on how often you want to hide the Reassign button.

Note: If you later need to display the Reassign button for these notifications, you can call WF_NOTIFICATION.SetAttrText() to set the value to N. Use the following syntax:

		WF_NOTIFICATION.SetAttrText(<nid>, '#HIDE_REASSIGN',
'N');

Replace <nid> with the notification ID. See: SetAttribute.

		WF_NOTIFICATION.AddAttr(<nid>, '#HIDE_REASSIGN');
		WF_NOTIFICATION.SetAttrText(<nid>, '#HIDE_REASSIGN',
'Y');

See Also

To Define a Message Attribute

To Reassign a Notification to Another User


         Previous  Next          Contents  Index  Glossary