i have converted the packed decimal to char format .
i want split the numeric and decimal ..not able to do it the sy-subrc value is zero
DATA: lv_menge(2),
lv_Dec(2).
CLEAR lv_menge.
LOOP AT it_data INTO wa_data.
SORT it_btext.
READ TABLE it_btext INTO wa_btext
WITH KEY bwart = wa_data-bwart BINARY SEARCH.
IF sy-subrc EQ 0.
wa_output-btext = wa_btext-btext.
ENDIF.
READ TABLE it_maktx INTO wa_maktx
WITH KEY matnr = wa_data-matnr BINARY SEARCH.
IF sy-subrc EQ 0.
wa_output-maktx = wa_maktx-maktx.
ENDIF.
*WRITE: wa_data-menge TO wa_output-menge1 .*
*SPLIT wa_output-menge1 AT '.' INTO lv_menge lv_dec.*