2006 Jul 03 7:13 AM
hi,
i have a ranges field i want to append the land data in
ranges object.
2006 Jul 03 7:16 AM
sort table itab by vbeln posnr.
read table itab index 1.
ranges-low = itab-vbeln.
clear itab.
describe table itab lines w_line.
read table itab index w_line.
ranges-high = itab-vbeln.
ranges-sign = 'I'.
ranges-option = 'BT'.
append ranges.
This is surely help u.