The statistics windows I think has a limit of how many it can show.
Try querying the table. You'll want to put in the client number, type you're looking for (JOBS? SCRI? JOBF? etc), and the name of the object.
The example below, will list any active runs for 'JOBS.SAMPLE' in client 100.
select oh_client, oh_name, oh_otype, oh_deleteflag, ah_idnr, AH_ParentAct, ah_timestamp1, ah_timestamp2, ah_timestamp4
from AH, OH
where 1=1and oh_idnr = ah_oh_idnr
and oh_deleteflag = 0
and ah_timestamp4 is null
and oh_client = '100'
and oh_otype = 'JOBS'
and oh_name = 'JOBS.SAMPLE'