Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Adobe - inconsistent output on different systems

Former Member
0 Likes
598

Hi,

I am converting my smartform output to PDF and this output I am displaying as PDF file in print preview. In some of the PCs, occasionally, the output does not appear in the print preview(Adobe Reader). A pop up box in adobe reader appears that does not have any text. The pdf file also does not have any output in it.

What can be a possible reason? This is inconsistent behaviour. Because the output displays correctly on other PCs or the same PC after a period of time for the same input.

The internal tables are being properly refreshed.

We are using ECC 6.0, Adobe version 9 and Windows Vista.

Regards,

Abdullah Ismail

Hi,

I am converting my smartform output to PDF and this output I am displaying as PDF file in print preview. In some of the PCs, occasionally, the output does not appear in the print preview(Adobe Reader). A pop up box in adobe reader appears that does not have any text. The pdf file also does not have any output in it.

What can be a possible reason? This is inconsistent behaviour. Because the output displays correctly on other PCs or the same PC after a period of time for the same input.

The internal tables are being properly refreshed.

We are using ECC 6.0, Adobe version 9 and Windows Vista.

Regards,

Abdullah Ismail

3 REPLIES 3
Read only

Former Member
0 Likes
548

hi experts,

Any feedback on the same?

Thanks

Read only

Former Member
0 Likes
548

Hi

You check the data processing once again.

Some times working some times failing case may not arise.

Read only

0 Likes
548

the data processing is correct. I debugged the program on two different systems. The debugging results are always similar.

The pdf is displayed in a custom control container.

The following code returns code 0.


  data: pdf_html_control type ref to cl_gui_html_viewer.

.
.
.

  call method pdf_html_control->show_data
    exporting
      url = l_url
    exceptions
      others = 1.
  if sy-subrc <> 0.
    raise cntl_error.
  endif.

Thanks,

Abdullah

Edited by: Abdullah Ismail on Jul 22, 2009 5:12 PM