Hello,
I have a table structure with some fields of type NUMC with a length of 9. One of these fields is called TURNOVER. When I use a tableView and a tableViewIterator to display my table structure turnover looks like 001234567. What I would like turnover to look like is 1.234.567. Is there a simple way to do this?
Thanks
ALEX
One way to convert from 000123456 is to use FM <b>CONVERSION_EXIT_ALPHA_INPUT</b> FM and update this value in the internal table. This will change the value from <b>000123456</b> to <b>123456</b>. One more way could be by changing the data type of the column from <b>NUMC</b> to <b>Integer</b>. I am sure there is a parameter for this in tableview where you can change the <b>datatype</b>(not sure which).
Regards,
Subramanian V.
Add a comment