<?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: Spool request name or title in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313486#M1535811</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Function Get_print_parameters is succesful in debug mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And populating the list in this function fills the passed value in PLIST.However earlier it was working with PRTXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code has not been changed and instaed of tile SAP request name is displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Sep 2010 05:02:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-09-24T05:02:09Z</dc:date>
    <item>
      <title>Spool request name or title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313483#M1535808</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;I am using a Z program to fill the spool details and then calling a ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'GET_PRINT_PARAMETERS'
          EXPORTING
            copies                   = '001'
            cover_page               = ''
            department               = sy-prabt
            layout                   = 'X_58_170'
            destination              = l_dest
            no_dialog                = 'X'
            receiver                 = sy-uname
            report                   = sy-repid
            sap_cover_page           = ''
          IMPORTING
            out_parameters           = l_params
            valid                    = l_valid
            valid_for_spool_creation = l_valid_spool
          EXCEPTIONS
            archive_info_not_found   = 1
            invalid_print_params     = 2
            invalid_archive_params   = 3
            OTHERS                   = 4.
        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.
        ENDIF.
       * CONCATENATE s_werks-low text-014 INTO l_params-prtxt SEPARATED BY space..*
        l_params-prbig = ''.
        ls_print-print_ctrl-pri_params = l_params.
        ls_print-print = 'X'.
        ls_print-no_print_selinfos = ''.  " display no selection infos
        ls_print-no_coverpage = con_x.       " no_new_page(1) type c,                             "
        ls_print-no_print_listinfos = con_x. " display no listinfos
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program     = sy-repid
            i_callback_top_of_page = 'TOP_OF_PAGE_ALLO'
            is_layout              = st_layout
            it_fieldcat            = i_fcat
            is_print               = ls_print
          TABLES
            t_outtab               = it_details.
      ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;However the Spool title is not getting filled as populated from the above code .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This was working until last saturday and have stopped since then.What could be the reason for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use code tags.&lt;/P&gt;&lt;P&gt;Edited by: Rob Burbank on Sep 23, 2010 11:06 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 15:02:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313483#M1535808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-23T15:02:19Z</dc:date>
    </item>
    <item>
      <title>Re: Spool request name or title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313484#M1535809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In debug mode is ths fm GET_PRINT_PARAMETERS successfull ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 16:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313484#M1535809</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-09-23T16:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Spool request name or title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313485#M1535810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt; CALL FUNCTION 'GET_PRINT_PARAMETERS'
         EXPORTING
              list_name      = &amp;lt;&amp;gt; " Pass List Name   &lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 22:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313485#M1535810</guid>
      <dc:creator>Kanagaraja_L</dc:creator>
      <dc:date>2010-09-23T22:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Spool request name or title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313486#M1535811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Function Get_print_parameters is succesful in debug mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And populating the list in this function fills the passed value in PLIST.However earlier it was working with PRTXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code has not been changed and instaed of tile SAP request name is displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Sep 2010 05:02:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313486#M1535811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-24T05:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Spool request name or title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313487#M1535812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Oct 2010 07:27:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spool-request-name-or-title/m-p/7313487#M1535812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-27T07:27:21Z</dc:date>
    </item>
  </channel>
</rss>

