<?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: recipient screen . in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/recipient-screen/m-p/6723308#M1455802</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi, 
&amp;lt;li&amp;gt;Try to combine below two programs .
&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;li&amp;gt;
   &lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;REPORT  zvenkat_download_alvoutput.
   DATA:i_t001 TYPE t001 OCCURS 0,
        pdf    LIKE tline OCCURS 0.
   DATA:g_spool   TYPE tsp01-rqident,
        g_program TYPE sy-repid VALUE sy-repid.
   TYPE-POOLS:slis.
   DATA: w_print TYPE slis_print_alv,
         w_print_ctrl TYPE alv_s_pctl.
   PARAMETERS: p_file TYPE string.

   INITIALIZATION.
     p_file = 'C:\venkat.pdf'.
     "START-OF-SELECTION.

   START-OF-SELECTION.
     SELECT * FROM t001 INTO TABLE i_t001 UP TO 100 ROWS.
     w_print-print = 'X'.

     CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program = g_program
         i_structure_name   = 'T001'
         is_print           = w_print
       TABLES
         t_outtab           = i_t001.
     IF sy-subrc EQ 0.
       g_spool = sy-spono.
       CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
         EXPORTING
           src_spoolid = g_spool
         TABLES
           pdf         = pdf.
       IF sy-subrc &amp;lt;&amp;gt; 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ELSE.
         CALL FUNCTION 'GUI_DOWNLOAD'
           EXPORTING
             filename = p_file
             filetype = 'BIN'
           TABLES
             data_tab = pdf.
         IF sy-subrc &amp;lt;&amp;gt; 0.
           MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
         ELSE.
           CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               i_callback_program = g_program
               i_structure_name   = 'T001'
             TABLES
               t_outtab           = i_t001.    "is_print = w_print
         ENDIF.
       ENDIF.
     ENDIF.&lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&amp;lt;li&amp;gt;&amp;lt;b&amp;gt;[Convert Spool request to PDF and send as e-mail|http://www.sapdev.co.uk/reporting/rep_spooltopdf.htm]&amp;lt;/b&amp;gt;
&lt;/PRE&gt;

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Mar 2010 14:05:37 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2010-03-04T14:05:37Z</dc:date>
    <item>
      <title>recipient screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recipient-screen/m-p/6723307#M1455801</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;&lt;/P&gt;&lt;P&gt;I  need to   enter or delete recipient mail id or distribution list in module pool program. Is there any std Program or FM to enter the mail id .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is like SAP Business work place, if you press new message  it will popup a screen to enter title , note and in the bottom recipient list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is only to get recipient list only .  Is any std FM or program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Balamurugan.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 12:26:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recipient-screen/m-p/6723307#M1455801</guid>
      <dc:creator>balamurugan_ramakrishnan</dc:creator>
      <dc:date>2010-03-04T12:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: recipient screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recipient-screen/m-p/6723308#M1455802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi, 
&amp;lt;li&amp;gt;Try to combine below two programs .
&lt;PRE&gt;&lt;CODE&gt;
&amp;lt;li&amp;gt;
   &lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;REPORT  zvenkat_download_alvoutput.
   DATA:i_t001 TYPE t001 OCCURS 0,
        pdf    LIKE tline OCCURS 0.
   DATA:g_spool   TYPE tsp01-rqident,
        g_program TYPE sy-repid VALUE sy-repid.
   TYPE-POOLS:slis.
   DATA: w_print TYPE slis_print_alv,
         w_print_ctrl TYPE alv_s_pctl.
   PARAMETERS: p_file TYPE string.

   INITIALIZATION.
     p_file = 'C:\venkat.pdf'.
     "START-OF-SELECTION.

   START-OF-SELECTION.
     SELECT * FROM t001 INTO TABLE i_t001 UP TO 100 ROWS.
     w_print-print = 'X'.

     CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
       EXPORTING
         i_callback_program = g_program
         i_structure_name   = 'T001'
         is_print           = w_print
       TABLES
         t_outtab           = i_t001.
     IF sy-subrc EQ 0.
       g_spool = sy-spono.
       CALL FUNCTION 'CONVERT_ABAPSPOOLJOB_2_PDF'
         EXPORTING
           src_spoolid = g_spool
         TABLES
           pdf         = pdf.
       IF sy-subrc &amp;lt;&amp;gt; 0.
         MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                 WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
       ELSE.
         CALL FUNCTION 'GUI_DOWNLOAD'
           EXPORTING
             filename = p_file
             filetype = 'BIN'
           TABLES
             data_tab = pdf.
         IF sy-subrc &amp;lt;&amp;gt; 0.
           MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
         ELSE.
           CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               i_callback_program = g_program
               i_structure_name   = 'T001'
             TABLES
               t_outtab           = i_t001.    "is_print = w_print
         ENDIF.
       ENDIF.
     ENDIF.&lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&amp;lt;li&amp;gt;&amp;lt;b&amp;gt;[Convert Spool request to PDF and send as e-mail|http://www.sapdev.co.uk/reporting/rep_spooltopdf.htm]&amp;lt;/b&amp;gt;
&lt;/PRE&gt;

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 14:05:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recipient-screen/m-p/6723308#M1455802</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-03-04T14:05:37Z</dc:date>
    </item>
    <item>
      <title>Re: recipient screen .</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/recipient-screen/m-p/6723309#M1455803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is to get recipient list and based on the list I have to send it .. At present No module pool screen for this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know any FM or screen to get this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Balamurugan.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Mar 2010 10:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/recipient-screen/m-p/6723309#M1455803</guid>
      <dc:creator>balamurugan_ramakrishnan</dc:creator>
      <dc:date>2010-03-05T10:25:05Z</dc:date>
    </item>
  </channel>
</rss>

