‎2007 Aug 08 12:26 PM
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
‎2007 Aug 08 12:31 PM
Hi,
USe
Loop at T_POSMDRADR into WA_POSMDRADR
Endloop
Regards
Arun
‎2007 Aug 08 12:28 PM
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
‎2007 Aug 08 12:28 PM
either u can use 'read table .......index .'
or loop at table .
move table to wa.
endloop.
Sameer
‎2007 Aug 08 12:29 PM
HI,
loop at itab into xitab.
endloop.
or
read itab into xitah with key.
REgards,
ashok...
‎2007 Aug 08 12:30 PM
hi,
Loop at T_POSMDRADR into WA_POSMDRADR.
ENDLOOP.
It will move the data to the WA.
Regards,
Nagaraj
‎2007 Aug 08 12:31 PM
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
‎2007 Aug 08 12:31 PM
Hi,
USe
Loop at T_POSMDRADR into WA_POSMDRADR
Endloop
Regards
Arun
‎2007 Aug 08 12:39 PM
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*************