- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2022 12:07 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2022 12:55 AM
journals are kept in sys_journal_field table. The max length of column value is 8,000.
However, this is just an application limitation and ServiceNow will actually allow more characters to be entered.
Any string field that is larger than varchar(255) is given the mediumtext data type. In the client, it will be represented as an HTML textarea, instead of an HTML input. The maximum length of mediumtext is 16,777,215 bytes.
Note, that this is 16,777,215 bytes and not characters. Multibyte characters require more bytes per character.
Refer to the following documentation.
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB0685779
And the following thread.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-08-2022 02:04 AM
Thank you very much for helping me!