<?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 statement calling ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084200#M98743</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 to use this function module,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RZL_SUBMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this solves your problem ,please award suitable points and close the thread.&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;&lt;/P&gt;&lt;P&gt;Irfan Hussain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 Dec 2005 07:35:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-26T07:35:28Z</dc:date>
    <item>
      <title>SUBMIT statement calling ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084197#M98740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Friends,&lt;/P&gt;&lt;P&gt;I'm using a SUBMIT statement( using EXPORTING LIST TO MEMORY AND RETURN option) and the called program is an ALV report. &lt;/P&gt;&lt;P&gt;When the calling program is executed, the ALV output of the called program is displayed first and upon clicking "back" button, the output of calling program is displayed.&lt;/P&gt;&lt;P&gt;Is there any way to avoid the ALV output of the called program&lt;/P&gt;&lt;P&gt;Thanx&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2005 06:44:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084197#M98740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-26T06:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT statement calling ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084198#M98741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;The one u r using is correct Just check once again ur coding u will get the one u  required&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;submit ysubmit_export and return exporting list to memory&lt;/P&gt;&lt;P&gt;                         with pa_carr eq sflight-carrid&lt;/P&gt;&lt;P&gt;                         with so_conn eq sflight-connid.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else just see this sample u will get&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;CAlling program&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;REPORT  ZSFLIGHT .&lt;/P&gt;&lt;P&gt;tables : sflight.&lt;/P&gt;&lt;P&gt;data :number_of_flights type i.&lt;/P&gt;&lt;P&gt;data : wa_sflight type sflight.&lt;/P&gt;&lt;P&gt;parameters :pa_carr like sflight-carrid.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           SO_CONN LIKE sflight-cONNid.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set pf-status 'SUBMIT'.&lt;/P&gt;&lt;P&gt;write:/ 'FOR HANDLING SUBMIT TO CALL REP PROGS',sy-lsind.&lt;/P&gt;&lt;P&gt;if sflight-carrid is initial or sflight-connid is initial.&lt;/P&gt;&lt;P&gt;  sflight-carrid = 'AA'.&lt;/P&gt;&lt;P&gt;  sflight-connid = '064'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at user-command.&lt;/P&gt;&lt;P&gt;  case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'SUB3'.&lt;/P&gt;&lt;P&gt;********PASSES PARAMTERS INTERNALLY &amp;amp; DISP LIST AND BACK TO CALLIN *&lt;/P&gt;&lt;P&gt;*PROGRAM  CALLING PROGRAM EPORTS NO OF RECORDS RETRIEVED&lt;/P&gt;&lt;P&gt;***AND THIS PRG IMPORTS THAT&lt;/P&gt;&lt;P&gt;      submit ysubmit_export and return exporting list to memory&lt;/P&gt;&lt;P&gt;                         with pa_carr eq sflight-carrid&lt;/P&gt;&lt;P&gt;                         with so_conn eq sflight-connid.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;  import anyone to number_of_flights from memory id 'MID1'.&lt;/P&gt;&lt;P&gt;*import read_number to WA_SFLIGHT from memory id 'BC415'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    message s001(zerrmesg) with number_of_flights.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    message s002(zerrmesg).&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  write:/ 'THE NO OF RECS COUNT IMPORTED IS ',number_of_flights.&lt;/P&gt;&lt;P&gt;*wa_sflight&lt;/P&gt;&lt;P&gt;  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*get parameter id 'CAR' field sflight-carrid.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get parameter id 'CON' FIELD SFLIGHT-connid.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;if sflight-carrid is initial or sflight-connid is initial.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  sflight-carrid = 'AA'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  sflight-connid = '0400'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***the called program is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  YSUBMIT_EXPORT                          .&lt;/P&gt;&lt;P&gt;data: wa_sflight type sflight,&lt;/P&gt;&lt;P&gt;      counter    type i.&lt;/P&gt;&lt;P&gt;*DATA : ITAB LIKE SFLIGHT OCCURS 25 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;parameters: pa_carr type spfli-carrid.&lt;/P&gt;&lt;P&gt;select-options so_conn for wa_sflight-connid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;  if pa_carr is initial.&lt;/P&gt;&lt;P&gt;    skip 1.&lt;/P&gt;&lt;P&gt;    write: / 'Called' color col_heading.&lt;/P&gt;&lt;P&gt;    write: / text-002 color col_normal.&lt;/P&gt;&lt;P&gt;    skip 3.&lt;/P&gt;&lt;P&gt;    write: /3 text-003 color col_key, 20 sy-uname color col_positive.&lt;/P&gt;&lt;P&gt;    write: /3 text-004 color col_key, 20 sy-datum color col_positive.&lt;/P&gt;&lt;P&gt;    write: /3 text-005 color col_key, 20 sy-uzeit color col_positive.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;    format color col_heading.&lt;/P&gt;&lt;P&gt;    write: /3    'Called',&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          9    text-011,&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            17   text-012,&lt;/P&gt;&lt;P&gt;            30   text-013,&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          40   text-014,&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            45   text-015,&lt;/P&gt;&lt;P&gt;            55   text-016.&lt;/P&gt;&lt;P&gt;    format color col_normal.&lt;/P&gt;&lt;P&gt;    select * from  sflight into wa_sflight&lt;/P&gt;&lt;P&gt;           where  carrid  = pa_carr&lt;/P&gt;&lt;P&gt;           and    connid  in so_conn.&lt;/P&gt;&lt;P&gt;      write: /3      wa_sflight-carrid,&lt;/P&gt;&lt;P&gt;              9      wa_sflight-connid,&lt;/P&gt;&lt;P&gt;              17     wa_sflight-fldate,&lt;/P&gt;&lt;P&gt;              30(10) wa_sflight-price currency wa_sflight-currency,&lt;/P&gt;&lt;P&gt;              40     wa_sflight-currency,&lt;/P&gt;&lt;P&gt;              45     wa_sflight-seatsmax,&lt;/P&gt;&lt;P&gt;              55     wa_sflight-seatsocc.&lt;/P&gt;&lt;P&gt;    endselect.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; WA_SFLIGHT = ITAB.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  counter = sy-dbcnt.&lt;/P&gt;&lt;P&gt;*************EXPORTING THE NO OF RECS TO ABAP MEMORY&lt;/P&gt;&lt;P&gt;  export anyone from counter to memory id 'MID1'.&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;Sridhar Reddy k&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: sridhar reddy kondam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2005 07:04:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084198#M98741</guid>
      <dc:creator>sridharreddy_kondam</dc:creator>
      <dc:date>2005-12-26T07:04:05Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT statement calling ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084199#M98742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rajeev,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Can u tell us the program name.&lt;/P&gt;&lt;P&gt;   ( i had also faced same problem)&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;Amit M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2005 07:34:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084199#M98742</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-26T07:34:07Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT statement calling ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084200#M98743</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 to use this function module,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RZL_SUBMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this solves your problem ,please award suitable points and close the thread.&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;&lt;/P&gt;&lt;P&gt;Irfan Hussain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2005 07:35:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084200#M98743</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-26T07:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT statement calling ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084201#M98744</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sridhar,&lt;/P&gt;&lt;P&gt;My called program has an ALV output. Pls let me know if your code works in this condition. If its an abap list without ALV it's working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Rajeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2005 08:07:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084201#M98744</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-26T08:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT statement calling ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084202#M98745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi can you show the code how you are calling the submit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;similar thing i did, it is not displaying...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2005 08:31:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084202#M98745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-26T08:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: SUBMIT statement calling ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084203#M98746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you cannot use sumbit exporting list to memory and return for ALV GRIDs , but if its a ALV list you can use submit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2005 08:45:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-statement-calling-alv/m-p/1084203#M98746</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-12-26T08:45:20Z</dc:date>
    </item>
  </channel>
</rss>

