<font size=2 face="sans-serif">Hi guys!</font>
<br>
<br><font size=2 face="sans-serif">I've managed, to play a little bit with
the RSS-feed generation at /html/Search/Elements/ResultsRSSView</font>
<br>
<br><font size=2 face="sans-serif">But at the moment I'm stuck at fetching
the latest transaction with type "Correspond" or "Comment"
from the database for displaying the right content.</font>
<br><font size=2 face="sans-serif">Is anybody out there who could help
me with this?</font>
<br>
<br><font size=2 face="sans-serif">My current code looks like:</font>
<br>
<br><font size=2 face="sans-serif">while ( my $Ticket = $Tickets->Next())
{</font>
<br><font size=2 face="sans-serif">        my
$transactions = RT::Transactions->new($session{CurrentUser});</font>
<br><font size=2 face="sans-serif">        $transactions->LimitToTicket($Ticket->id);</font>
<br><font size=2 face="sans-serif">        </font>
<br><font size=2 face="sans-serif">        #
Limit to transactions with type "Comment"</font>
<br><font size=2 face="sans-serif">        $transactions->Limit(</font>
<br><font size=2 face="sans-serif">         
      FIELD => 'Type',</font>
<br><font size=2 face="sans-serif">         
      VALUE => 'Comment'</font>
<br><font size=2 face="sans-serif">        );
       </font>
<br><font size=2 face="sans-serif"> </font>
<br><font size=2 face="sans-serif">        my
$content = $transactions->Last->Content;</font>
<br>
<br><font size=2 face="sans-serif">...</font>
<br>
<br>
<br><font size=2 face="sans-serif">I get the following error in the logs:</font>
<br><font size=2 face="sans-serif"> Can't call method "Content"
on an undefined value at /opt/rt4-devel/local/html/Search/Elements/ResultsRSSView</font>
<br>
<br>
<br><font size=2 face="sans-serif">I don't know actually, why the variable
$transactions has an undefined value.</font>
<br>
<br>
<br><font size=2 face="sans-serif">Greetings,</font>
<br><font size=2 face="sans-serif">Markus</font>
<br>