Hi ,
I need to transfer the internal table data to application server .
I am using the below code .
Open dataset filename.
loop at itab into wa.
transfer wa to filename .
endloop.
close dataset filename.
Is there a way to pass the whole internal tab at a stretch instead of passing line by line . or there are any Function modules for these.
Thanks