<?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: Not display spool with submit program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324935#M1030568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SUBMIT RCJ_SEND_PROJECT_ALE&lt;/P&gt;&lt;P&gt;WITH KOKRS = CONTROLLING_AREA&lt;/P&gt;&lt;P&gt;WITH PSPID = PROJECT_ID&lt;/P&gt;&lt;P&gt;WITH RECSYST = COUNTRY_TARGET&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above statement just schedules the job and comes back, so the spool is been generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try.....&lt;/P&gt;&lt;P&gt;SUBMIT RCJ_SEND_PROJECT_ALE&lt;/P&gt;&lt;P&gt;WITH KOKRS = CONTROLLING_AREA&lt;/P&gt;&lt;P&gt;WITH PSPID = PROJECT_ID&lt;/P&gt;&lt;P&gt;WITH RECSYST = COUNTRY_TARGET.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Aug 2008 10:25:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-19T10:25:33Z</dc:date>
    <item>
      <title>Not display spool with submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324934#M1030567</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;In the function, I need to submit a program simulating the CJAL transaction. My code : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT RCJ_SEND_PROJECT_ALE&lt;/P&gt;&lt;P&gt;          WITH KOKRS = CONTROLLING_AREA&lt;/P&gt;&lt;P&gt;          WITH PSPID = PROJECT_ID&lt;/P&gt;&lt;P&gt;          WITH RECSYST = COUNTRY_TARGET&lt;/P&gt;&lt;P&gt;  AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The pb is this program display a spool for one project but I don't want display spool, this function must be transparent for the user.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 10:22:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324934#M1030567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-19T10:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Not display spool with submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324935#M1030568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SUBMIT RCJ_SEND_PROJECT_ALE&lt;/P&gt;&lt;P&gt;WITH KOKRS = CONTROLLING_AREA&lt;/P&gt;&lt;P&gt;WITH PSPID = PROJECT_ID&lt;/P&gt;&lt;P&gt;WITH RECSYST = COUNTRY_TARGET&lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above statement just schedules the job and comes back, so the spool is been generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try.....&lt;/P&gt;&lt;P&gt;SUBMIT RCJ_SEND_PROJECT_ALE&lt;/P&gt;&lt;P&gt;WITH KOKRS = CONTROLLING_AREA&lt;/P&gt;&lt;P&gt;WITH PSPID = PROJECT_ID&lt;/P&gt;&lt;P&gt;WITH RECSYST = COUNTRY_TARGET.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 10:25:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324935#M1030568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-19T10:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Not display spool with submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324936#M1030569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U CAN WRITE YOUR CODE LIKE THAT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form user_command using p_gt_ucomm    like sy-ucomm&lt;/P&gt;&lt;P&gt;                   p_gt_selfield type slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  data ls_bsid like line of ibsid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  read table ibsid index p_gt_selfield-tabindex into ls_bsid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    submit zficustledg_det via selection-screen&lt;/P&gt;&lt;P&gt;           with s_kunnr = ls_bsid-kunnr&lt;/P&gt;&lt;P&gt;           with s_saknr = ls_bsid-saknr&lt;/P&gt;&lt;P&gt;           with s_vkorg = ls_bsid-vkorg&lt;/P&gt;&lt;P&gt;           with s_sgtxt = ls_bsid-sgtxt&lt;/P&gt;&lt;P&gt;           with s_name  = ls_bsid-name1&lt;/P&gt;&lt;P&gt;           with s_butxt = ls_bsid-butxt&lt;/P&gt;&lt;P&gt;           and return.&lt;/P&gt;&lt;P&gt;endform.                    " user_command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if useful then give point&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 10:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324936#M1030569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-19T10:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: Not display spool with submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324937#M1030570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remove AND RETURN don't change anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want that the spool don't display. In fact, I submit program in a loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_PROJECT.&lt;/P&gt;&lt;P&gt;      SUBMIT RCJ_SEND_PROJECT_ALE&lt;/P&gt;&lt;P&gt;      WITH KOKRS = CONTROLLING_AREA&lt;/P&gt;&lt;P&gt;      WITH PSPID = PROJECT_ID&lt;/P&gt;&lt;P&gt;      WITH RECSYST = COUNTRY_TARGET&lt;/P&gt;&lt;P&gt;      AND RETURN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, the program RCJ_SEND_PROJECT_ALE musn't be interrupted by spool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Xavier Couloumies on Aug 19, 2008 2:36 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Xavier Couloumies on Aug 19, 2008 2:37 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 12:36:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324937#M1030570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-19T12:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Not display spool with submit program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324938#M1030571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I found!&lt;/P&gt;&lt;P&gt;I need to add EXPORTING LIST TO MEMORY after submit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SUBMIT RCJ_SEND_PROJECT_ALE EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;P&gt;          WITH KOKRS = CONTROLLING_AREA&lt;/P&gt;&lt;P&gt;          WITH PSPID = PROJECT_ID&lt;/P&gt;&lt;P&gt;          WITH RECSYST = COUNTRY_TARGET&lt;/P&gt;&lt;P&gt;  AND RETURN.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Aug 2008 13:55:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/not-display-spool-with-submit-program/m-p/4324938#M1030571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-19T13:55:14Z</dc:date>
    </item>
  </channel>
</rss>

