Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

convert internal table into range without loop

Former Member
0 Likes
1,074

Hi all,

I'm looking for the simplest (and most efficient) way to convert an internal table into a range witout going through a loop, any ideas?

2 REPLIES 2
Read only

Former Member
0 Likes
735

Hi Haku,

If the internal table has the same four fields as the range

(SIGN, OPTION, LOW, HIGH), then you can try

itab[] = r_range[].

If not, it is not possible without looping.

Regards,

Ravi Kanth talagana

Edited by: Ravi Kanth Talagana on May 2, 2008 2:52 PM

Read only

Former Member
0 Likes
735

hi,

Yes the range and the internal table structure has to be same then it is possible else it is not possible without looping ..

Regards,

Santosh