hi all,
i have an internal table for which i am displaying all the entries.
now i want to display the column headings also but the spacing is not coming properly .. plz hep..
write:/ 'PO Num',
'Ven Num',
'Item Num',
'Mat Num',
'Net Price',
'Ven Name'.
loop at it_out.
write:/ it_out-f_ebeln,
it_out-f_lifnr,
it_out-f_ebelp,
it_out-f_matnr,
it_out-f_netpr,
it_out-f_name1.
endloop.