Variableninhalt eines fremden Prozesses ermitteln

ID34
Link ReferenceNot set
Link CreditsNot set
Link Technical DocumentationNot set
PlCodelangCaché
PlGroupCaché-Spezifisch, Prozesse/Jobs
PlItemTitleVariableninhalt eines fremden Prozesses ermitteln
Code; Important: You musn't check variables in your own job, it will result in a <PARAMETER>-Error!

Set checkjob=1234
Set checkvar="foo"
; Check if job is not my own
Quit:checkjob=$Job
; Check if Job exists und prompt the content of the varible foo
If $Data(^$Job(checkjob)) W !,$ZUtil(88,2,checkjob,checkvar)
; Prompts the content of the variable foo, maybe it is 'bar' ;-)
Result Example