<?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 Interface in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface/m-p/1477580#M223802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;I am creating one text file and i need to print  contents of that file directly to printer .For that i am using functional module GET_PRINT_PARAMETERS.&lt;/P&gt;&lt;P&gt;In the FM i am passing DATA_SET = p_path as exporting parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for printing of that file contents do i need to write any WRITE statement or is not needed.&lt;/P&gt;&lt;P&gt;plz guide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Siri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Aug 2006 07:32:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-03T07:32:55Z</dc:date>
    <item>
      <title>Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface/m-p/1477580#M223802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;I am creating one text file and i need to print  contents of that file directly to printer .For that i am using functional module GET_PRINT_PARAMETERS.&lt;/P&gt;&lt;P&gt;In the FM i am passing DATA_SET = p_path as exporting parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for printing of that file contents do i need to write any WRITE statement or is not needed.&lt;/P&gt;&lt;P&gt;plz guide me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Siri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 07:32:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface/m-p/1477580#M223802</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T07:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface/m-p/1477581#M223803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;form download_and_display_report.&lt;/P&gt;&lt;P&gt;  data: x_params type pri_params,&lt;/P&gt;&lt;P&gt;        v_valid.&lt;/P&gt;&lt;P&gt;  call function 'GET_PRINT_PARAMETERS'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      immediately               = ' '&lt;/P&gt;&lt;P&gt;      layout                    = 'X_65_132'&lt;/P&gt;&lt;P&gt;      no_dialog                 = 'X'&lt;/P&gt;&lt;P&gt;    importing&lt;/P&gt;&lt;P&gt;      out_parameters            = x_params&lt;/P&gt;&lt;P&gt;      valid                     = v_valid.&lt;/P&gt;&lt;P&gt; if v_valid &amp;lt;&amp;gt; space.&lt;/P&gt;&lt;P&gt;   new-page print on parameters x_params no dialog.&lt;/P&gt;&lt;P&gt;*--what ever you write using WRITE statement will be sent to the printer but not to the console.&lt;/P&gt;&lt;P&gt;   &amp;lt;b&amp;gt;perform display_report&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;   new-page print off.&lt;/P&gt;&lt;P&gt;*--when ever you write the PRINT OFF in new-page, sending data to printer will be stopped.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                " download_and_display_report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;form display_report.&lt;/P&gt;&lt;P&gt; write all the data what you want to send it to the printer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;revert, if you need any further help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Srikanth Kidambi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 07:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface/m-p/1477581#M223803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T07:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface/m-p/1477582#M223804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Srikanth&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what we have to write PERFORM  DISPLAY_REPORT&lt;/P&gt;&lt;P&gt;and where we to write this can u give the concept of this plz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Siri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:00:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface/m-p/1477582#M223804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Interface</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interface/m-p/1477583#M223805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in the &lt;/P&gt;&lt;P&gt;FORM display_report.&lt;/P&gt;&lt;P&gt;  WRITE : 'HEADING OF THE REPORT'.&lt;/P&gt;&lt;P&gt;  WRITE : '----&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;'.  "Underline..&lt;/P&gt;&lt;P&gt;  LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;   WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; ITAB-FIELD1,&lt;/P&gt;&lt;P&gt;            ITAB-FIELD2,&lt;/P&gt;&lt;P&gt;         *--and so onnnn&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;simply, i can say, what ever you want to print, write all of them in this form. this form should be called after that NEW PAGE PRINT ON COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so whatever you write in this form will directly sent to the printer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;srikanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Aug 2006 08:15:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interface/m-p/1477583#M223805</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-03T08:15:55Z</dc:date>
    </item>
  </channel>
</rss>

