Hello All,
I need to display the GLPCA-MSL in this format NN not NN.NNN,NNN as it is now
In debug i have in my internal table (GT_TAB) :MSL = 54000.000
and when i display ALV ( 54.000,000)
You see that it is converted from 54000.000 to 54.000,000
I need to display just 54 instead of 54.000,000
I use the REUSE_ALV_GRID_DISPLAY
and the field catalog is filled like this
********************************************************
Build fieldcatalog
*********************************************************
clear ls_fieldcat.
ls_fieldcat-col_pos = '4' .
ls_fieldcat-fieldname = 'MSL'.
ls_fieldcat-tabname = 'GT_TAB'.
ls_fieldcat-outputlen = 19.
ls_fieldcat-seltext_l = text-007.
ls_fieldcat-emphasize = ' '.
ls_fieldcat-do_sum = 'X'.
append ls_fieldcat to gt_fcat.
***********************************************************
i don't think the solution is to change the user parameters
Thanks for your response in advance,
Regards
Rachid