<?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 submit standard Tcode using Submit  with variant? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048092#M1968527</link>
    <description>&lt;P&gt;Thank you Sandra I am searching for you thread and you delivered me the answer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;&lt;P&gt;I got the answer about to post it, RPTBAL00 is the answer &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;submit RPTBAL00 using SELECTION-SET 'VARIANT1' EXPORTINGLIST TO MEMORY AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;ok I am able to do that submit working with Variant. Thank you very much</description>
    <pubDate>Thu, 05 Dec 2019 17:53:38 GMT</pubDate>
    <dc:creator>svasi_08</dc:creator>
    <dc:date>2019-12-05T17:53:38Z</dc:date>
    <item>
      <title>How to submit standard Tcode using Submit  with variant?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048087#M1968522</link>
      <description>&lt;P&gt;when i try to call report program Inside the Tcode its throwing error. &lt;/P&gt;
  &lt;P&gt;SUBMIT ZREPORT via selection-set 'Variant1'.&lt;/P&gt;
  &lt;P&gt;it throws error as vairant1 doesnt exists. &lt;/P&gt;
  &lt;P&gt;when I check this Report its been used in many tcodes. &lt;/P&gt;
  &lt;P&gt;So I am looking at PT_BAL00 Tcode. When I try to enter the Report inside PT_BAL00 i am getting no entry in table T52MENU for SE93. &lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 14:53:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048087#M1968522</guid>
      <dc:creator>svasi_08</dc:creator>
      <dc:date>2019-12-05T14:53:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to submit standard Tcode using Submit  with variant?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048088#M1968523</link>
      <description>&lt;P&gt;Could you copy/past your exact statement ? because it is SUBMIT ... USING SELECTION-SET ...   not via&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 15:18:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048088#M1968523</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2019-12-05T15:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to submit standard Tcode using Submit  with variant?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048089#M1968524</link>
      <description>&lt;P&gt;Thank you for the response &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;submit RPMENUSTART00 using SELECTION-SET 'VARIANT1' EXPORTING LIST TO MEMORY AND RETURN.
&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 05 Dec 2019 15:22:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048089#M1968524</guid>
      <dc:creator>svasi_08</dc:creator>
      <dc:date>2019-12-05T15:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to submit standard Tcode using Submit  with variant?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048090#M1968525</link>
      <description>&lt;P&gt;Do you have SAP HR System or PT_BAL00 in your System, just execute PT_BAL00 and Program insider it? &lt;/P&gt;&lt;P&gt;program should throw error. &lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 15:23:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048090#M1968525</guid>
      <dc:creator>svasi_08</dc:creator>
      <dc:date>2019-12-05T15:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to submit standard Tcode using Submit  with variant?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048091#M1968526</link>
      <description>&lt;P&gt;Transaction code PT_BAL00 is a report transaction which calls selection screen 1000 of RPMENUSTART00. Actually screen 1000 doesn't exist but this code is executed:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PERFORM get_smodn
     USING sy-tcode
  CHANGING lv_smodn.* get the name of the report from T596F+T77CCE_PRG_PRGCE+T77S0
CALL FUNCTION 'HRCCE_GET_REPORTNAME'
  EXPORTING
    smodn      = lv_smodn
  IMPORTING
    reportname = lv_reportname.
* get the variant for the report
PERFORM  get_start_variant
      USING sy-tcode
            lv_reportname
   CHANGING lv_stvar.
IF lv_stvar IS INITIAL.
  SUBMIT (lv_reportname) VIA SELECTION-SCREEN.           "#EC CI_SUBMIT
ELSE.
  SUBMIT (lv_reportname) VIA SELECTION-SCREEN            "#EC CI_SUBMIT
                         USING SELECTION-SET lv_stvar.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;So it's obvious that RPMENUSTART00 calls another program with a start variant.&lt;/P&gt;&lt;P&gt;Just debug a little bit, the code is very simple to understand!&lt;/P&gt;</description>
      <pubDate>Thu, 05 Dec 2019 16:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048091#M1968526</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-12-05T16:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to submit standard Tcode using Submit  with variant?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048092#M1968527</link>
      <description>&lt;P&gt;Thank you Sandra I am searching for you thread and you delivered me the answer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; &lt;/P&gt;&lt;P&gt;I got the answer about to post it, RPTBAL00 is the answer &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;submit RPTBAL00 using SELECTION-SET 'VARIANT1' EXPORTINGLIST TO MEMORY AND RETURN.&lt;/CODE&gt;&lt;/PRE&gt;ok I am able to do that submit working with Variant. Thank you very much</description>
      <pubDate>Thu, 05 Dec 2019 17:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-submit-standard-tcode-using-submit-with-variant/m-p/12048092#M1968527</guid>
      <dc:creator>svasi_08</dc:creator>
      <dc:date>2019-12-05T17:53:38Z</dc:date>
    </item>
  </channel>
</rss>

