<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Adobe - inconsistent output on different systems in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adobe-inconsistent-output-on-different-systems/m-p/5834394#M1317025</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any feedback on the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 22 Jul 2009 11:17:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-22T11:17:06Z</dc:date>
    <item>
      <title>Adobe - inconsistent output on different systems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adobe-inconsistent-output-on-different-systems/m-p/5834393#M1317024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;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. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal tables are being properly refreshed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using ECC 6.0, Adobe version 9 and Windows Vista.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abdullah Ismail&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 14:42:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adobe-inconsistent-output-on-different-systems/m-p/5834393#M1317024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-16T14:42:56Z</dc:date>
    </item>
    <item>
      <title>Re: Adobe - inconsistent output on different systems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adobe-inconsistent-output-on-different-systems/m-p/5834394#M1317025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any feedback on the same?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 11:17:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adobe-inconsistent-output-on-different-systems/m-p/5834394#M1317025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T11:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Adobe - inconsistent output on different systems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adobe-inconsistent-output-on-different-systems/m-p/5834395#M1317026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;You check the data processing once again.&lt;/P&gt;&lt;P&gt;Some times working some times failing case may not arise.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 11:29:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adobe-inconsistent-output-on-different-systems/m-p/5834395#M1317026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T11:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Adobe - inconsistent output on different systems</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adobe-inconsistent-output-on-different-systems/m-p/5834396#M1317027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the data processing is correct. I debugged the program on two different systems. The debugging results are always similar. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The pdf is displayed in a custom control container. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following code returns code 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  data: pdf_html_control type ref to cl_gui_html_viewer.

.
.
.

  call method pdf_html_control-&amp;gt;show_data
    exporting
      url = l_url
    exceptions
      others = 1.
  if sy-subrc &amp;lt;&amp;gt; 0.
    raise cntl_error.
  endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Abdullah&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Abdullah Ismail on Jul 22, 2009 5:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 11:41:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adobe-inconsistent-output-on-different-systems/m-p/5834396#M1317027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T11:41:28Z</dc:date>
    </item>
  </channel>
</rss>

