Quantity formatting

In order to convert quantity amounts to a more readable format, some data formatting may be required.

One way to achieve this within the Email Data User-Exit is:

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
  DATA: ls_variables  TYPE /floe/vars_s
        lv_qty        TYPE i.
*
  LOOP AT ch_variables INTO ls_variables.
*
    CASE: ls_variables-var_code.
*
      WHEN 'NETWR'.
* Format values
          lv_qty = ls_variables-value.
          ls_variables-value = lv_qty.
          MODIFY ch_variables FROM ls_variables.
*
    ENDCASE.
*
  ENDLOOP