‎2006 Sep 28 12:45 PM
Hello all,
MOVE <LT_ORDERS>-START_FIRST_ACT TO WA_FINAL-START_FIRST_ACT.
In this statement START_FIRST_ACT has a value 20060927125112.
But i need only 20060927 in the output.
How to do this ?
‎2006 Sep 28 12:46 PM
v_var = WA_FINAL-START_FIRST_ACT+0(8).
or u can store in the same variable
WA_FINAL-START_FIRST_ACT = WA_FINAL-START_FIRST_ACT+0(8).
‎2006 Sep 28 12:47 PM
Hi,
Change the coding like this:
MOVE <LT_ORDERS>-START_FIRST_ACT+0(8) TO WA_FINAL-START_FIRST_ACT.
P.S. Mark all helpful answers for points.
JLN
‎2006 Sep 28 12:48 PM
Hello,
Try
v_var = WA_FINAL-START_FIRST_ACT(8).
Dnt forget to reward!!
‎2006 Sep 28 1:26 PM
hi John,
use offset for the same ..
<b> MOVE <LT_ORDERS>-START_FIRST_ACT+0(8) TO WA_FINAL-START_FIRST_ACT.</b>Regards,
Santosh