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: 

Need to identify user exit triggering first time

Former Member
0 Kudos

Hi Friends,

i have written an include inside MV45AFZZ(We have access key for this standard prog). inside include i have written some code. Here my problem is, While running VA01 T.Code it is triggering multiple times, when ever a user enter values and hit the enter.

my code needs to get triggered once. How can i check this condition.

Thanks,

Sekhar.J

1 REPLY 1

Former Member
0 Kudos

Hi,

create a statics variable and check that..

ex..

STATICS: V_FOUND.

if v_found is initial.

***Execute your code here..

  • Set the variable V_FOUND = 'X', so that it does not get triggered again.

V_FOUND = 'X'.

endif.

Thanks

naren