//
// Check if entered value is above zero
//
L DB50.Man_Speed_1 // should be above 0
L 0.000000e+000
>=R
JC CH1
L 0.000000e+000
T DB50.Man_Speed_1 // is set to 0
CH1: CLR
//
// Check if entered value is not more than 100
//
L DB50.Man_Speed_1 // should be less than 100 or equal
L 1.000000e+002
<=R
JC CH2
L 1.000000e+002
T DB50.Man_Speed_1 // is set to 100
CH2: CLR
//
// Check if entered value is above zero
//
l 55.0
t md50
L md50 // should be above 0
L 0.000000e+000
>=R
JC CH1
L 0.000000e+000
T md50 // is set to 0
CH1: CLR
//
// Check if entered value is not more than 100
//
L md50 // should be less than 100 or equal
L 1.000000e+002
<=R
JC CH2
L 1.000000e+002
T md50 // is set to 100
CH2: CLR
When this Code are work, test the Variable "DB50.Man_Speed_1".
Is it Posible, the result is Override your Variable fron an another Prozess.