<?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: OPEN ADOBE READER from ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-adobe-reader-from-abap/m-p/7360050#M1541804</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Manni,&lt;/P&gt;&lt;P&gt;Follow below steps,&lt;/P&gt;&lt;P&gt;Set output parameters and open the spool job using FM &lt;STRONG&gt;FP_JOB_OPEN&lt;/STRONG&gt; like below,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
      ie_outputparams = fp_outputparams
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Determine the name of the generated function module using below FM,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = p_tnapr_sform
        IMPORTING
          e_funcname = p_func_module_name.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Call the generated functional module like below,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION ls_function
 EXPORTING
          /1bcdwb/docparams    = fp_docparams
          ......
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Close the spool job using FM &lt;STRONG&gt;FP_JOB_CLOSE&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'FP_JOB_CLOSE'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Nov 2010 16:55:24 GMT</pubDate>
    <dc:creator>awin_prabhu</dc:creator>
    <dc:date>2010-11-08T16:55:24Z</dc:date>
    <item>
      <title>OPEN ADOBE READER from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-adobe-reader-from-abap/m-p/7360048#M1541802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with function module convert_otf we create a PDF from sapscript&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with function module gui_download we are able to save this PDF-document on the file system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But we don´t want to save it, we just want to open it directly in ADOBE reader. Is this possible with some ABAP function modules?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes, how?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Manfred&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 16:26:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-adobe-reader-from-abap/m-p/7360048#M1541802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-08T16:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN ADOBE READER from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-adobe-reader-from-abap/m-p/7360049#M1541803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look at FM SSFCOMP_PDF_PREVIEW.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 16:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-adobe-reader-from-abap/m-p/7360049#M1541803</guid>
      <dc:creator>MrWhan</dc:creator>
      <dc:date>2010-11-08T16:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN ADOBE READER from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-adobe-reader-from-abap/m-p/7360050#M1541804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Manni,&lt;/P&gt;&lt;P&gt;Follow below steps,&lt;/P&gt;&lt;P&gt;Set output parameters and open the spool job using FM &lt;STRONG&gt;FP_JOB_OPEN&lt;/STRONG&gt; like below,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'FP_JOB_OPEN'
    CHANGING
      ie_outputparams = fp_outputparams
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Determine the name of the generated function module using below FM,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name     = p_tnapr_sform
        IMPORTING
          e_funcname = p_func_module_name.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Call the generated functional module like below,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION ls_function
 EXPORTING
          /1bcdwb/docparams    = fp_docparams
          ......
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Close the spool job using FM &lt;STRONG&gt;FP_JOB_CLOSE&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'FP_JOB_CLOSE'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Nov 2010 16:55:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-adobe-reader-from-abap/m-p/7360050#M1541804</guid>
      <dc:creator>awin_prabhu</dc:creator>
      <dc:date>2010-11-08T16:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: OPEN ADOBE READER from ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-adobe-reader-from-abap/m-p/7360051#M1541805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;option 1, &lt;/P&gt;&lt;P&gt;save in a temp location like sapworkdir and display it using demo code SAP_PDF_VIEWER_DEMO. then while coming out from the program, delete the temp file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;option 2, store it in app server and display it using webdynpro.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Nov 2010 01:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-adobe-reader-from-abap/m-p/7360051#M1541805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-09T01:51:45Z</dc:date>
    </item>
  </channel>
</rss>

