Consultor Eletrônico



Kbase P95557: How to get the name of the machines of a remote clients that have a exclusive-lock of a record
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   29/09/2004
Status: Unverified

GOAL:

How to get the name of the machines of a remote clients that have a exclusive-lock of a record

FIX:

Use the following code:
FOR EACH _lock WHERE _lock-flags = 'X':
FOR EACH _connect WHERE _lock-name = _connect-name AND _connect-type = "REMC":
DISPLAY _connect-device.
END.
END.