Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

"Using" Versus "Changing"

syerazvi
Participant
0 Kudos

DATA V TYPE I.
v = 20.
write / v.
perform change1 using v.
write / v.
FORM CHANGE1 using P_V.
p_v = 40.
write / p_v.
ENDFORM.

I am getting the below only on doing F8 when i use USING as well as when CHANGING. What can i do to get 20 40 20 instead?

20

40

40

Best,Ahmed

1 REPLY 1

matt
Active Contributor

PERFORM is obsolete. Don't use it.

Anyway, the behaviour is adequate explained in the documentation. Under effect, under additions 2 and 3.