Home > Back-end >  Oracle Apex modify session time out message
Oracle Apex modify session time out message

Time:09-16

Is there a way you can modify the default Apex session timeout message in Oracle Apex? Can you show the step? Apex version: 20

From this image:

enter image description here

To this:

enter image description here

CodePudding user response:

If your goal is to change what is written on the message, you can customize the Text Message

  1. Go to Shared Components / Globalization / Translate / Text Messages

path for text messages

  1. Create a new Text Message

Create Text Message Button

  1. You can translate the message by adding the ID of the message on the Name field, and your custom message on Text Translating Text Message

In your case, for the first picture, it would be APEX.SESSION.ALERT.MAX_WARN

You can check more translations for the other timeout message here : Translating Messsages

  • Related