Access
-
Customizer → Databases → License, System Parameters, and DB Instances
Information
-
In this module, the license, system parameters and DB instances of the system of the current user are displayed.
-
Some parameters can be changed if necessary, e.g., the system name.
Details
-
System parameters description
-
Database instance parameters description.
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, it can also be set to the runtime of the system title via the following Python function:
ui_set_system_title(title: string)
|
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_TITLEvariable in theon_loadmethod fromCHANGE_TITLE=FALSEtoCHANGE_TITLE=TRUE
-
-
If an individual user menu is used,
-
open the Python Macros module and insert the following line in the
on_loadmethod of the user menu: -
The following lines must, like the other lines, be indented by four spaces each in the
on_loadmethod.
-
-
PID = str(os.getpid()) ppms.ui_set_system_title('Systemtitel' + ', PID: ' + PID + " - " + ppms.uvar_get("@1"))
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.
-