Skip to main content
6-Contributor
March 13, 2025
Solved

RTPPM data translations

  • March 13, 2025
  • 1 reply
  • 1014 views

Hello, I've been trying to find the data tokens for the quick time picker dropdown list in Downtime events dashboard in RTPPM but unable to do so. I need help in locating these tokens so I can add their translations in the respective localization tables. Thanks!

MC_10978167_0-1741864601599.png

 

Best answer by mstarnaud

Hi MC

 

These time intervals don't use tokens. They're stored in an SQL table called QuicktimeInterval in the RTPPM database. There's a Name and Displayname column, you must not change the Name (it's the way the program recognizes it), but you can change the Displayname : it's how it appears in the screen. You will need to write SQL queries to read & update the Displaynames.

 

Sadly this does mean there is no language-dependent translation. All users will see the same words, no matter which language they use. We have request PSPT-76679 to change the Displayname name system into Tokens for these time intervals, but this change has not been started yet.

 

I also created this Article and it should get updated if/when the solution changes.

 

Let us know if that solves your issue.

1 reply

mstarnaud16-PearlAnswer
16-Pearl
March 13, 2025

Hi MC

 

These time intervals don't use tokens. They're stored in an SQL table called QuicktimeInterval in the RTPPM database. There's a Name and Displayname column, you must not change the Name (it's the way the program recognizes it), but you can change the Displayname : it's how it appears in the screen. You will need to write SQL queries to read & update the Displaynames.

 

Sadly this does mean there is no language-dependent translation. All users will see the same words, no matter which language they use. We have request PSPT-76679 to change the Displayname name system into Tokens for these time intervals, but this change has not been started yet.

 

I also created this Article and it should get updated if/when the solution changes.

 

Let us know if that solves your issue.

6-Contributor
March 13, 2025

got it, thank you.