2010 Jan 21 11:12 AM
Hi,
i have a perform which is called in all events like
AT start of selection.
End of selection.
etc..
So do we have any variable in SYST of any FM using which i can find out in which EVENT that perform is called.
it is a standard code so i have only possibility to change that FORM . i cannot make any other changes.
Hi,
i have a perform which is called in all events like
AT start of selection.
End of selection.
etc..
So do we have any variable in SYST of any FM using which i can find out in which EVENT that perform is called.
it is a standard code so i have only possibility to change that FORM . i cannot make any other changes.
2010 Jan 21 2:35 PM
If you can add code into the form you can try this.
data: l_count type i.
import l_count from memory.
if not sy-subrc is inital.
l_count = 1.
else.
add 1 to l_count.
endif.
export l_count to memory.
then depending on the l_count value you will be able to know how much time the form has been called.