yes, It was a strange and old teach pendant with the triangular shape buttons key, I worked on that robot only for 2 hours 10..12 years ago. The robot movement where terrible, klunky and with a lot of acceleration/deceleration between the points with no reason.
Not surprising, considering that series of robots ended production... 40 years ago? I'm frankly amazed any of them are still in operation.
Or there is a list where I can write my point name and the robot will automatically compare with the current robot position? And yes, Fanuc has it.. but where are speaking about Kuka.
The various Home positions and $IN_HOME signals are the closest equivalent KUKA has to the Fanuc RefPos. The tolerance band for each is adjusted using the $H_AXIS_TOL variables.
You can't change the names of the Home positions, but if you look inside the template PTP HOME inline form, you'll see the line $H_POS=XHOME. XHOME is a teachable point, while $H_POS is the actual system variable that the robot's position is checked against in realtime. So there's nothing stopping you from adding code somewhere (in the INI Fold of your programs, or in your SPS) that would do something like $AXIS_HOME[1]=MyPosVariable. Just arrange the code such that if/when MyPosVariable is touched up, the AXIS_HOME variable is updated before you rely on the $IN_HOME1 status variable.
You can also use the Workspaces in the KRC (Axis or Cartesian), and those can be dynamically adjusted by your program.