‎2008 May 12 4:15 PM
Hi ,
I am trying to add a check and pop-up for the sales order .I am making the changes in the include -MV45AFZZ . But I see that code is triggered couple of times . So decided to use the memory-id .Can anyone help me with the idea how to implement it ?I mean I must be able to trigger the pop-up only once .For this I thought I would use a flag and send it to memory-id and then stop it when it is triggered second time . How do I do this ?
Anyone plz help me
Thanks
‎2008 May 12 4:19 PM
Hi,
ta: v_num type i value 12.
export v_num to memory id 'ABC'.
v_num = v_num + 1.
import v_num from memory id 'ABC'.
write:/ v_num.
Example:
data: v_num type i.
do 3 times.
import v_num from memory id 'ABC'.
if v_num is initial.
do 5 times.
write:/ sy-index.
enddo.
endif.
v_num = v_num + 1.
export v_num to memory id 'ABC'.
enddo.
Edited by: Velangini Showry Maria Kumar Bandanadham on May 12, 2008 5:22 PM
‎2008 May 12 4:19 PM
Hi,
ta: v_num type i value 12.
export v_num to memory id 'ABC'.
v_num = v_num + 1.
import v_num from memory id 'ABC'.
write:/ v_num.
Example:
data: v_num type i.
do 3 times.
import v_num from memory id 'ABC'.
if v_num is initial.
do 5 times.
write:/ sy-index.
enddo.
endif.
v_num = v_num + 1.
export v_num to memory id 'ABC'.
enddo.
Edited by: Velangini Showry Maria Kumar Bandanadham on May 12, 2008 5:22 PM
‎2008 May 12 4:23 PM
Hi,
v_flag = 'X'.
EXPORT v_flag TO MEMORY ID 'V_FLAG'.
IMPORT v_flag FROM MEMORY ID 'V_FLAG'.