<?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: Background execution in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538409#M851322</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add this code also...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data wa_print type slis_print_alv.
wa_print-NO_CHANGE_PRINT_PARAMS = 'X'.

call function 'reuse_alv..........
Exporting
............
...........
IS_PRINT = wa_print
...............
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;jose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Mar 2008 10:39:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-03T10:39:31Z</dc:date>
    <item>
      <title>Background execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538405#M851318</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 execute my report both  in foreground and background, it is an ALV REPORT.&lt;/P&gt;&lt;P&gt;While executing in bakground some of the output fileds are missed. the length has been exceed more than 255. i have a lot of fileds i cant remove the fields to reduce the length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help to how to increase the length, to get the all output fields while executing in background.&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 in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:11:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538405#M851318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T09:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: Background execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538406#M851319</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;Add this piece of code in ur program...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'SET_PRINT_PARAMETERS'
  EXPORTING
    LAYOUT                      = 'X_65_1024/4'
    LINE_SIZE                   = 1024.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now goto SPAD&lt;DEL&gt;&amp;gt;settings&lt;/DEL&gt;&amp;gt;spool system&lt;DEL&gt;&amp;gt;other tab&lt;/DEL&gt;&amp;gt;check both the check boxes.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now schedule ur program and check......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;jose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:18:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538406#M851319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T09:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Background execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538407#M851320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;those 2 check boxes already checked,&lt;/P&gt;&lt;P&gt;i have added the code but i am not able to get the output.&lt;/P&gt;&lt;P&gt;ihave the code before the grid display, is the correct place to add or anywhere else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SET_PRINT_PARAMETERS'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   LAYOUT                      = 'X_65_1024/4'&lt;/P&gt;&lt;P&gt;   LINE_SIZE                   =  1024.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   I_CALLBACK_PROGRAM                = sy-repid&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I_CALLBACK_TOP_OF_PAGE            = 'TOP '&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:37:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538407#M851320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T09:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Background execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538408#M851321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kiran, &lt;/P&gt;&lt;P&gt;I not am sure whether you can increase the output length, when you execute the program in back ground. &lt;/P&gt;&lt;P&gt;I have an another alternative to avoid such situation, i.e. to download the output to a file. &lt;/P&gt;&lt;P&gt;Downlaod using a delimiter, so that the file can be viewed in an excel sheet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other question please shoot. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR &lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 09:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538408#M851321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T09:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Background execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538409#M851322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kiran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add this code also...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data wa_print type slis_print_alv.
wa_print-NO_CHANGE_PRINT_PARAMS = 'X'.

call function 'reuse_alv..........
Exporting
............
...........
IS_PRINT = wa_print
...............
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;jose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2008 10:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-execution/m-p/3538409#M851322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-03T10:39:31Z</dc:date>
    </item>
  </channel>
</rss>

