Current: _LizenzSystemparameterUndDBInstanzenMOD006355_SystemTitel _LizenzSystemparameterUndDBInstanzenMOD006355_SystemTitel Note Alternatively, it can also be set to the runtime of the system title via the following Python function: ui_set_system_title(title: string) CODE See also: Python API Tip In order to distinguish different sessions, the currently logged-on user and the PID can be displayed in the system title. If the MOD0099QC standard menu is used: open the Python Macros module and change the CHANGE_TITLE variable in the on_load method from CHANGE_TITLE=FALSE to CHANGE_TITLE=TRUE If an individual user menu is used, open the Python Macros module and insert the following line in the on_load method of the user menu: The following lines must, like the other lines, be indented by four spaces each in the on_load method. PID = str(os.getpid()) ppms.ui_set_system_title('Systemtitel' + ', PID: ' + PID + " - " + ppms.uvar_get("@1")) PY Details When you launch PLANTA project for the next time, the PID is displayed in the system title. The PID is part of the log file as well, so all log files can always be ascribed to the corresponding session. ×