Access
-
Customizer → Databases → License and System Parameters
Information
-
In this module, the license and system parameters of the system of the logged-in user are displayed.
-
Some parameters can be changed if necessary, e.g., the system name.
Details
-
Here you can find descriptions of individual system parameters
Change System Title
Procedure
-
Enter the new system title in the System name field.
-
Save.
-
After system restart, the new system title will be displayed in the title bar.
Note
-
Alternatively, the system title can also be changed at runtime using the following Python function:
ui_set_system_title(title: string)
|
See also: Python API |
Tip
-
To keep different sessions separate, the currently logged-in user and the PID can, e.g., be displayed in the system title.
-
If the standard user menu MOD0099QC is used:
-
Open the Python Macros module and change the
CHANGE_TITLEvariable in theon_load-method fromCHANGE_TITLE=FALSEtoCHANGE_TITLE=TRUE.
-
-
If an individual user menu is used:
-
Open the Python Macros module and insert the following lines in the
on_loadmethod of the user menu: -
The following lines, like the other lines in the
on_loadmethod, must each be indented with four spaces.
-
-
PID = str(os.getpid())
ppms.ui_set_system_title('Systemtitel' + ', PID: ' + PID + " - " + ppms.uvar_get("@1"))
Details
-
The next time you open PLANTA project, the PID will be displayed in the system title.
-
The PID is also part of the log file so that a log file can always be assigned to the corresponding session.
-