HI frends I am getting an error Unable to interpret " 1,683 " as a number.
can any one pls tell me hw to rectify these error
008840 FORM unicode_optimize .
008850
008860 DATA: lin TYPE i,
008870 lin2 type i,
008880 length type i,
008890 total_list_count TYPE int4.
008900
008910 DATA : wa LIKE l_list_wa,
008920 itab1 LIKE l_list_wa OCCURS 0 WITH HEA
008930
008940
008950 DATA: lv_index TYPE int4.
008960
008970
008980 DESCRIBE TABLE l_list LINES lin.
008990 * describe table h_unicode_errors lines lin2.
009000 * length = lin + lin2.
009010
009020 total_list_count = LIN + tot_lines.
009030
009040 DO total_list_count TIMES.
009050 lv_index = sy-index + 10.
> READ LINE lv_index FIELD VALUE l_list_wa-ch
009070 l_list_wa-prog INTO wa-prog
009080 h_unicode_wa-line into wa-LINE
009090 h_unicode_wa-spras into wa-ch1.
009100
009110 IF sy-subrc EQ 0.
009120 IF wa-ch EQ 'X' and WA-ch1 eq 'X'.
009130 MOVE wa-ch TO itab1-ch .
009140 MOVE wa-prog TO itab1-prog.
009150 MOVE wa-LINE TO itab1-LINE.
009160 APPEND itab1.
009170 CLEAR itab1.
009180 ENDIF.