<?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: how to declare submit and return statement in program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-submit-and-return-statement-in-program/m-p/7591048#M1567247</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Javito,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with the changing the back button option but this t-code same as the se16 transaction i am unable to change Pf-status of &lt;/P&gt;&lt;P&gt;back button so i am trying with the submit and return statement .Can help out from same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Jan 2011 08:19:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-01-12T08:19:01Z</dc:date>
    <item>
      <title>how to declare submit and return statement in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-submit-and-return-statement-in-program/m-p/7591046#M1567245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guru's&lt;/P&gt;&lt;P&gt;Actually the requirement for client  is In selection screen they have to drill down the tables for  customized or standard tables , so when click the tables in selection screen it has to go for the particular tables as  fields selection (same as fields selection of se16 screen).&lt;/P&gt;&lt;P&gt;So what i done is i have maintain the all tables in  t code strav(cust tcode) by giving the variables (zvar_ follwed by the tables) name.&lt;/P&gt;&lt;P&gt;Then i am fetching the  data from tvarc tables and  display all the tables in drill down of  selection screen and calling  call transaction zse16 (cust T-code) which is same as the se16 which we are maintain as zse16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working fine, but while coming back it going to zse16 screen of tables selection screen. .&lt;/P&gt;&lt;P&gt;if you want to come to my selection  screen i have to press back button from the zse16 screen.&lt;/P&gt;&lt;P&gt;Please suggest on this same .Instead of call transaction can i use submit and return statement how to declare  &lt;/P&gt;&lt;P&gt;prg for the zse16 (cust T-code)&lt;STRONG&gt;SAPLZSETB&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;removed by moderator&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables tvarvc.&lt;/P&gt;&lt;P&gt;DATA   ok_code TYPE sy-ucomm.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TYPE-POOLS : VRM.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: param TYPE vrm_id,&lt;/P&gt;&lt;P&gt;      values TYPE vrm_values,&lt;/P&gt;&lt;P&gt;      value LIKE LINE OF values.&lt;/P&gt;&lt;P&gt; PARAMETERS: CUST_TAB type tvarvc-low as LISTBOX VISIBLE  LENGTH 50 USER-COMMAND DUMMY.&lt;/P&gt;&lt;P&gt; INITIALIZATION.&lt;/P&gt;&lt;P&gt;  SELECT * from tvarvc where name like 'ZVAR_%' AND TYPE = 'P'.&lt;/P&gt;&lt;P&gt;    value-key = TVARVC-NAME+5.&lt;/P&gt;&lt;P&gt;    value-text = TVARVC-low.&lt;/P&gt;&lt;P&gt;    APPEND value TO values.&lt;/P&gt;&lt;P&gt;  endselect.&lt;/P&gt;&lt;P&gt;  PARAM = 'CUST_TAB'.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      id     = param&lt;/P&gt;&lt;P&gt;      values = values.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN." ON VALUE-REQUEST FOR CUST_TAB .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;  SET PARAMETER ID: 'DTB' FIELD CUST_TAB.&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'ZSE16' and skip first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;your responses will be appreciated.&lt;/STRONG&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Sandeep S jajur&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Thomas Zloch on Jan 12, 2011 3:15 PM - *priority reduced&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 05:42:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-submit-and-return-statement-in-program/m-p/7591046#M1567245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-12T05:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: how to declare submit and return statement in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-submit-and-return-statement-in-program/m-p/7591047#M1567246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since you are calling a Z tcode, you can change the coding of the back button in the screen .&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;Jovito.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 06:06:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-submit-and-return-statement-in-program/m-p/7591047#M1567246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-12T06:06:54Z</dc:date>
    </item>
    <item>
      <title>Re: how to declare submit and return statement in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-submit-and-return-statement-in-program/m-p/7591048#M1567247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Javito,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with the changing the back button option but this t-code same as the se16 transaction i am unable to change Pf-status of &lt;/P&gt;&lt;P&gt;back button so i am trying with the submit and return statement .Can help out from same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 08:19:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-submit-and-return-statement-in-program/m-p/7591048#M1567247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-12T08:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: how to declare submit and return statement in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-submit-and-return-statement-in-program/m-p/7591049#M1567248</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;Based on the table name selected in the parameter, call function module 'RS_TABLE_LIST_CREATE' within your program instead of call transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will see same SE16 screen and when you come back it would be back to the selection screen of your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Kranthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Jan 2011 20:21:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-declare-submit-and-return-statement-in-program/m-p/7591049#M1567248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-12T20:21:45Z</dc:date>
    </item>
  </channel>
</rss>

