<?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 pass value from one tcode to another in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-one-tcode-to-another/m-p/2898154#M681440</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;can anyone tell me how to pass a value(say customer) from one tcode(CIC0) to another tcode VA05 tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you please tell me at the earlist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Oct 2007 14:17:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-08T14:17:07Z</dc:date>
    <item>
      <title>pass value from one tcode to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-one-tcode-to-another/m-p/2898154#M681440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;can anyone tell me how to pass a value(say customer) from one tcode(CIC0) to another tcode VA05 tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you please tell me at the earlist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 14:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-one-tcode-to-another/m-p/2898154#M681440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T14:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: pass value from one tcode to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-one-tcode-to-another/m-p/2898155#M681441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use SUBMIT &amp;lt;NAME&amp;gt; ....&lt;/P&gt;&lt;P&gt;Get F1 help on submit keyword , you will get the answer here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are many ways in which you can call a program using the SUBMIT statement, you can pass parameters to it using WITH syntax, you can use a selection-table to pass parameters. Here is a sample of both. These pieces of code call MB51 program passing a material and todays data to the selection screen and the executing the report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: seltab     type table of rsparams,&lt;/P&gt;&lt;P&gt;      seltab_wa  like line of seltab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;move: 'MATNR'         to seltab_wa-selname,&lt;/P&gt;&lt;P&gt;      'S'             to seltab_wa-kind,&lt;/P&gt;&lt;P&gt;      'I'             to seltab_wa-sign,&lt;/P&gt;&lt;P&gt;      'EQ'            to seltab_wa-option,&lt;/P&gt;&lt;P&gt;      '40000000'      to seltab_wa-low.&lt;/P&gt;&lt;P&gt;append seltab_wa to seltab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;move: 'BUDAT'         to seltab_wa-selname,&lt;/P&gt;&lt;P&gt;      'S'             to seltab_wa-kind,&lt;/P&gt;&lt;P&gt;      'I'             to seltab_wa-sign,&lt;/P&gt;&lt;P&gt;      'EQ'            to seltab_wa-option,&lt;/P&gt;&lt;P&gt;      sy-datum      to seltab_wa-low.&lt;/P&gt;&lt;P&gt;append seltab_wa to seltab.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;submit rm07docs&lt;/P&gt;&lt;P&gt;        with selection-table seltab&lt;/P&gt;&lt;P&gt;        and return.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This next peice is a slightly different way of doing the same thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: mseg, mkpf.&lt;/P&gt;&lt;P&gt;ranges: r_matnr for mseg-matnr,&lt;/P&gt;&lt;P&gt;        r_budat for mkpf-budat.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;r_matnr-sign = 'I'.&lt;/P&gt;&lt;P&gt;r_matnr-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r_matnr-low   = '40000000'.&lt;/P&gt;&lt;P&gt;append r_matnr.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;r_budat-sign = 'I'.&lt;/P&gt;&lt;P&gt;r_budat-option = 'EQ'.&lt;/P&gt;&lt;P&gt;r_budat-low   = sy-datum.&lt;/P&gt;&lt;P&gt;append r_budat.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;submit rm07docs&lt;/P&gt;&lt;P&gt;       with matnr in r_matnr&lt;/P&gt;&lt;P&gt;       with budat in r_budat&lt;/P&gt;&lt;P&gt;           and return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me reward point If it is useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murali Poli&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 14:22:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-one-tcode-to-another/m-p/2898155#M681441</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T14:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: pass value from one tcode to another</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-one-tcode-to-another/m-p/2898156#M681442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thanks for your respose. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But here  the user is entering the customer in CIC0 tcode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;raj.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        raj abap&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2007 14:25:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/pass-value-from-one-tcode-to-another/m-p/2898156#M681442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-08T14:25:51Z</dc:date>
    </item>
  </channel>
</rss>

