<?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 Emailing output using type M printer in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/emailing-output-using-type-m-printer/m-p/3974889#M949378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i just recently set up a new printer of type M. When i use it with a spool dialog, all is well. i put in the printer id, and it pops up and asks for the email address. the system converts the spool to PDF and emails it, no problem. The problem is when i dont want a spool dialog, such as when i use a submit statement to run the report. i have looked through the forums, and everyone suggests converting the spool list to PDF, then sending the PDF. i dont want to do this, since i already have a printer that does it for me!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i looked for someplace in the PRI_PARAMS for a email address, but the only field is PRREC, which requires an SAP user ID. I am trying to send to external, non-sap email addresses which again, works fine if i use the print dialog. is there NO WAY to specify an external email address for the submit statement???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jun 2008 19:03:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-12T19:03:07Z</dc:date>
    <item>
      <title>Emailing output using type M printer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/emailing-output-using-type-m-printer/m-p/3974889#M949378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i just recently set up a new printer of type M. When i use it with a spool dialog, all is well. i put in the printer id, and it pops up and asks for the email address. the system converts the spool to PDF and emails it, no problem. The problem is when i dont want a spool dialog, such as when i use a submit statement to run the report. i have looked through the forums, and everyone suggests converting the spool list to PDF, then sending the PDF. i dont want to do this, since i already have a printer that does it for me!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i looked for someplace in the PRI_PARAMS for a email address, but the only field is PRREC, which requires an SAP user ID. I am trying to send to external, non-sap email addresses which again, works fine if i use the print dialog. is there NO WAY to specify an external email address for the submit statement???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 19:03:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/emailing-output-using-type-m-printer/m-p/3974889#M949378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T19:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Emailing output using type M printer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/emailing-output-using-type-m-printer/m-p/3974890#M949379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*write a list into spool&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'GET_PRINT_PARAMETERS'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      out_parameters         = print_parameters&lt;/P&gt;&lt;P&gt;      valid                  = valid&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      archive_info_not_found = 1&lt;/P&gt;&lt;P&gt;      invalid_print_params   = 2&lt;/P&gt;&lt;P&gt;      invalid_archive_params = 3&lt;/P&gt;&lt;P&gt;      others                 = 4.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message e105 with 'GET_PRINT_PARAMETERS'.&lt;/P&gt;&lt;P&gt;  elseif valid is initial.&lt;/P&gt;&lt;P&gt;    return.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;  new-page print on parameters print_parameters no dialog.&lt;/P&gt;&lt;P&gt;*now begin to write:&lt;/P&gt;&lt;P&gt;  write: / sy-vline,&lt;/P&gt;&lt;P&gt;         'CARRID',   10 sy-vline,&lt;/P&gt;&lt;P&gt;         'CARRNAME', 35 sy-vline,&lt;/P&gt;&lt;P&gt;         'CURRCODE', 46 sy-vline.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jun 2008 20:45:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/emailing-output-using-type-m-printer/m-p/3974890#M949379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-12T20:45:47Z</dc:date>
    </item>
    <item>
      <title>Re: Emailing output using type M printer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/emailing-output-using-type-m-printer/m-p/3974891#M949380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for the answer, but it does not address the problem. the problem is specifying an email address for an external internet email address in the print parameters. i KNOW how to get the parameters, i just cannot find a method to send the report via email, using printer type M, except to a SAP user ID.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 13:25:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/emailing-output-using-type-m-printer/m-p/3974891#M949380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T13:25:10Z</dc:date>
    </item>
    <item>
      <title>Re: Emailing output using type M printer</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/emailing-output-using-type-m-printer/m-p/3974892#M949381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;took care of it myself&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Dec 2008 12:10:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/emailing-output-using-type-m-printer/m-p/3974892#M949381</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-16T12:10:43Z</dc:date>
    </item>
  </channel>
</rss>

