<?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: displaying spool requests in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305610#M1636054</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear NARESH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   riyas here.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want the spool number by giving username and date as input. Don't use any function module. Instead just use select query as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT   &amp;lt;fields&amp;gt; FROM TSP01 INTO &amp;lt;ITAB&amp;gt; WHERE &amp;lt;Condition&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TSP01 is the database  table which store the spool numbers and details&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 07 Nov 2011 07:57:52 GMT</pubDate>
    <dc:creator>former_member209696</dc:creator>
    <dc:date>2011-11-07T07:57:52Z</dc:date>
    <item>
      <title>displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305608#M1636052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      My requirement is ,displaying the spool requests according to user name ,date created ,and Title.for that i am using the following two function modules.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RSPO_RINIT_SPOOL_SP01&lt;/P&gt;&lt;P&gt;RSPO_RDISPLAY_SPOOLREQ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i appended the title of spool request to the internal table and passed that interanal table to RSPO_RINIT_SPOOL_SP01 ,up to now its working fine .but what my requirement is ,i should pass the username and date through selection screen.in the same way i have appended data from the selection screen to respective internal tables and passed through the internal table.if i give wrong 'username ' in selection screen it should not display any spool job.even though its showing spool requests based on title.what was wrong?please help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;naresh bammidi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 07:42:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305608#M1636052</guid>
      <dc:creator>naresh_bammidi</dc:creator>
      <dc:date>2011-11-07T07:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305609#M1636053</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;you can use this fm instead of the fm's mentioned by you and from the output returned filter it by date and title.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data:it type table of RSPORQ.

CALL FUNCTION 'RSPO_FIND_SPOOL_REQUESTS'
* EXPORTING
   ALLCLIENTS                = '010' "Leave it blank if required
   AUTHORITY                 = 'RSPO_GET_TEMSEOBJ_OF' "Leave it blank if required
*   DATATYPE                  = '*'
*   HAS_OUTPUT_REQUESTS       = '*'
*   RQ0NAME                   = '*'
*   RQ1NAME                   = '*'
*   RQ2NAME                   = '*'
*   RQDEST                    = '*'
*   RQIDENT                   = 0
   RQOWNER                   = '*' "Pass user name here
  TABLES
    spoolrequests             = it
