License, System Parameters and DB Instances MOD006355
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, 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_TITLE
variable in theon_load
-method fromCHANGE_TITLE=FALSE
toCHANGE_TITLE=TRUE
.
- Open the Python Macros module and change the
- If an individual user menu is used:
- Open the Python Macros module and insert the following lines in the
on_load
method of the user menu: - The following lines, like the other lines in the
on_load
method, must each be indented with four spaces.
- Open the Python Macros module and insert the following lines in the
- If the standard user menu MOD0099QC is used:
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.