<?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 Submit report with internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698485#M1577782</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement where report is showing output in ALV1. Based user action I need to process further in background mode.&lt;/P&gt;&lt;P&gt;I have developed a report which I am submitting for this background mode. &lt;/P&gt;&lt;P&gt;I am opening a Job sumbitting created report with return. Job close.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This created report is in scheduled status in SM37. I have to go there and release it.&lt;/P&gt;&lt;P&gt;To pass parameters to newly created report I have used WITH field names with developed report name. But I am not getting parameters at new report. Similarly used import/export --- set/get but still not getting parameters at submitted report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it because it is in background mode? If so how can I achieve this functionality. Can anybody suggest me something ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Feb 2011 05:45:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-08T05:45:57Z</dc:date>
    <item>
      <title>Submit report with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698485#M1577782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement where report is showing output in ALV1. Based user action I need to process further in background mode.&lt;/P&gt;&lt;P&gt;I have developed a report which I am submitting for this background mode. &lt;/P&gt;&lt;P&gt;I am opening a Job sumbitting created report with return. Job close.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This created report is in scheduled status in SM37. I have to go there and release it.&lt;/P&gt;&lt;P&gt;To pass parameters to newly created report I have used WITH field names with developed report name. But I am not getting parameters at new report. Similarly used import/export --- set/get but still not getting parameters at submitted report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it because it is in background mode? If so how can I achieve this functionality. Can anybody suggest me something ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 05:45:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698485#M1577782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-08T05:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698486#M1577783</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;IMPORT and EXPORT from memory doesn't work here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look into the SAP documentation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;When the program is scheduled in the background task, the selections specified by the user or in the additions for filling the selection screen are stored in an internal variant. When the program is executed in the background request, it is processed fully but the selection screen is processed in the background. The system triggers all events, including that for selection screen processing. The variant stored internally is transferred to the selection screen between the INITIALIZATION and AT SELECTION SCREEN OUTPUT events.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The transfer of the parameters should work, if you don't have any statements that clear those parameters. Maybe parameters with SET/GET parameters also will cause a problem. But it should work with this internal variants. Before you start the jov, please have a look in those generated variants, whether the parameters have the right values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Klaus&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Klaus Babl on Feb 8, 2011 6:58 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 05:58:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698486#M1577783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-08T05:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698487#M1577784</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;put an endless loop like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while 1 = 1.&lt;/P&gt;&lt;P&gt;endwhile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and go to debug mode for the background job using tcode sm50. may be this will help you understand exactly what the problem is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sid&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 06:08:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698487#M1577784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-08T06:08:01Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698488#M1577785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assuming &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT Report VIA SELECTION-SCREEN
     EXPORTING LIST TO MEMORY
        WITH Field1 = '123'
        WITH Field2 = 'ABC'
        WITH SELECTION-TABLE itaab
      AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for the issue of not being able to the values to the report using the with addition maybe due the reson that your report doesnt use selection screens.It may use screens made using screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that the case?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 06:17:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698488#M1577785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-08T06:17:46Z</dc:date>
    </item>
    <item>
      <title>Re: Submit report with internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698489#M1577786</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;Try using statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT f itab FROM DATABASE dbtab(ar) ID key.&lt;/P&gt;&lt;P&gt;EXPORT obj1 ... objn TO DATABASE dbtab(ar) ID key&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Feb 2011 07:21:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-with-internal-table/m-p/7698489#M1577786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-08T07:21:28Z</dc:date>
    </item>
  </channel>
</rss>

