Skip to Content
0
Former Member
Sep 26, 2008 at 10:52 AM

at new and modify

29 Views

Guruz,

my code:

SORT gt_output BY storeno.

LOOP AT gt_output.

AT NEW storeno.

***store branch number

PERFORM get_kna1 USING gt_output-storeno

CHANGING gv_adrnr.

ENDAT.

**storeno

gt_output-storeno = gv_sort2.

MODIFY gt_output.

CLEAR gt_output.

ENDLOOP.

..here im having same branch number in gt_output as iam modifying it within the loop its hitting at new again for the same branch..how can i overcome this?

pla advise..

thanks