Skip to main content
Solved

Update Panel Names in Maintenix

  • March 29, 2021
  • 1 reply
  • 142 views

Forum|alt.badge.img+8

Hi Team,

Is there a .jsp we cannot find for editing panel descriptions?

There is a security privilege that suggests there is one

 

Categorysortingup.gif1 Parm Namesortingup.gif2 Description Enabled
  Assembly - Panels ACTION_EDIT_PANEL_DETAILS Permission to edit panel.

 

We’d like to update the panel descriptions, ie  EQP_TASK_PANEL.DESC_SDESC

Understand for adding new Panels we need to use configurator.

 

Thanks in Advance

Best answer by Hashani Fernando

Hi,

This configuration parameter is actually no longer referenced by the software, as panel details should not be edited within the program. It has been removed from the database in 8.3-SP3 to avoid confusion among users. The only way to edit a panel description is to change it via a database script as below:
 

UPDATE EQP_TASK_PANEL
SET DESC_SDESC = '<new description>'
WHERE PANEL_ID = xxxxxx
AND PANEL_DB_ID = xxxxxxx

However, to add new panels, you can import the “Baseline Loader - Job Cards” spreadsheet through the configurator.

This topic has been closed for replies.

1 reply

Forum|alt.badge.img+6
  • Hero (Employee)
  • 19 replies
  • Answer
  • March 29, 2021

Hi,

This configuration parameter is actually no longer referenced by the software, as panel details should not be edited within the program. It has been removed from the database in 8.3-SP3 to avoid confusion among users. The only way to edit a panel description is to change it via a database script as below:
 

UPDATE EQP_TASK_PANEL
SET DESC_SDESC = '<new description>'
WHERE PANEL_ID = xxxxxx
AND PANEL_DB_ID = xxxxxxx

However, to add new panels, you can import the “Baseline Loader - Job Cards” spreadsheet through the configurator.