Check the session details which used by PL/SQL objects like procedure, function, package
Check the Session Detail for PL/SQL objects
select sid, sql_id,serial#, status, username, program
from v$session
where PLSQL_ENTRY_OBJECT_ID in (select object_id
from dba_object s
where object_name in ('&PROCEDURE_NAME'));