<?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: Regarding methods in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-methods/m-p/1559015#M252928</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;you can use 'EXPORT' and 'IMPORT' to get your work done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in first screen 'EXPORT' the fields to abap memory and in second screen PBO 'IMPORT' fields to get value and display them in screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IN first screen PAI do this.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;data: text_field(50).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT text_field TO MEMORY ID 'MID'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IN second screen PBO do this.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;data: text_field(50).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT text_field FROM MEMORY ID 'MID'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 07 Oct 2006 07:12:14 GMT</pubDate>
    <dc:creator>dani_mn</dc:creator>
    <dc:date>2006-10-07T07:12:14Z</dc:date>
    <item>
      <title>Regarding methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-methods/m-p/1559014#M252927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is I an entering data into 3 text fields. And when i am performing action(Clicking a button) I want to display the text which i have entered in the three text box into next screen Container. So how can i display that.One of my friend suggested me to use Set_text_as_r3table and Get_text_as_r3table to store the data and retreive the date from the Database table.And try. But i am not getting the class in which i can find this methods. Can any one help me out in solving this problem. Or if any other method is plz suggest me .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in Advance,&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Oct 2006 07:01:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-methods/m-p/1559014#M252927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-07T07:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-methods/m-p/1559015#M252928</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;you can use 'EXPORT' and 'IMPORT' to get your work done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in first screen 'EXPORT' the fields to abap memory and in second screen PBO 'IMPORT' fields to get value and display them in screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IN first screen PAI do this.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;data: text_field(50).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT text_field TO MEMORY ID 'MID'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;IN second screen PBO do this.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;data: text_field(50).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORT text_field FROM MEMORY ID 'MID'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Oct 2006 07:12:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-methods/m-p/1559015#M252928</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-10-07T07:12:14Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-methods/m-p/1559016#M252929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;instead of using set_text and get_text .&lt;/P&gt;&lt;P&gt;we can use import and export statements.&lt;/P&gt;&lt;P&gt;use EXPORT statements in order to store the values of text fields using an 'id'&lt;/P&gt;&lt;P&gt;and use import statement to retrive using the same id.&lt;/P&gt;&lt;P&gt;EXPORT &amp;lt;fname&amp;gt; to memory id.&lt;/P&gt;&lt;P&gt;import &amp;lt;fnam&amp;gt; from memory id.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Oct 2006 09:07:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-methods/m-p/1559016#M252929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-07T09:07:49Z</dc:date>
    </item>
  </channel>
</rss>

