Skip to Content
Author's profile photo Sailaja Rangam

System Error(sy-subrc =2) with InvalidDataException in SAP Adobe forms

I am ABAP developer and working extensively on Adobe Form, would like to share challenging or time consuming scenario.

We have received several issues where users are not unable to preview Adobe Form. System doesn’t show any error message. When we start debugging we came to know the below error and its an system error due to invalid characters in XML Data.

ADS: com.adobe.ProcessingException: com.adobe.ProcessingException: 0 : InvalidDataException: Xml parsing error: reference to invalid character number (error code 14), line 3, column 177698 of file (200.101)”

We were facing issue with the quotation with around 260 items, it is quite challenging for us to check invalid characters manually.

To find Invalid Characters, or data in which field causing the issue, we need to analyze the runtime in XML format. Documented the blow sequence of steps t read the XML data runtime.

Put Breakpoints at lines with PDFDOC.XML & XFD.XML in below method in class          CL_FP_PDF_OBJECT and reproduce the case.

In debugging mode, open l_bindata & Formdata by double click. Change view to XML Browser and save the file in XML format.

 

In XML File I searched for Invalid Character formats and able the find the invalid entry.

It’s a random check for invalid characters. we were able to track the invalid data causing the exception.

Please refer to the below link, which will help you in identifying the Exception in detailed

https://blogs.sap.com/2017/11/29/usage-and-system-error-in-sap-adobe-forms/

Assigned Tags

      2 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Sri Seshukumar Basava
      Sri Seshukumar Basava

      Hi Sailaja,

      Thank you for the blog. It helped me in resolving similar issue .

       

      Regards,

      Seshukumar

      Author's profile photo pradeep pasupureddi
      pradeep pasupureddi

      Thanks for the blog, it helped me fix the issue.

      Just wanted to add some info.

      1. _Formdata is the one that has pdf form data.
      2. download the data in the variable and save it as .txt file and put the .txt file in some XML validation tool available online. You will get to know the exact error.
      3. Easier way to identify the issue causing data is , save above .txt file as .xml file and open it with notepad++ tool and indent it with XML plugin.