<?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 Opening PDF File. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/opening-pdf-file/m-p/938253#M62586</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 using function module CONVERT_ABAPSPOOLJOB_2_PDF. I have successfully created a PDF file . Now i want automatically this PDF file to be open. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is On the click of push button, &lt;/P&gt;&lt;P&gt;1. system generates some spool. - I have done this.&lt;/P&gt;&lt;P&gt;2. Convert this to PDF.         - Done this too.&lt;/P&gt;&lt;P&gt;3. Launch a acrobat to open this PDF. ??? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me to acheive the point 3. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Ankush&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Sep 2005 13:40:20 GMT</pubDate>
    <dc:creator>former_member508634</dc:creator>
    <dc:date>2005-09-12T13:40:20Z</dc:date>
    <item>
      <title>Opening PDF File.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/opening-pdf-file/m-p/938253#M62586</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 using function module CONVERT_ABAPSPOOLJOB_2_PDF. I have successfully created a PDF file . Now i want automatically this PDF file to be open. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is On the click of push button, &lt;/P&gt;&lt;P&gt;1. system generates some spool. - I have done this.&lt;/P&gt;&lt;P&gt;2. Convert this to PDF.         - Done this too.&lt;/P&gt;&lt;P&gt;3. Launch a acrobat to open this PDF. ??? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me to acheive the point 3. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;Ankush&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2005 13:40:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/opening-pdf-file/m-p/938253#M62586</guid>
      <dc:creator>former_member508634</dc:creator>
      <dc:date>2005-09-12T13:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Opening PDF File.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/opening-pdf-file/m-p/938254#M62587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your file has been saved to the frontend, use the following code.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  CALL METHOD CL_GUI_FRONTEND_SERVICES-&amp;gt;EXECUTE
    EXPORTING
      DOCUMENT               = &amp;lt;the_file_path_HERE&amp;gt;
      MAXIMIZED              = 'X'
      SYNCHRONOUS            = 'X'
    EXCEPTIONS
      CNTL_ERROR             = 1
      ERROR_NO_GUI           = 2
      BAD_PARAMETER          = 3
      FILE_NOT_FOUND         = 4
      PATH_NOT_FOUND         = 5
      FILE_EXTENSION_UNKNOWN = 6
      ERROR_EXECUTE_FAILED   = 7
      OTHERS                 = 8.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Rich Heilman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2005 13:45:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/opening-pdf-file/m-p/938254#M62587</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-09-12T13:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: Opening PDF File.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/opening-pdf-file/m-p/938255#M62588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;or use: interface I_OI_DOCUMENT_VIEWER&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(sample:  SAPRDEMOVIEWING)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2005 13:52:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/opening-pdf-file/m-p/938255#M62588</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2005-09-12T13:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Opening PDF File.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/opening-pdf-file/m-p/938256#M62589</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;Between step 2 &amp;amp; 3 save document to Frontend PC.&lt;/P&gt;&lt;P&gt;Then you can use the method mentioned by Rich.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Sep 2005 14:05:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/opening-pdf-file/m-p/938256#M62589</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-12T14:05:31Z</dc:date>
    </item>
  </channel>
</rss>

