<div dir="ltr"><div>I am trying to get the SQL that will be sent to the database given some ticketSQL.</div><div><br></div><div>I am not sure what I am doing is the right way to try to do this and unfortunately it is not working anyway.</div><div><br></div><div>Does anyone have some tips? </div><div><br></div><div><br></div><div>I tried the following but it gives me an error of:</div><div>Can't locate object method "QueryHistory" via package "RT::Tickets" <br></div><div><br></div><div>But looking at this documentation I thought it would work.</div><div><a href="https://github.com/bestpractical/rt/blob/stable/lib/RT/Handle.pm">https://github.com/bestpractical/rt/blob/stable/lib/RT/Handle.pm</a><br></div><div><br></div><div><br></div><div><br></div><div>#!/usr/bin/perl</div><div>use strict;</div><div>use warnings;</div><div>use v5.10;</div><div>use RT -init;<br></div><div>use RT::Ticket;</div><div>my $ticketSQL = "Id='1'";</div><div>my $tickets    = RT::Tickets->new( RT->SystemUser );</div><div>my $validQuery = $tickets->FromSQL($ticketSQL);</div><div>say $tickets->QueryHistory();</div><div><br></div><div>Thanks </div><div>HP</div></div>