2) "the Description or Memo" is refer to person/memo?
It's no enough spaces to print all in A4 paper.
If you can leave out the dimension field on GL Report (rep704.php) change the memo column on 4 to 7, $rep->TextCol(4, 7, $txt, -2);
and remark the dimension (from line 162 on ver 2.4.8) as follow:
// Remove dimension
//if ($dim >= 1)
// $rep->TextCol(4, 5, get_dimension_string($myrow['dimension_id']));
//if ($dim > 1)
// $rep->TextCol(5, 6, get_dimension_string($myrow['dimension2_id']));
$txt = payment_person_name($myrow["person_type_id"],$myrow["person_id"], false);
$memo = $myrow['memo_'];
if ($txt != "")
{
if ($memo != "")
$txt = $txt."/".$memo;
}
else
$txt = $memo;
// Change memo on col 4 to 7
//$rep->TextCol(6, 7,$txt, -2);
$rep->TextCol(4, 7, $txt, -2);