‎2009 Mar 10 8:19 PM
Is there a way to know if the code executed is called in an update task. (System field?)
Regards.
‎2009 Mar 10 9:31 PM
hi,
check update task by calling function module TH_IN_UPDATE_TASK
regards,darek
‎2009 Mar 10 8:29 PM
‎2009 Mar 10 9:31 PM
hi,
check update task by calling function module TH_IN_UPDATE_TASK
regards,darek
‎2009 Mar 10 9:48 PM
Hi,
I dont know if there is any system field for that,
but you can declare your own variable globally like
data : fl_flag(1) type c.and then in the perform on commit....
set it to 'X'.
form <form_name>.
"processing steps
fl_flag = 'X'.
endform.later on after commit work.
check if the fl_flag is set or not
if fl_flag = 'X'.
write 'Performed'
else.
write 'Did not perform'
endif.Regards,
Siddarth