<?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 Article text without using READ_TEXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087366#M1704832</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Shravan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it seems it is not possible. I was hoping to get it done without programming work, but it seems I can't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If someone has another solution, always welcome.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Oct 2012 14:27:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-10-16T14:27:43Z</dc:date>
    <item>
      <title>Get Article text without using READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087362#M1704828</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;Is there a way to get the article texts without using the READ_TEXT function module?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have an external business intelligence application which can only query on the SAP tables, it can't execute functions like the READ_TEXT. Can I search the texts in a cluster table? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I search through the SE16n I'll only get the binary format in STXH and STXL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope someone can help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Koen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 13:54:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087362#M1704828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-16T13:54:23Z</dc:date>
    </item>
    <item>
      <title>Re: Get Article text without using READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087363#M1704829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See if the FM 'ECATT_CONV_XSTRING_TO_STRING' or 'FM SCMS_BIN_TO_TEXT' helps to convert RAW text to String.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lv_converter TYPE REF TO cl_abap_conv_in_ce.&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATA: lv_xstring&amp;nbsp;&amp;nbsp; TYPE xstring.&lt;/P&gt;&lt;P&gt;&amp;nbsp; DATA: lv_string type string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; lv_xtring = &amp;lt;your xstring&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; lv_converter = cl_abap_conv_in_ce=&amp;gt;create( input&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = lv_xstring&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; encoding&amp;nbsp;&amp;nbsp;&amp;nbsp; = 'UTF-8'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; replacement = '?'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ignore_cerr = abap_true ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; TRY.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL METHOD lv_converter-&amp;gt;read( IMPORTING data = lv_string ).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATCH cx_sy_conversion_codepage.&lt;/P&gt;&lt;P&gt;*-- Should ignore errors in code conversions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATCH cx_sy_codepage_converter_init.&lt;/P&gt;&lt;P&gt;*-- Should ignore errors in code conversions&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATCH cx_parameter_invalid_type.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CATCH cx_parameter_invalid_range.&lt;/P&gt;&lt;P&gt;&amp;nbsp; ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;swanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 14:02:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087363#M1704829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-16T14:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Get Article text without using READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087364#M1704830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think I didn't explain it well enough. The BI application can't execute RFC's of Functions. It has to get the data straight from the database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the proposed solution will not work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 14:07:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087364#M1704830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-16T14:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Get Article text without using READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087365#M1704831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Koen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per my knowledge, you can't get the article text directly from the standard tables. If your requirement is only to read text from tables directly then create a z table with required fields and populate article text into that table using Read_text function module and Read data from that z table directly. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One morething, Once your work is finished and try to delete data from this table in periodic manner or delete the table if possible to increase database free space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more option is you can create a z bapi using fm Read_text and try to call this bapi from external application if possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will helps you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shravan&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 14:21:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087365#M1704831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-16T14:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Get Article text without using READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087366#M1704832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Shravan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it seems it is not possible. I was hoping to get it done without programming work, but it seems I can't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If someone has another solution, always welcome.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 14:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087366#M1704832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-16T14:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Get Article text without using READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087367#M1704833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above code or suggestion was to convert the RAW text to string. After that you could use the below Z table approach.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards,&lt;/P&gt;&lt;P&gt;swanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 14:29:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087367#M1704833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-10-16T14:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: Get Article text without using READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087368#M1704834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a thread &lt;A _jive_internal="true" href="https://answers.sap.com/message/10063502#10063502"&gt;Mass reading standard texts (STXH, STXL)&lt;/A&gt; that as a similar subject but is your BI able to effect the import from internal table that will translate the data of the cluster file (using code from reverse engineering of READ_TEXT)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else, you will require coding for extraction or building some transparent tables to duplicate long texts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Oct 2012 18:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/get-article-text-without-using-read-text/m-p/9087368#M1704834</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2012-10-16T18:35:04Z</dc:date>
    </item>
  </channel>
</rss>

