Assigned
Status Update
Comments
jp...@google.com <jp...@google.com> #2
Generated Metadata
- Summary: The Apps Script application is not working as expected. The first page works, but the second page does not. It is difficult to determine the root cause without additional information.
- Tags:
Additional resources:
https://developers.google.com/apps-script/guides/support/troubleshooting https://developers.google.com/apps-script/support https://stackoverflow.com/.../how-to-debug-or-view-logs-in-google-app-scr... https://stackoverflow.com/.../appscript-webapp-hyperlink-not-working-the-... https://stackoverflow.com/.../serve-separate-html-pages-google-apps-script-...
You can
bl...@google.com <bl...@google.com> #3
Automated by Blunderbuss job workspace-devrel-public-issue-tracker-blunderbuss-autoassigner for config assign for component 191640.
jp...@google.com <jp...@google.com> #4
I have reported this to the engineering team and future updates will be shared here. Thank you for your patience.
Description
Description
Service Documents failed while appending/inserting a paragraph containing carriage return character "\r" to the table cell.
Code
body.getTables()[0].getCell(0,0).appendParagraph("line1 \r line2");
//or
body.getTables()[0].getCell(0,0).insertParagraph(1,"line1 \r line2");
Output
9:58:13 PM Error Service Documents failed while accessing document with id [YOUR_DOCUMENT_ID].
Details
This error does not occur when appending/inserting a paragraph without carriage return character "\r":
body.getTables()[0].getCell(0,0).appendParagraph("word1 word2");
//or
body.getTables()[0].getCell(0,0).insertParagraph(1,"line1 \n line2");