<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>Thank you very much Ken.</DIV>
<DIV> </DIV>
<DIV>I am new to coding custom action codes, and didn't see the part where you need to tell the script to move on from custom action prep. on this page ...</DIV>
<DIV> </DIV>
<DIV><A href="http://wiki.bestpractical.com/view/WriteCustomAction">http://wiki.bestpractical.com/view/WriteCustomAction</A></DIV>
<DIV> </DIV>
<DIV> </DIV>
<DIV>I was trying to move too fast :P.</DIV>
<DIV> </DIV>
<DIV>Thx for pointing that out.</DIV>
<DIV> </DIV>
<DIV>It is definitely working now.</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>>>> Ken Crocker <kfcrocker@lbl.gov> 25/09/2009 12:19 pm >>><BR>Mike,<BR><BR>You didn't get my code correct. You forgot the "Force". (NO, I'm NOT saying "may the force be with you", gaagh!). <BR>Also, when creating a scrip, you must keep in mind that when you define the condition as :User-Defined", you SHOULD end with a return code in both the "Prep" & "Cleanup" areas. Since my code is in the "Cleanup" area, I have a "return 1;" in the "Prep" area. That way RT knows to continue on to the cleanup area. So, to re-cap, your code should look something like this:<BR><BR>Condition: On whatever<BR>Action: User-Defined<BR><BR>Custom Prep Code:<BR>Return 1;<BR><BR>Custom Cleanup Code:<BR><BR># set new Ticket Owner value<BR>my $ticket = $self->TicketObj;<BR>$ticket->SetStatus('new');<BR>$ticket->SetOwner(10, 'Force');<BR>return 1;<BR><BR>That should do it. Hope this helps.<BR><BR>Kenn<BR>LBNL<BR><BR>On 9/25/2009 6:55 AM, Mike Johnson wrote: </DIV>
<BLOCKQUOTE cite=mid:4ABC9395.4EF5.001E.0@NorMed.ca type="cite">
<META name=GENERATOR content="MSHTML 8.00.6001.18812">
<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" moz-do-not-send="true">mike.johnson@normed.ca</A></DIV>
<DIV>Technology assistance: email <A href="mailto:nosmhelpdesk@normed.ca" moz-do-not-send="true">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 <A class=moz-txt-link-rfc2396E href="mailto:falcone@bestpractical.com"><falcone@bestpractical.com></A> 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><PRE wrap=""><HR SIZE=4 width="90%">
_______________________________________________
<A class=moz-txt-link-freetext href="http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users">http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-users</A>

Community help: <A class=moz-txt-link-freetext href="http://wiki.bestpractical.com/">http://wiki.bestpractical.com</A>
Commercial support: <A class=moz-txt-link-abbreviated href="mailto:sales@bestpractical.com">sales@bestpractical.com</A>


Discover RT's hidden secrets with RT Essentials from O'Reilly Media. 
Buy a copy at <A class=moz-txt-link-freetext href="http://rtbook.bestpractical.com/">http://rtbook.bestpractical.com</A></PRE></BLOCKQUOTE></BODY></HTML>