<HTML><HEAD>
<META content="text/html; charset=utf-8" http-equiv=Content-Type>
<META name=GENERATOR content="MSHTML 8.00.6001.18812"></HEAD>
<BODY style="MARGIN: 4px 4px 1px; FONT: 10pt Tahoma">
<DIV>Hi Kevin,</DIV>
<DIV> </DIV>
<DIV>Thx for that tidbit of info,</DIV>
<DIV> </DIV>
<DIV>In that file I found the correct syntax, out of Sean's set, the 2 below will work,</DIV>
<DIV> </DIV>
<DIV>$self->TicketObj->SetOwner("Nobody");</DIV>
<DIV>
<DIV>$self->TicketObj->SetOwner("10");</DIV>
<DIV> </DIV>
<DIV>But, this is baffling me...</DIV>
<DIV> </DIV>
<DIV>This is my scrip</DIV>
<DIV> </DIV>
<DIV>Condition: On Queue Change</DIV>
<DIV>Action: User Defined</DIV>
<DIV>Custom action Preparation Code:</DIV>
<DIV># set new Ticket Owner value<BR>my $ticket = $self->TicketObj;<BR>$ticket->SetStatus("new");<BR>$ticket->SetOwner("Nobody");<BR></DIV>
<DIV> </DIV>
<DIV>Based on the above investigation, I know the syntax is correct for the SetOwner.  However, the only thing that happens on queue change is the ticket's status is set to new.  That shows up in the ticket history.  The SetOwner doesn't show up at all, nothing happens.</DIV>
<DIV> </DIV>
<DIV>This is the exact same spot Sean got stuck.... and the thread ended.....</DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV>Ken Crocker(thx Ken) provided the above code + 1 line (return 1;) and said his is in the cleanup code spot.  If I put that code in there, absolutely nothing gets changed in the ticket...</DIV>
<DIV> </DIV>
<DIV>Any thoughts anyone?</DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV>
<DIV>Mike Johnson<BR>Datatel Programmer/Analyst<BR>Northern Ontario School of Medicine<BR>955 Oliver Road<BR>Thunder Bay, ON   P7B 5E1<BR>Phone: 807.766.7331<BR>Email: <A href="mailto:mike.johnson@normed.ca">mike.johnson@normed.ca</A></DIV>
<DIV>Technology assistance: email <A href="mailto:nosmhelpdesk@normed.ca">nosmhelpdesk@normed.ca</A> <BR>Technology Emergency Contact (TEC) Mon-Fri, 8am to 5pm excluding stat holidays: <BR>Off campus toll free 1-800-461-8777, option 8, or locally either <BR>(705)-662-7120 or (807)-766-7500<BR></DIV><BR><BR>>>> Kevin Falcone <falcone@bestpractical.com> 24/09/2009 5:06 pm >>><BR>On Thu, Sep 24, 2009 at 04:02:10PM -0400, Mike Johnson wrote:<BR>>    I was looking through the list's history.<BR>> <BR>>    The original email did not get an answer to it.<BR>> <BR>>    The piece that interests me about this listserv topic(dating back to Aug 2007)....<BR>> <BR>> <BR>>    Sean, and myself are trying to set a ticket's owner to nobody on an action...<BR>> <BR>>    He stated,<BR>> <BR>>    I've tried:<BR>> <BR>>    $self->TicketObj->SetOwner("Nobody");<BR>>    $self->TicketObj->SetOwner(Nobody);<BR>>    $self->TicketObj->SetOwner("10");<BR>>    $self->TicketObj->SetOwner(10);<BR>>    $self->TicketObj->SetOwner(Name => "Nobody");<BR>>    $self->TicketObj->SetOwner(Name => Nobody);<BR>>    $self->TicketObj->SetOwner(Id => "10");<BR>>    $self->TicketObj->SetOwner(Id => 10);<BR>> <BR>>    None of these has worked and nothing in rt.log indicates any problems.  I have<BR>>    it set up with debug so I know I'm getting as much info as I can.<BR><BR>If you want as much information as possible, you should check the<BR>return values of SetOwner.  The arguments for the SetOwner method are<BR>documented in Ticket_Overlay.pm.<BR><BR>-kevin<BR><BR>>    Can anyone tell me which of the above? and what else do I need to set to make this happen on a<BR>>    specific condition(I'm using On Queue change).<BR></DIV></DIV></BODY></HTML>