Hi,
I downloaded that assambler code and compiled it to a personal dataset XXX.YYY(queryenq) . Now I am writing this rexx code to find out the contention of AAAA.BBBB dataset.
/* Rexx ********************/
address tso
"CALL '"XXX.YYY"(queryenq)' ,
AAAA.BBBB"
If enqjob.0 > 0 Then
Do a = 1 to enqjob.0
Say enqjob.a enqtype.a
End
Else
Say 'No enq contention exists on this system.'
but it is not working. Please tell me what is wrong.