I cannot reproduce this. ST_SUPPCREDIT (21) types are included correctly here.
Please try this SQL statement directly in your phpMyAdmin.
SELECT
IF(trans_type=11 || trans_type=20 || trans_type=0,-1,1)*
IF(trans_type=2 || trans_type=10 || (trans_type=0 AND amount<0)
|| trans_type=11, net_amount*ex_rate,0) net_output,
IF(trans_type=11 || trans_type=20 || trans_type=0,-1,1)*
IF(trans_type=2 || trans_type=10 || (trans_type=0 AND amount<0)
|| trans_type=11, amount*ex_rate,0) payable,
IF(trans_type=11 || trans_type=20,-1,1)*
IF(trans_type=2 || trans_type=10 || (trans_type=0 AND amount<0)
|| trans_type=11, 0, net_amount*ex_rate) net_input,
IF(trans_type=11 || trans_type=20,-1,1)*
IF(trans_type=2 || trans_type=10 || (trans_type=0 AND amount<0)
|| trans_type=11, 0, amount*ex_rate) collectible,
taxrec.trans_type,
taxrec.trans_no,
taxrec.tran_date,
taxrec.rate,
ttype.id,
ttype.name
FROM 0_tax_types ttype,
0_trans_tax_details taxrec
WHERE taxrec.tax_type_id=ttype.id
AND taxrec.trans_type != 13
AND taxrec.tran_date >= '2011-05-01'
AND taxrec.tran_date <= '2011-05-31'
You may need to change the tran_date period. Here you should see the trans_type 21 (ST_SUPPCREDIT).
/Joe