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

GLOBAL ITAB needed...

naveenvishal
Contributor
0 Likes
306

How to retain the itab values even after program finishes execution...

ive the requirement of storing itab data and append/modifying the itab on each run...

prog 1 -


> progr2 -


> apppend itabA (progr2 ends and return, not prg1)

prog 1 -


> progr2 -


> apppend itabA (progr2 ends and return, not prg1)

prog 1 -


> progr2 -


> apppend itabA (progr2 ends and return, not prg1)

prog 1 -


> progr2 -


> apppend itabA (progr2 ends and return, not prg1)

at last ,

prog1 prints the entire itabA...

i need somthing like global itab...

Thanx,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
292

Hi Naveen,

You could just create a Z table. Append the internal table values to that table and use the table for display in the end.

That should solve your problem.

1 REPLY 1
Read only

Former Member
0 Likes
293

Hi Naveen,

You could just create a Z table. Append the internal table values to that table and use the table for display in the end.

That should solve your problem.