‎2007 Apr 04 12:28 PM
‎2007 Apr 04 12:30 PM
In MOVE actually copies data into another data field.
while ASSIGN is used in field-symbols. and field symbols is used to reference another variable dynamically. So this field symbol will simply point to some other variable and this pointer can be changed at runtime.
(Assign is like Pointer in C)
‎2007 Apr 04 12:30 PM
In MOVE actually copies data into another data field.
while ASSIGN is used in field-symbols. and field symbols is used to reference another variable dynamically. So this field symbol will simply point to some other variable and this pointer can be changed at runtime.
(Assign is like Pointer in C)
‎2007 Apr 04 12:35 PM
ABAP converts assign Statement into move form, and what ever statements in ABAP if u write using symbols lie +, / , = , it will convert into ADD DIV Move like english statement.
so avoid using symbol it will take time for conversion internally.