2007 Nov 07 5:41 AM
I had a internal table like
f1 f2 f3 f4
1 1 1 1
2 2 2 2
3 3 3 3
and I want to update this internal table randmly with refrence to the particular field, and remaining fields must be as it is before and my output to be
f1 f2 f3 f4
1 1 [2] 1
2 [1] 2 2
[4] 3 3 3
suggest me in the above please...
2007 Nov 07 5:43 AM
2007 Nov 07 5:45 AM
Hi,
Use the 'TRANSPORTING' opetion while modifying your internal table. Transport only those fields which you need to modify.
MODIFY <ITAB> FROM <WA> TRANSPORTING <FIELDNAME> INDEX SY-TABIX.
Thanks
Vijay
<b>PLZ Reward points if helpful</b>