‎2008 Apr 30 5:50 AM
while moving data from 1 field to another how do make the destination field dynamic
‎2008 Apr 30 6:04 AM
Hi,
Could you please Elaborate your question...!!
If you meant the type of the destination field as dynamic .... try using Field-symbols.
Regards,
Nikhil.
‎2008 Apr 30 6:15 AM
you can use the Field Symbol..
Field-Symbol: Traget type any.
data : Field1 type type1
data : Field2 type type1
data : Field3 type type1
data : Field4 type type1
data : Field5 type type1
data : Source type type1 values 'THE VALUE'.
data: Field type fieldname.
do 5 times.
concatinate 'FIELD' sy-index into field.
assign (field) to <traget>.
move source to <traget>
Here the value 'THE VALUE' will be copied to all five data variable. i.e field 1 - 5.
No Rewards Plz