<?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: .PRN File format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923862#M1331986</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your inputs.&lt;/P&gt;&lt;P&gt;I tried the above solution but its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jul 2009 10:28:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-21T10:28:06Z</dc:date>
    <item>
      <title>.PRN File format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923858#M1331982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;  I would like to know whether its possible to provide data in .PRN format from SAP. If the answer is yes, then kindly provide the related function modules / demo programs which will be of great help to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kiran NN on Jul 21, 2009 10:36 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 08:34:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923858#M1331982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T08:34:12Z</dc:date>
    </item>
    <item>
      <title>Re: .PRN File format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923859#M1331983</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; Have you checked this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;SPAN __jive_macro_name="message" id="7807311"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 08:46:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923859#M1331983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T08:46:12Z</dc:date>
    </item>
    <item>
      <title>Re: .PRN File format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923860#M1331984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your response.&lt;/P&gt;&lt;P&gt;Yes i have checked that.But there is no solution provided. &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 08:48:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923860#M1331984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T08:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: .PRN File format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923861#M1331985</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;Try as shown below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'WS_DOWNLOAD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;         FILENAME                = 'c:\XYZ.prn'&lt;/P&gt;&lt;P&gt;         FILETYPE                = 'ASC'&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;          DATA_TAB                = DISP_TAB3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after executing your program you can check your file in DOS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GOTO START--&amp;gt; RUN --&amp;gt; Type CMD&lt;/P&gt;&lt;P&gt;cd\&lt;/P&gt;&lt;P&gt;type XYZ.PRN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 09:04:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923861#M1331985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T09:04:46Z</dc:date>
    </item>
    <item>
      <title>Re: .PRN File format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923862#M1331986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your inputs.&lt;/P&gt;&lt;P&gt;I tried the above solution but its not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 10:28:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923862#M1331986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T10:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: .PRN File format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923863#M1331987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any other inputs please.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 09:35:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923863#M1331987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T09:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: .PRN File format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923864#M1331988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So far i am not able to find any solution for directly downloading internal table contents to .PRN file. I think this can be done using 'OLE', reason being in excel application, we can print the worksheet to file, which results in creation of .PRN file. Can some one please provide me the relevant OLE code for printing an excel file. The only code which i can think as of now is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD OF e_activesheet 'PrintOut'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;#1 = 1&lt;/P&gt;&lt;P&gt;#2 = 'True'&lt;/P&gt;&lt;P&gt;#3 = 'True'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;which i tried applying from the following Macro recording (created while issuing a 'Print to file' operation)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveWindow.SelectedSheets.PrintOut Copies:=1, PrintToFile:=True, Collate _&lt;/P&gt;&lt;P&gt;        :=True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this doesn't seem to be working eventhough the sy-subrc value is 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jul 2009 12:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prn-file-format/m-p/5923864#M1331988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-22T12:38:32Z</dc:date>
    </item>
  </channel>
</rss>

