When I'm creating a ticket with RT::Ticket api, how do I set the text that goes into the box that says ""Describe the Issue below"?  It appears to end up as an attachment, and I can retrieve it from an existing ticket using <div>
<br clear="all"><div><div>my $attachments = RT::Attachments->new(RT->SystemUser);</div><div>$attachments->LimitByTicket($tik->id);</div><div><br></div><div>foreach my $type (qw(Create Comment Correspond)) {</div>
<div><span class="Apple-tab-span" style="white-space:pre">      </span>$attachments->Limit( ALIAS    => $attachments->TransactionAlias,</div><div><span class="Apple-tab-span" style="white-space:pre">                                            </span> FIELD    => 'Type',</div>
<div><span class="Apple-tab-span" style="white-space:pre">                                              </span> OPERATOR => '=',</div><div><span class="Apple-tab-span" style="white-space:pre">                                         </span> VALUE    => $type,</div><div><span class="Apple-tab-span" style="white-space:pre">                                               </span> ENTRYAGGREGATOR => 'OR',</div>
<div><span class="Apple-tab-span" style="white-space:pre">                                              </span> CASESENSITIVE   => 1</div><div><span class="Apple-tab-span" style="white-space:pre">                                     </span>   );</div><div>}</div></div><div><br></div><div>I tried adding it with $ticket->_CreateNote, but then I end up with two "The RT System itself - Ticket created" records.</div>
<div><br></div>-- <br><a href="http://www.linkedin.com/in/paultomblin">http://www.linkedin.com/in/paultomblin</a><br><a href="http://careers.stackoverflow.com/ptomblin">http://careers.stackoverflow.com/ptomblin</a><br><br>

</div>