Pages

Showing posts with label string to table. Show all posts
Showing posts with label string to table. Show all posts

Wednesday, December 2, 2009

split string at length

DO.
move string to lv_char132.
SHIFT string by 132 PLACES left.
wa_tab-string = lv_char132.
APPEND wa_tab to it_tab.

IF string is INITIAL.
exit.
ENDIF.
ENDDO.