‎2010 Dec 31 7:06 AM
Hello All,
A RAISE statement in the program "SAPLTHFB" raised the exception
condition "ALREADY_RUNNING".
Code -
STP' field '2'
000690 id 'COLLISION_UNAME' field user
000700 id 'COLLISION_OBJECT' field obj
000710 id 'SYNCHRON' field 'X'.
000720 if sy-subrc <> 0.
-----> raise already_running.
000740 endif.i found the sap note 595671, however it is already implemented in the system.
Can anybody help me to solve this dump?
Regards,
Reshma
‎2010 Dec 31 7:11 AM
Hi,
Looks like you are getting this exception raised because there is another instance of the program already running and when the program tried to enqueue the object using the function 'call 'C_ENQUEUE' since it was already running and only one istance of the object is allowed you are getting the exception the object being checked in the variable 'OBJ'.
Regards,
Himanshu
‎2010 Dec 31 10:54 AM
Hi Himanshu,
Thank you for your reply.
What can be the solution to resolve this? The related note is already applied in system.
Regards,
Reshma K
‎2010 Dec 31 11:30 AM
Hi,
I am not sure what is the object that is being checked but i think if you go to SM12 you should see that the object is already locked and the lock would have to be removed to get rid of the dump in other words you need to kill the other instance of the object that is already in execution.
You should also look at Matt's reply to a similar post:
Regards,
Himanshu