Skip to Content
Author's profile photo Jerry Wang

How to get PDF render trace of ABAP webdynpro interactiveForm control

In ABAP webdynpro you can use InteractiveForm control to achieve PDF render, as long as you specify the dataSource of PDF via context node, and form template uploaded via tcode SFP.

/wp-content/uploads/2014/01/clipboard1_355530.png

In some case you need to know the details about PDF rendering process by ADS, for example the PDF is failed to be rendered, and you want to know the root cause, or you meet with a performance issue of PDF rendering, and you want to find the bottleneck ( is it caused by too many elements in form template, or inefficient script written? ). Then you can follow the steps below to get the detail PDF render trace:

1. set a breakpoint on method CL_FP_PDF_OBJECT~EXECUTE_INTERNAL. Render your PDF as usual. The breakpoint should be triggered.

In the debugger callstack you can also know how the PDF render is triggered from ABAP webdynpro layer.

/wp-content/uploads/2014/01/clipboard2_355531.png

2. Change the variable _adstrace’s content to 4 in debugger. The source code line 125 gives you a hint that you can just set a user parameter to avoid the manual change on _adstrace in debugger each time. 

/wp-content/uploads/2014/01/clipboard3_355550.png

System->Own Data:

/wp-content/uploads/2014/01/clipboard4_355551.png

And maintain the parameter value as 04.

/wp-content/uploads/2014/01/clipboard5_355552.png

3. Debug until you reach line 218. Click F6 to step over it.

/wp-content/uploads/2014/01/clipboard6_355553.png

Download the PDF binary code stored in variable l_soapresponse-rp_streams into your local laptop:

/wp-content/uploads/2014/01/clipboard7_355554.png

Open the local PDF, click the attachment icon as below, then you can find all types of useful information there:

 

1. the original form template

2. the runtime performance trace file (trace.txt)

3. the xml data file for the pdf (xfd.xml)

4. detail information raised by ADS server during PDF render time (error.pdf)

/wp-content/uploads/2014/01/clipboard8_355555.png

The error.pdf contains all kinds of information including warning messages raised by ADS, which could be used to improve your form template design.

/wp-content/uploads/2014/01/clipboard9_355556.png

Assigned Tags

      1 Comment
      You must be Logged on to comment or reply to a post.
      Author's profile photo Former Member
      Former Member

      Hi Jerry,

      How are you ? Thanks for sharing this nice and informative document.

      Regards,

      Saurabh