- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2017 05:55 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2017 06:38 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2017 06:01 AM
You could get it right from the sys_user table using the 'date_format' field.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2017 06:13 AM
That's what I do now, but this might cause me issues.
The user format is part of the session. So even if you change the format on the user table, as long as the session is not renewed, the user will still be working with his old format. This will give problems if you use the new format, with values in the old format. So i had hoped for something like gs.getUser().getDateFormat(). But it seems that does not exist?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2017 06:32 AM
Hi Peter,
Checking this Out of curiosity, did you try the below method?
gs.getSession().getUser().getTimeFormat()
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-12-2017 06:34 AM
You probably mean
gs.getSession().getUser().getDateFormat()
But, yes! This is what I was looking for ^^. Thanks