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

work area

Former Member
0 Likes
712

Hi experts,

DATA: T_POSMDRADR TYPE TABLE OF Y_POSMDRADR.

DATA: WA_POSMDRADR LIKE LINE OF T_POSMDRADR.

now i have data in T_POSMDRADR.I want to move this data to WA_POSMDRADR.how can i move

Regards

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
696

Hi,

USe

Loop at T_POSMDRADR into WA_POSMDRADR

Endloop

Regards

Arun

7 REPLIES 7
Read only

Former Member
0 Likes
696

You can either do a Read table T_POSMDRADR Or Loop at T_POSMDRADR into WA_POSMDRADR then it will move the data to the WA.

Reward points if useful!!

~Ranganath

Read only

Former Member
0 Likes
696

either u can use 'read table .......index .'

or loop at table .

move table to wa.

endloop.

Sameer

Read only

0 Likes
696

HI,

loop at itab into xitab.

endloop.

or

read itab into xitah with key.

REgards,

ashok...

Read only

former_member404244
Active Contributor
0 Likes
696

hi,

Loop at T_POSMDRADR into WA_POSMDRADR.

ENDLOOP.

It will move the data to the WA.

Regards,

Nagaraj

Read only

Former Member
0 Likes
696

Hi Ravi,

loop at T_POSMDRADR.

WA_POSMDRADR = T_POSMDRADR.

endloop.

or

read table T_POSMDRADR WITH KEY ....

Reward points for helpful answers,

kiran.M

Read only

Former Member
0 Likes
697

Hi,

USe

Loop at T_POSMDRADR into WA_POSMDRADR

Endloop

Regards

Arun

Read only

Former Member
0 Likes
696

Hi,

use.,

LOOP AT T_POSMDRADR INTO WA_POSMDRADR.

WRITE: / WA_POSMDRADR-field name, WA_POSMDRADR-field name.

ENDLOOP.

***********please reward points if the information is helpful to you*************