<?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: READ_TEXT :please help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836189#M355873</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using the REad text you will get more than 1 record..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now insert a loop in the purticluare item field then loop the table..with TExT..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Naresh Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Jan 2007 09:36:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-10T09:36:52Z</dc:date>
    <item>
      <title>READ_TEXT :please help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836185#M355869</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;i am working with smartforms The material description field in vbrp i.e arktx has a limited length and if you want to give additional details on description you need to work with mm01 transaction and there in the item text you fill the description&lt;/P&gt;&lt;P&gt;i concatenated this description to the filed arktx ie it_vbrp-arktx and separated the discription by ','(comma).&lt;/P&gt;&lt;P&gt;now i want each row of description to be displayed on a new line.&lt;/P&gt;&lt;P&gt;i am calling the funtion module READ_TEXT for this.&lt;/P&gt;&lt;P&gt;waiting for your responses.&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;akmal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jan 2007 05:41:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836185#M355869</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-05T05:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT :please help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836186#M355870</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;       Read_Text function is correct .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But tell me Descrition is in one line separated by comma or in different line .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2007 06:01:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836186#M355870</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T06:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT :please help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836187#M355871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Akmal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try as below:&lt;/P&gt;&lt;P&gt;For lines greater than 1 of each material descriptions insert a record in IT_VBRP with doc no, item and new ARKTX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way when you print ARKTX by looping on IT_VBRP, it can fetch you onto the layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this gives you some clue...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2007 06:13:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836187#M355871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T06:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT :please help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836188#M355872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can have table of tyep TLINE inside the internal table it_vbrp.&lt;/P&gt;&lt;P&gt; i can give u more explanation...&lt;/P&gt;&lt;P&gt;data: begin of it_tline occurs 0.&lt;/P&gt;&lt;P&gt;append structure tline.&lt;/P&gt;&lt;P&gt;data end of it_tline.&lt;/P&gt;&lt;P&gt;data : begin of it_vbrp occurs 0,&lt;/P&gt;&lt;P&gt;          vbeln type vbrk-vbeln,&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;          tline like it_tline,&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;      end of it_vbrp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for every line item in it_vbrp u can have the description(which is read by using READ_TEXT) in the table it_vbrp-tline[].&lt;/P&gt;&lt;P&gt;Hope this idea may help you.&lt;/P&gt;&lt;P&gt;reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2007 09:07:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836188#M355872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T09:07:45Z</dc:date>
    </item>
    <item>
      <title>Re: READ_TEXT :please help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836189#M355873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using the REad text you will get more than 1 record..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now insert a loop in the purticluare item field then loop the table..with TExT..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Naresh Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Jan 2007 09:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-please-help/m-p/1836189#M355873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-10T09:36:52Z</dc:date>
    </item>
  </channel>
</rss>

