<?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: Get text symbols from another program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-text-symbols-from-another-program/m-p/3013410#M712112</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use READ TEXTPOOL A statement to get the information in your report B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 11 Nov 2007 11:26:39 GMT</pubDate>
    <dc:creator>former_member195698</dc:creator>
    <dc:date>2007-11-11T11:26:39Z</dc:date>
    <item>
      <title>Get text symbols from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-text-symbols-from-another-program/m-p/3013408#M712110</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;Is it possible to access text symbols from another program? For example, in program A, it has the text symbol 'text-001'. How can I access that text symbol in program B?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, useful replies will be awarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 10:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-text-symbols-from-another-program/m-p/3013408#M712110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T10:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Get text symbols from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-text-symbols-from-another-program/m-p/3013409#M712111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You can't access the text symbols of one program into another program.&lt;/P&gt;&lt;P&gt;They are program dependent.&lt;/P&gt;&lt;P&gt;That's why we create them in each program , if they are accessable we should have always created in a same place for all, which is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 10:17:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-text-symbols-from-another-program/m-p/3013409#M712111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T10:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Get text symbols from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-text-symbols-from-another-program/m-p/3013410#M712112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use READ TEXTPOOL A statement to get the information in your report B&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 11:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-text-symbols-from-another-program/m-p/3013410#M712112</guid>
      <dc:creator>former_member195698</dc:creator>
      <dc:date>2007-11-11T11:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Get text symbols from another program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-text-symbols-from-another-program/m-p/3013411#M712113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Heey new bird!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go thru this code..and have fun&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Data declaration for textpool manipulation&lt;/P&gt;&lt;P&gt;DATA: PROGRAM(30) VALUE 'ZTESTPROG',&lt;/P&gt;&lt;P&gt;      TAB LIKE TEXTPOOL OCCURS 50 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Read textpool&lt;/P&gt;&lt;P&gt;READ TEXTPOOL PROGRAM INTO TAB LANGUAGE SY-LANGU state 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Delete textpool&lt;/P&gt;&lt;P&gt;DELETE TEXTPOOL program LANGUAGE 'E'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Add entry to text pool&lt;/P&gt;&lt;P&gt;READ TEXTPOOL PROGRAM INTO TAB LANGUAGE SY-LANGU state 'A'.&lt;/P&gt;&lt;P&gt;DELETE TEXTPOOL program LANGUAGE 'E'.&lt;/P&gt;&lt;P&gt;TAB-ID = 'S'. TAB-KEY = 'DATYP'.  TAB-ENTRY = 'Date Type'.&lt;/P&gt;&lt;P&gt;APPEND TAB.&lt;/P&gt;&lt;P&gt;SORT TAB BY ID KEY.&lt;/P&gt;&lt;P&gt;INSERT TEXTPOOL PROGRAM FROM TAB LANGUAGE SY-LANGU.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Nov 2007 12:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-text-symbols-from-another-program/m-p/3013411#M712113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-11T12:33:43Z</dc:date>
    </item>
  </channel>
</rss>

