2007 Sep 12 6:55 AM
Hi Experts,
My fieldcatalog table is populated by using FM "REUSE_ALV_FIELDCATALOG_MERGE". But the fields qfieldname & qtabname is populated for one of the records in the catalog table which is creating problem in my output.
qfieldname is populated with previous fieldname in my internal table declared and qtabname with my int.table name. I was trying to sum the field but the value is splitted here.
when i manually remove qfieldname & qtabname am getting proper output.
why this two fields are populated? could anyone help...
sure for points.
Thanks in Adv,
Ponraj.s.
2007 Sep 12 7:05 AM
Hi,
The two properties QFILDNAME & QTABNAME are for 'field with quantity unit' and the 'table name'. These field will get populated for Quantity fields....
In your case the quantity unit may be different for the records you are suming up...
if you want to remove these fields value ...
loop at i_fieldcat into wa_fieldcat.
if wa_fieldcat-fieldname = field name.
wa_fieldcat-qfieldname = ' '.
wa_fieldcat-qtabname = ' '.
modify i_fieldcat from wa_fieldcat.
endif.
endloop.
Satya.
2007 Sep 12 7:29 AM
Hi Satya,
I got what you mean. So depending upon the unit type , it was trying to split the values .
Oh, I was confused why it showing different values...
Thanks yaar.
2007 Sep 12 7:30 AM
2007 Nov 12 5:23 AM
hi;
i want to displaY The output charg using (valuation type in mchb table)
output values display as like title ..
plz help me
regards
kannan.k.s