KNOWN ISSUE: Cannot change Category, Priority, or Status after attaching a file to a new incident using Winuser console
| Article:TECH38783 | | | Created: 2008-01-25 | | | Updated: 2008-02-07 | | | Article URL http://www.symantec.com/docs/TECH38783 |
| NOTE: If you are experiencing this particular known issue, we recommend that you Subscribe to receive email notification each time this article is updated. Subscribers will be the first to learn about any releases, status changes, workarounds or decisions made. |
Problem
When creating an incident from the Winuser console, you are unable to go back and change the Category, Priority, or Status after attaching a file.
Environment
Helpdesk Solution 6.0.308 (SP5)
Cause
An if statement inside of the ConsoleMyHDEditItem.ascx was not accounting for a new item.
Solution
A modified version of ConsoleMyHDEditItem.ascx has been created and attached to this article to address the issue. To implement the modified file:
- Browse to \Program Files\Altiris\Helpdesk\AeXHD\templates\ and backup ConsoleMyHDEditItem.ascx
- Download ConsoleMyHDEditItem.zip from this article, unzip the contents, and replace the original file in the templates folder
NOTE: These instructions assume that no customizations have already been made to the Winuser console. For customers that have a custom.config pointing to a custom version of this file, the changes included in the modified template will need to be manually merged with your existing customizations. Below is the section of code that needs to be modified. The text in red reflects the code that needs to be added:
Case "pvAttach"
' Stay on the same page if we're uploading or removing an upload
if ControlID = "lbUpload" OrElse ControlID = "lbUploadRemove" then
GetNextPage = CurrentPageID
else if ControlID = "btnAttachOK"
if Command("id") = "" or Command("id") = "new" then
GetNextPage = "pvNewItem"
pvNewItem.Databind()
else
GetNextPage = "pvComment"
pvComment.Databind()
end if
end if
End Select
Attachments
|
|
|
| Source | DEFECT |
| Value | ABQ 4901 |
| Description | Logged in abqdc01 (Altiris - Albuquerque) database |
Legacy ID
40203
Article URL http://www.symantec.com/docs/TECH38783
Terms of use for this information are found in Legal Notices









Thank you.