<?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: Help on SUMBIT statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204926#M131895</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;with import u should not give ITAB_FINAL-BNAME , because, import will be used in called program and in called program there is no need to have the same internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, in the called program , give the variable name, to which u want to import value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Apr 2006 12:41:04 GMT</pubDate>
    <dc:creator>hymavathi_oruganti</dc:creator>
    <dc:date>2006-04-10T12:41:04Z</dc:date>
    <item>
      <title>Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204916#M131885</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 have a customer report say 'ZAA' which needs the output of a standard report say 'SAPABC' .......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement:&lt;/P&gt;&lt;P&gt;I have some records in an internal table....ITAB ( with only one field and 100s of records ) i have to loop at the internal table and for each record of the internal table i have to call the program 'SAPABC' using submit statement .... actually the 'sapabc' program will display a list ... i want that list in my 'zaa' program as a table ( how can i do this ) and then list it with other fields ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my question is :&lt;/P&gt;&lt;P&gt;1. How ill pass the parameters in my internal table one by one to the submit program &lt;/P&gt;&lt;P&gt;2. how will i get the output list of report 'sapabc' into my report 'zaa'&lt;/P&gt;&lt;P&gt;3. how will i display the list from 'sapabc' through 'zaa'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope iam clear with my requirement and doubt &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expecting your answers !!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;R.Kripa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 09:37:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204916#M131885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T09:37:29Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204917#M131886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u need to use export &amp;amp; import parameters and submit statement.&lt;/P&gt;&lt;P&gt;1. copy the standard report to a zreport EX: ZABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.in report 'ZAA'  write&lt;/P&gt;&lt;P&gt;EXPORT &amp;lt;PARAM&amp;gt; TO MEMORY ID &amp;lt;MID&amp;gt;.&lt;/P&gt;&lt;P&gt;SUBMIT ZABC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. IN ZABC WRITE &lt;/P&gt;&lt;P&gt;IMPORT &amp;lt;PARAM&amp;gt; FROM MEMORY ID &amp;lt;MID&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 09:41:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204917#M131886</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-04-10T09:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204918#M131887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kripa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA list_tab TYPE TABLE OF abaplist. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT report EXPORTING LIST TO MEMORY &lt;/P&gt;&lt;P&gt;              AND RETURN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'LIST_FROM_MEMORY' &lt;/P&gt;&lt;P&gt;  TABLES &lt;/P&gt;&lt;P&gt;    listobject = list_tab &lt;/P&gt;&lt;P&gt;  EXCEPTIONS &lt;/P&gt;&lt;P&gt;    not_found  = 1 &lt;/P&gt;&lt;P&gt;    OTHERS     = 2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0. &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'WRITE_LIST' &lt;/P&gt;&lt;P&gt;    TABLES &lt;/P&gt;&lt;P&gt;      listobject = list_tab. &lt;/P&gt;&lt;P&gt;ENDIF. &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;YJR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 09:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204918#M131887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T09:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204919#M131888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hymavathi Oruganti ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I ve written in my ZAA as &lt;/P&gt;&lt;P&gt;EXPORT ITAB_FINAL-BNAME TO MEMORY ID 'KRI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in my 'zsapabc'.&lt;/P&gt;&lt;P&gt;IMPORT ITAB_FINAL-BNAME FROM MEMORY ID 'KRI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the problem is ....&lt;/P&gt;&lt;P&gt;In the 'sapabc' program, the selection screen has this ITAB_FINAL-BNAME as a parameter .... and the program is doing many validations in the 'at-selection-screen' event .....itself ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My doubt..&lt;/P&gt;&lt;P&gt;where should i write the IMPORT .. bla bla.. code in 'ZSAPABC' PROGRAM &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers;-)&lt;/P&gt;&lt;P&gt;R.Kripa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 09:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204919#M131888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T09:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204920#M131889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Kripa&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the syntax is like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT &amp;lt;REPORT&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To Export data in some memory location and getting data from that memary location using the following syntax&lt;/P&gt;&lt;P&gt;EXPORT v_matnr to memoryid 'matnr'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;called program : &lt;/P&gt;&lt;P&gt;Import v_matnr from memoryid 'matnr'. this will return sy-subrc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit &amp;lt;report&amp;gt; with p_matnr = v_matnr.&lt;/P&gt;&lt;P&gt;Here we are passing values directly to the paramerers or select-Options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we can give the ranges for select-options also like this&lt;/P&gt;&lt;P&gt;submit &amp;lt;report&amp;gt; with s_matnr between 'Low' and 'High'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit &amp;lt;report&amp;gt; with s_matnr Not between 'Low' and 'High'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit &amp;lt;report&amp;gt; with s_matnr &amp;lt;Operation&amp;gt; ' ' sign ' ' .&lt;/P&gt;&lt;P&gt;here sign = EQ,NE,GT,LT,GE,LE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you have a varient then pass this varient from transaction code to report.&lt;/P&gt;&lt;P&gt;submit &amp;lt;report&amp;gt; using selection-set &amp;lt;varient&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : v_matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;       v_matnr1 like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ranges : r_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;r_matnr-low = v_matnr.&lt;/P&gt;&lt;P&gt;r_matnr-option = 'BT'.&lt;/P&gt;&lt;P&gt;r_matnr-sign = 'I'.&lt;/P&gt;&lt;P&gt;r_matnr-high = v_matnr1.&lt;/P&gt;&lt;P&gt;append r_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit &amp;lt;report&amp;gt; with s_matnr in r_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &amp;amp; regards&lt;/P&gt;&lt;P&gt;Sreenivas P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 10:00:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204920#M131889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T10:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204921#M131890</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but where should i write the following statements??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To Export data in some memory location and getting data from that memary location using the following syntax&lt;/P&gt;&lt;P&gt;EXPORT v_matnr to memoryid 'matnr'. --&amp;gt; &amp;lt;b&amp;gt;(ZAA)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;called program : &lt;/P&gt;&lt;P&gt;Import v_matnr from memoryid 'matnr'. this will return sy-subrc.  --&amp;gt; &amp;lt;b&amp;gt;(ZSAPABC)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;submit &amp;lt;report&amp;gt; with p_matnr = v_matnr. &amp;lt;b&amp;gt;(ZAA)&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Here we are passing values directly to the paramerers or select-Options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I right ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If yes at what point should i include "IMPORT" statement in the zsapabc report ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks In advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers;-)&lt;/P&gt;&lt;P&gt;R.Kripa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 10:06:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204921#M131890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T10:06:08Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204922#M131891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any Inputs ?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;R.Kripa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 11:27:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204922#M131891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T11:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204923#M131892</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;at what point means what?&lt;/P&gt;&lt;P&gt;u write in start of selection and exactly where u want according to ur logic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 11:30:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204923#M131892</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-04-10T11:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204924#M131893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Hymavathi Oruganti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If iam giving the Import statement(IMPORT ITAB_FINAL-BNAME FROM MEMORY ID 'KRI'.) in my 'zsapabc' after start-of-selection ... it is giving me an error "FIELD ITAB_FINAL-BNAME IS UNKNOWN. IT IS NEITHER IN ONE OF THE SPECIFIED TABLE NOR DEFINED BY 'DATA' STATEMET )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what iam getting ;-(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What should i do now ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expecting your answers &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;R.Kripa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 11:50:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204924#M131893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T11:50:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204925#M131894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Hymavathi Oruganti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If iam giving the Import statement(IMPORT ITAB_FINAL-BNAME FROM MEMORY ID 'KRI'.) in my 'zsapabc' after start-of-selection ... it is giving me an error "FIELD ITAB_FINAL-BNAME IS UNKNOWN. IT IS NEITHER IN ONE OF THE SPECIFIED TABLE NOR DEFINED BY 'DATA' STATEMET )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what iam getting ;-(&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What should i do now ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expecting your answers &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;R.Kripa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 11:53:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204925#M131894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T11:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204926#M131895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;with import u should not give ITAB_FINAL-BNAME , because, import will be used in called program and in called program there is no need to have the same internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, in the called program , give the variable name, to which u want to import value&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 12:41:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204926#M131895</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-04-10T12:41:04Z</dc:date>
    </item>
    <item>
      <title>Re: Help on SUMBIT statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204927#M131896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry to say but it seems that you are on the wrong way.&lt;/P&gt;&lt;P&gt;the second answer of YJR already showed the right way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to submit a program you have to use the following notation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop over your internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT sapabc WITH parameter1 = your_value_from_zaa&lt;/P&gt;&lt;P&gt;              WITH parameter2 = your_value_from_zaa&lt;/P&gt;&lt;P&gt;              WITH parameter3 = your_value_from_zaa&lt;/P&gt;&lt;P&gt;              WITH ....&lt;/P&gt;&lt;P&gt;  EXPORTING LIST TO MEMORY AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use the two function modules as mentioned by YJR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i don't misunderstand you this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;matthias&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Apr 2006 13:24:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-sumbit-statement/m-p/1204927#M131896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-10T13:24:29Z</dc:date>
    </item>
  </channel>
</rss>

