By using this website, you agree to our Terms of Use (click here)
In order to allow me to focus on Consulting (click here) and Courses (click here), I continue to review all posts here in the Forums, but, in general, I'm only personally responding to posts that I mark as #AcumaticaTnT (click here). For Questions (click here), others may respond, or you can post over at Community.Acumatica.com (click here).
Sincerely,
Tim Rodman
Hi Team,
We have customised a invoice form to add the note section into the body of the report as per screenshots below
It works well but when you export it to a pdf it cuts off the content in the note section?
The code is:
=IIf( InStr( [PMProject.NoteText], '<<')>=0 and InStrRev( [PMProject.NoteText], '>>')>0,
Substring( [PMProject.NoteText],
InStr( [PMProject.NoteText], '<<') + 2,
InStr( [PMProject.NoteText], '>>') - InStr( [PMProject.NoteText], '<<') - 2
), '')
PDF looks like this:
Normal invoice screen works fine:
I have tried the can shrink and can split and it doesn't seem to work?
Problem is the size of the group is fixed - so it's clipping the field. Unfortunately you need to pre-allocate space for the note in the group. I've never found a clean solution for dynamically sizing groups. Shame there's no Can Grow Group property.