<?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: Submit Report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report/m-p/3717514#M894920</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nikhil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer Below Code:&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT called_prog_name
    WITH s_carrid IN s_carrid
    WITH s_connid IN s_connid
     VIA SELECTION-SCREEN
     AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Where s_carrid is also an Internal table,&lt;/P&gt;&lt;P&gt;take care that the Internal Table in Called Program is also of same type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or Simply you can Use Export to Memory Id and Import from Memory Id.&lt;/P&gt;&lt;P&gt;write the below code in calling program.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXPORT itab TO MEMORY ID 'FLD'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and write the below code in called program.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IMPORT itab FROM MEMORY ID 'FLD'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 May 2008 07:38:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-01T07:38:09Z</dc:date>
    <item>
      <title>Submit Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report/m-p/3717512#M894918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am submitting an report with the code as below...here I am passing selection screen variant. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     SUBMIT zrkpep003 USING SELECTION-SET 'ZTEST'&lt;/P&gt;&lt;P&gt;                 AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is working fine and getting the desired report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;however I need to pass the Selection screen values through Table. L_S_select which is of type rsprams.&lt;/P&gt;&lt;P&gt;coded as below...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT zrkpep003 WITH SELECTION-TABLE l_s_select&lt;/P&gt;&lt;P&gt;                             AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This does not give any output....!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest....!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nikhil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 07:34:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report/m-p/3717512#M894918</guid>
      <dc:creator>nikhil_chitre</dc:creator>
      <dc:date>2008-05-01T07:34:55Z</dc:date>
    </item>
    <item>
      <title>Re: Submit Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report/m-p/3717513#M894919</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;The table l_s_select need to be populated with all the values that the selection screen of the called program should be executed with..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So that table needs to be populated like follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELNAME : Parameter/Select-Option name&lt;/P&gt;&lt;P&gt;KIND : P for Paramater and S for select-option&lt;/P&gt;&lt;P&gt;SIGN, OPTION, LOW and HIGH just like we fill in case of Select-options and Parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 07:38:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report/m-p/3717513#M894919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T07:38:07Z</dc:date>
    </item>
    <item>
      <title>Re: Submit Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report/m-p/3717514#M894920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nikhil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer Below Code:&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT called_prog_name
    WITH s_carrid IN s_carrid
    WITH s_connid IN s_connid
     VIA SELECTION-SCREEN
     AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Where s_carrid is also an Internal table,&lt;/P&gt;&lt;P&gt;take care that the Internal Table in Called Program is also of same type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or Simply you can Use Export to Memory Id and Import from Memory Id.&lt;/P&gt;&lt;P&gt;write the below code in calling program.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXPORT itab TO MEMORY ID 'FLD'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and write the below code in called program.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IMPORT itab FROM MEMORY ID 'FLD'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sunil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 07:38:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report/m-p/3717514#M894920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T07:38:09Z</dc:date>
    </item>
    <item>
      <title>Re: Submit Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report/m-p/3717515#M894921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes himanshu the table is populated with data...!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 07:42:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report/m-p/3717515#M894921</guid>
      <dc:creator>nikhil_chitre</dc:creator>
      <dc:date>2008-05-01T07:42:49Z</dc:date>
    </item>
  </channel>
</rss>

