<?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 Problem in READ_TEXT FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-read-text-fm/m-p/6507917#M1422981</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;      I am using FM READ_TEXT for reading the text maintained in ME23N t-code and to display in Smartform.For fist line item its printing the text but for 2nd line item its not. When i debbuged the FM its taking the same Name (concatenation of PO No and Line item no) in memory ID. For eg. if Po No is 410070090 and has line item 10 and 20.for 1st time Name = 41007009000010 and for 2nd line item it should be 41007009000020 .But its taking 41007009000010.Pls help.........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 08 Jan 2010 11:31:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-01-08T11:31:46Z</dc:date>
    <item>
      <title>Problem in READ_TEXT FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-read-text-fm/m-p/6507917#M1422981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;      I am using FM READ_TEXT for reading the text maintained in ME23N t-code and to display in Smartform.For fist line item its printing the text but for 2nd line item its not. When i debbuged the FM its taking the same Name (concatenation of PO No and Line item no) in memory ID. For eg. if Po No is 410070090 and has line item 10 and 20.for 1st time Name = 41007009000010 and for 2nd line item it should be 41007009000020 .But its taking 41007009000010.Pls help.........&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jan 2010 11:31:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-read-text-fm/m-p/6507917#M1422981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-08T11:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in READ_TEXT FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-read-text-fm/m-p/6507918#M1422982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this will solve i think so ..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
IMPORT tline TO rt_lines
FROM DATABASE stxl(tx)
CLIENT rt_client
ID stxl_id
ACCEPTING TRUNCATION
IGNORING CONVERSION 
ERRORS
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or free memory id 'SAPLSTXD' after using read_text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer &lt;SPAN __jive_macro_name="thread" id="1284470"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jan 2010 11:37:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-read-text-fm/m-p/6507918#M1422982</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-01-08T11:37:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in READ_TEXT FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-read-text-fm/m-p/6507919#M1422983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check with your ABAP Logic into Loop around FM Read_Text for concatenation for Text name.&lt;/P&gt;&lt;P&gt;somewhere you are missing to increase the Text name from 41007009000010 to 41007009000020.How this number is stored into variable?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jan 2010 11:43:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-read-text-fm/m-p/6507919#M1422983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-08T11:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in READ_TEXT FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-read-text-fm/m-p/6507920#M1422984</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;In the text name just concatenate ebeln eblep in to v_name&lt;/P&gt;&lt;P&gt;now pass the v_name to read_text function module and after the read text fucntion module try to clear the v_name so that when the loop comes it takes the line item 2nd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;  loop at it_po into wa_po.&lt;/P&gt;&lt;P&gt;  clear v_name.&lt;/P&gt;&lt;P&gt;      concatenate wa_po-ebeln wa_po-ebelp into v_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       now pas v_name to rea text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            read_text &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                 name     =    va_name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          clear v_name.&lt;/P&gt;&lt;P&gt;endloop..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just check this.. dont hard code the name..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if you need further info..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Satish Boguda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Jan 2010 11:44:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-read-text-fm/m-p/6507920#M1422984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-01-08T11:44:30Z</dc:date>
    </item>
  </channel>
</rss>

