Idea Summary
It needs an option to shorten long text for a good looking report.
The whole text should be able to be displayed as a modular window via a link at the end of the shortened text.
Use Case
In our report we have some columns like Notes where the text is often too long for a good looking report. So I truncated to 80 characters. I do this in the source query like that:
case when length(NOTES) > 80 then substr(NOTES,1,80) ||
'<span><a href="'|| apex_util.prepare_url('f?p='|| :APP_ID ……. ) || '"> .... more </a></span>'
else NOTES end NOTES_SHORT,
Preferred Solution (Optional)
An option "Shorten text" with the specification of the character length would be simpler.
