Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Display Problem in ALV output

Former Member
0 Kudos

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.

4 REPLIES 4

Former Member
0 Kudos

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.

0 Kudos

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.

Former Member
0 Kudos

Resolved.

Former Member
0 Kudos

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