* EXCEPTIONS
*   NO_PERMISSION             = 1
*   OTHERS                    = 2
          .
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.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 07:49:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305609#M1636053</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-11-07T07:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305610#M1636054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear NARESH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   riyas here.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want the spool number by giving username and date as input. Don't use any function module. Instead just use select query as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT   &amp;lt;fields&amp;gt; FROM TSP01 INTO &amp;lt;ITAB&amp;gt; WHERE &amp;lt;Condition&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TSP01 is the database  table which store the spool numbers and details&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 07:57:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305610#M1636054</guid>
      <dc:creator>former_member209696</dc:creator>
      <dc:date>2011-11-07T07:57:52Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305611#M1636055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi naresh , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use  select querry and   fetch the  spool no. from tsp01 table  just before  the two function module .&lt;/P&gt;&lt;P&gt;then pass that  fetched  spool request into the  function module in the column of spool no .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards &lt;/P&gt;&lt;P&gt;ranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 08:46:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305611#M1636055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-07T08:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305612#M1636056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use below report for your porpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : RQIDEN_T,RQOWNE_T,RQCRED_T,RQTITL_T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_spool for RQIDEN_T.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_owner for RQOWNE_T.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS :s_date  for RQCRED_T.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS  : s_rqtitl  for RQTITL_T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-POOLs : slis.&lt;/P&gt;&lt;P&gt;data : lt_SPORQ   TYPE TABLE OF tsp01sys,&lt;/P&gt;&lt;P&gt;       ws_SPORQ   TYPE tsp01sys,&lt;/P&gt;&lt;P&gt;       goto_sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : lw_sel TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;data: lt_sysid type TABLE OF ALSYSID,&lt;/P&gt;&lt;P&gt;      ws_sysid type ALSYSID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ws_sysid-SYSID = SY-SYSID.&lt;/P&gt;&lt;P&gt;    append ws_sysid to lt_sysid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RSPO_RINIT_SPOOL_SP01'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      SAVEFLAG = 'A'&lt;/P&gt;&lt;P&gt;      SUMMARY   = 'X'&lt;/P&gt;&lt;P&gt;      LOCAL     = 'X'&lt;/P&gt;&lt;P&gt;      OWNER     = ' '&lt;/P&gt;&lt;P&gt;      CLIENT    = ' '&lt;/P&gt;&lt;P&gt;      RQNONE    = 'X'&lt;/P&gt;&lt;P&gt;      RQPROC    = 'X'&lt;/P&gt;&lt;P&gt;      RQSUCC    = 'X'&lt;/P&gt;&lt;P&gt;      RQERR     = 'X'&lt;/P&gt;&lt;P&gt;      PJPROC    = 'X'&lt;/P&gt;&lt;P&gt;      PJSUCC    = 'X'&lt;/P&gt;&lt;P&gt;      PJPROB    = 'X'&lt;/P&gt;&lt;P&gt;      PJERR     = 'X'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      SYSLIST   = lt_sysid&lt;/P&gt;&lt;P&gt;      S_RQIDEN  = s_spool&lt;/P&gt;&lt;P&gt;      S_RQOWNE = s_owner&lt;/P&gt;&lt;P&gt;      s_rqcred = s_date&lt;/P&gt;&lt;P&gt;       s_rqtitl    = s_rqtitl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'RSPO_RDISPLAY_SPOOLREQ'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            use           = ' '&lt;/P&gt;&lt;P&gt;       importing&lt;/P&gt;&lt;P&gt;            goto_sel      = goto_sel&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          SPORQ         = lt_SPORQ&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          OUTRQ         =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       changing&lt;/P&gt;&lt;P&gt;            rs_selfield   = lw_sel&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            others        = 1.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  endif.&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;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 09:07:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305612#M1636056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-07T09:07:51Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305613#M1636057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vijay ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code is working for only 'user name'(owner ).if i enter user name and Title in selection screen ,its showing nothing .what would be the problem.did you try this code with your test data ?  Is this working  for you  ?&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 and regards&lt;/P&gt;&lt;P&gt;Naresh Bammidi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 11:16:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305613#M1636057</guid>
      <dc:creator>naresh_bammidi</dc:creator>
      <dc:date>2011-11-07T11:16:19Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305614#M1636058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code is working for only 'user name'(owner ).if i enter user name and Title in selection screen ,its showing nothing .what would be the problem.did you try this code with your test data ? Is this working for you ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please note that field TSP01-RQTITLE is case sensitive. It must be given as its stored in Db table.&lt;/P&gt;&lt;P&gt;Provide the same input in the transaction SP01 and check if gives any output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kesav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 11:29:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305614#M1636058</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-11-07T11:29:31Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305615#M1636059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Keshav ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am giving as it is in DB table ,but no use.even for spool request number also not working .any idea ?i tried your code also.but i couldn't find any date field to export in that FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards&lt;/P&gt;&lt;P&gt;Naresh Bammidi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 11:35:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305615#M1636059</guid>
      <dc:creator>naresh_bammidi</dc:creator>
      <dc:date>2011-11-07T11:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305616#M1636060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried your code also.but i couldn't find any date field to export in that FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Loop at the fm output and filter based on the selection screen values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kesav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 11:54:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305616#M1636060</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-11-07T11:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305617#M1636061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Loop at the fm output and filter based on the selection screen values.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; Kesav&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are saying  'Loop at the fm '.but which function module?you mean to say  'RSPO_RDISPLAY_SPOOLREQ'.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 12:11:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305617#M1636061</guid>
      <dc:creator>naresh_bammidi</dc:creator>
      <dc:date>2011-11-07T12:11:07Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305618#M1636062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naresh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code this is workinh as expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : RQIDEN_T,RQOWNE_T,RQCRED_T,RQTITL_T,TSP01SYS,RSPOTYPE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : rqident like tsp01_sp0r-rqid_char.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_rqiden for rqident no intervals."s_spool for RQIDEN_T.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_rqowne for tsp01sys-rqowner default sy-uname&lt;/P&gt;&lt;P&gt;                        no intervals."s_rqowne for tsp01sys-rqowner."s_owner for RQOWNE_T.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS :s_rqcred for rspotype-credate default sy-datlo to&lt;/P&gt;&lt;P&gt;                                     sy-datlo."s_date for RQCRED_T.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_rqtitl for tsp01sys-rqtitle no intervals."s_rqtitl for RQTITL_T.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-POOLs : slis.&lt;/P&gt;&lt;P&gt;data : lt_SPORQ TYPE TABLE OF tsp01sys,&lt;/P&gt;&lt;P&gt;ws_SPORQ TYPE tsp01sys,&lt;/P&gt;&lt;P&gt;goto_sel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : lw_sel TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;data: lt_sysid type TABLE OF ALSYSID,&lt;/P&gt;&lt;P&gt;ws_sysid type ALSYSID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ws_sysid-SYSID = SY-SYSID.&lt;/P&gt;&lt;P&gt;append ws_sysid to lt_sysid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RSPO_RINIT_SPOOL_SP01'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;SAVEFLAG = 'A'&lt;/P&gt;&lt;P&gt;SUMMARY = 'X'&lt;/P&gt;&lt;P&gt;LOCAL = 'X'&lt;/P&gt;&lt;P&gt;OWNER = ' '&lt;/P&gt;&lt;P&gt;CLIENT = ' '&lt;/P&gt;&lt;P&gt;RQNONE = 'X'&lt;/P&gt;&lt;P&gt;RQPROC = 'X'&lt;/P&gt;&lt;P&gt;RQSUCC = 'X'&lt;/P&gt;&lt;P&gt;RQERR = 'X'&lt;/P&gt;&lt;P&gt;PJPROC = 'X'&lt;/P&gt;&lt;P&gt;PJSUCC = 'X'&lt;/P&gt;&lt;P&gt;PJPROB = 'X'&lt;/P&gt;&lt;P&gt;PJERR = 'X'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;SYSLIST = lt_sysid&lt;/P&gt;&lt;P&gt;S_RQIDEN = s_rqiden&lt;/P&gt;&lt;P&gt;S_RQOWNE = s_rqowne&lt;/P&gt;&lt;P&gt;s_rqcred = s_rqcred&lt;/P&gt;&lt;P&gt;s_rqtitl = s_rqtitl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'RSPO_RDISPLAY_SPOOLREQ'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;use = ' '&lt;/P&gt;&lt;P&gt;importing&lt;/P&gt;&lt;P&gt;goto_sel = goto_sel&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SPORQ = lt_SPORQ&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OUTRQ =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;changing&lt;/P&gt;&lt;P&gt;rs_selfield = lw_sel&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;others = 1.&lt;/P&gt;&lt;P&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;endif.&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;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2011 12:12:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305618#M1636062</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-07T12:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: displaying spool requests</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305619#M1636063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks alot.its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with best regards&lt;/P&gt;&lt;P&gt;Naresh Bammidi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Nov 2011 04:05:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/displaying-spool-requests/m-p/8305619#M1636063</guid>
      <dc:creator>naresh_bammidi</dc:creator>
      <dc:date>2011-11-08T04:05:55Z</dc:date>
    </item>
  </channel>
</rss>

