I imagine you are using this for a restarting condition for safety. What I have done in the past is write this in the ladder.
STR #50076 Jog Operation Inform
OR #01220 Universal/General Purpose Input #969
AND-NOT #11220 Universal/General Purpose Input #969
AND-NOT #50117 Cube #32
OUT #01220 Universal/General Purpose Input #969
If someone has jogged the robot and it is not in a safe cube (32), I seal up Input 969. The macro jog can't have an IF condition so I will use JUMP and *LABEL to skip around it. JUMP *LABEL IF IN#(969)=OFF. You don't specify controller generation so there may be other ways such as an IFTHEN, etc.
I quite often also use #50075 in series with #50076. This signal indicates that the job to be executed has just been edited, searched, or manipulated with the cursor ON. This can be used for determining starting conditions after editing.
The job will pulse Output #(969) to break the seal.