<?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: Using Field symbol to fetch data from another program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746740#M1459414</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Mar 2010 11:48:34 GMT</pubDate>
    <dc:creator>apichat_chuenprempree2</dc:creator>
    <dc:date>2010-03-23T11:48:34Z</dc:date>
    <item>
      <title>Using Field symbol to fetch data from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746736#M1459410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a requirement where i need to fetch value  of a field from one of the function pool so i have written a sample progam to check the logic but its doest seems to work its giving dump.&lt;/P&gt;&lt;P&gt;Basically i want to know how to use &amp;lt;programname&amp;gt;&amp;lt;fieldname&amp;gt; with fieldsymbol.&lt;/P&gt;&lt;P&gt;REPORT ztest1.&lt;/P&gt;&lt;P&gt;DATA test(25) VALUE 'ggg'.&lt;/P&gt;&lt;P&gt;submit ztest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report ztest.&lt;/P&gt;&lt;P&gt;constants: lv_memory(25) type c value '(ZTEST1)TEST'.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs2&amp;gt; type char25 .&lt;/P&gt;&lt;P&gt;assign (lv_memory) to &amp;lt;fs2&amp;gt;.&lt;/P&gt;&lt;P&gt;write : &amp;lt;fs2&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting same field symbol assignment dump&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Mar 2010 10:45:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746736#M1459410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-23T10:45:01Z</dc:date>
    </item>
    <item>
      <title>Re: Using Field symbol to fetch data from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746737#M1459411</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not possible to access data of other program like this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason is that both programs run in different &lt;EM&gt;internal&lt;/EM&gt; sessions which are exclusive for each of them. &lt;/P&gt;&lt;P&gt;You can try this trick to some function modules you call, as this one is called within same &lt;EM&gt;internall&lt;/EM&gt; session where the program runs, but for two separate programs you will need to use ABAP memory to exchange data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Mar 2010 11:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746737#M1459411</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-03-23T11:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using Field symbol to fetch data from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746738#M1459412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check the below piece for ZTEST&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONSTANTS: lv_memory(25) TYPE c VALUE '(ZTEST1)TEST'.
FIELD-SYMBOLS: &amp;lt;fs2&amp;gt; TYPE char25  .
ASSIGN lv_memory TO  &amp;lt;fs2&amp;gt;.
WRITE : &amp;lt;fs2&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Close the thread if answered&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Mar 2010 11:23:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746738#M1459412</guid>
      <dc:creator>Kanagaraja_L</dc:creator>
      <dc:date>2010-03-23T11:23:59Z</dc:date>
    </item>
    <item>
      <title>Re: Using Field symbol to fetch data from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746739#M1459413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;You can use this concept in between the FUNCTION MODULES where both are&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;under same FUNCTION GROUP ( as both the FM's have same global memory area ).&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;And also if you are calling an FM or method from your program  ,you can have the data of the calling program in that called FM or METHOD.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this may help you.&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;Smart Varghese&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Mar 2010 11:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746739#M1459413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-23T11:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using Field symbol to fetch data from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746740#M1459414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Mar 2010 11:48:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746740#M1459414</guid>
      <dc:creator>apichat_chuenprempree2</dc:creator>
      <dc:date>2010-03-23T11:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using Field symbol to fetch data from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746741#M1459415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nice explanation. BTW are you a proof reader for SAP online documentation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I find the same wording here: [http://help.sap.com/abapdocu_70/en/ABAPASSIGN_MEM_AREA_DYNAMIC_DOBJ.htm#!ABAP_ALTERNATIVE_1@1@|http://help.sap.com/abapdocu_70/en/ABAPASSIGN_MEM_AREA_DYNAMIC_DOBJ.htm#!ABAP_ALTERNATIVE_1@1@]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Mar 2010 12:15:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746741#M1459415</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-03-23T12:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: Using Field symbol to fetch data from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746742#M1459416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Abaper13 has been informed that copy and paste of other people's work is &lt;STRONG&gt;not permitted&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Mar 2010 12:35:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-field-symbol-to-fetch-data-from-another-program/m-p/6746742#M1459416</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2010-03-23T12:35:30Z</dc:date>
    </item>
  </channel>
</rss>

