<?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 function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216875#M135128</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jwalith,&lt;/P&gt;&lt;P&gt;this behaviour may be due to the reason that &amp;amp; is used to identify variables in the script.. u may  verify this by putting anything else in the text..it wont create any such problems.. hence, u may need to get the text in the program, n then make necessary modifications as suggested in the posts above,..&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Apr 2006 05:53:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-22T05:53:06Z</dc:date>
    <item>
      <title>Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216868#M135121</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;         While i am trying to read long text thru "READ_TEXT" function module , instead of "&amp;amp;" i am getting "(&amp;lt;)&amp;amp;(&amp;gt;)" .&lt;/P&gt;&lt;P&gt;For ex.&lt;/P&gt;&lt;P&gt;  if the long text which i have to read is &lt;/P&gt;&lt;P&gt;             &amp;lt;b&amp;gt;" hi all &amp;amp; h r u &amp;amp; "&amp;lt;/b&amp;gt;  &lt;/P&gt;&lt;P&gt; while reading am getting a text like this &lt;/P&gt;&lt;P&gt;       &amp;lt;b&amp;gt; "hi all (&amp;lt;)&amp;amp;(&amp;gt;) h r u (&amp;lt;)&amp;amp;(&amp;gt;)" .&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;  hope u got my problem n could nybody there to help me out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 09:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216868#M135121</guid>
      <dc:creator>jwalithtatikonda2</dc:creator>
      <dc:date>2006-04-21T09:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216869#M135122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you show your code?&lt;/P&gt;&lt;P&gt;How do you know that the long text is that way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 09:45:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216869#M135122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T09:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216870#M135123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have seen that text in iw52 transaction&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 09:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216870#M135123</guid>
      <dc:creator>jwalithtatikonda2</dc:creator>
      <dc:date>2006-04-21T09:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216871#M135124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;  if the problem is not solved then u can manually change to original text .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that is use following command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE  ALL OCCURRENCES OF '(&amp;lt;)&amp;amp;(&amp;gt;)' IN text WITH '&amp;amp;'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i.e&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at TLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPLACE  ALL OCCURRENCES OF '(&amp;lt;)&amp;amp;(&amp;gt;)' IN TLINE-TDLINE WITH '&amp;amp;'.&lt;/P&gt;&lt;P&gt;Modify TLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Manoj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 11:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216871#M135124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T11:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216872#M135125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thatz fine manoj , but there might be some case like i need to enter text &amp;lt;b&amp;gt;(&amp;lt;)hi(&amp;gt;)&amp;lt;/b&amp;gt; . Actually there will be no scenario like this , but if i need to do that by some chance then u'r procedure is not appropriate. My intention is to know why we get those characters, is that because of length ? or type ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 11:32:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216872#M135125</guid>
      <dc:creator>jwalithtatikonda2</dc:creator>
      <dc:date>2006-04-21T11:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216873#M135126</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;refer this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ZTEXT . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: PBIM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;stxh, stxl, stxb - trans tables for text &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ttxit - text on text-ids &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ttxot - Short texts on text objects &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Transaction MD63 &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT-OPTIONS: S_MATNR FOR PBIM-MATNR, &lt;/P&gt;&lt;P&gt;                S_WERKS FOR PBIM-WERKS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF HTEXT. &lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE THEAD. &lt;/P&gt;&lt;P&gt;DATA: END OF HTEXT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF LTEXT OCCURS 50. &lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE TLINE. &lt;/P&gt;&lt;P&gt;DATA: END OF LTEXT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF DTEXT OCCURS 50. &lt;/P&gt;&lt;P&gt;DATA:   MATNR LIKE PBIM-MATNR. &lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE TLINE. &lt;/P&gt;&lt;P&gt;DATA: END OF DTEXT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: TNAME LIKE THEAD-TDNAME. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM PBIM WHERE WERKS IN S_WERKS. &lt;/P&gt;&lt;P&gt;  MOVE PBIM-BDZEI TO TNAME. &lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'READ_TEXT' &lt;/P&gt;&lt;P&gt;       EXPORTING &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          CLIENT                  = SY-MANDT &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          ID                      = 'PB' &lt;/P&gt;&lt;P&gt;          LANGUAGE                = 'E' &lt;/P&gt;&lt;P&gt;          NAME                    = TNAME &lt;/P&gt;&lt;P&gt;          OBJECT                  = 'PBPT' &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ARCHIVE_HANDLE          = 0 &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     IMPORTING &lt;/P&gt;&lt;P&gt;          HEADER                  = HTEXT &lt;/P&gt;&lt;P&gt;     TABLES &lt;/P&gt;&lt;P&gt;          LINES                   = LTEXT &lt;/P&gt;&lt;P&gt;     EXCEPTIONS &lt;/P&gt;&lt;P&gt;          ID                      = 1 &lt;/P&gt;&lt;P&gt;          LANGUAGE                = 2 &lt;/P&gt;&lt;P&gt;          NAME                    = 3 &lt;/P&gt;&lt;P&gt;          NOT_FOUND               = 4 &lt;/P&gt;&lt;P&gt;          OBJECT                  = 5 &lt;/P&gt;&lt;P&gt;          REFERENCE_CHECK         = 6 &lt;/P&gt;&lt;P&gt;          WRONG_ACCESS_TO_ARCHIVE = 7 &lt;/P&gt;&lt;P&gt;          OTHERS                  = 8. &lt;/P&gt;&lt;P&gt;  LOOP AT LTEXT. &lt;/P&gt;&lt;P&gt;    IF LTEXT-TDLINE NE ''. &lt;/P&gt;&lt;P&gt;      MOVE LTEXT-TDLINE TO DTEXT-TDLINE. &lt;/P&gt;&lt;P&gt;      MOVE PBIM-MATNR TO DTEXT-MATNR. &lt;/P&gt;&lt;P&gt;      APPEND DTEXT. &lt;/P&gt;&lt;P&gt;    ENDIF. &lt;/P&gt;&lt;P&gt;  ENDLOOP. &lt;/P&gt;&lt;P&gt;ENDSELECT. &lt;/P&gt;&lt;P&gt;LOOP AT DTEXT. &lt;/P&gt;&lt;P&gt;  WRITE:/ DTEXT-MATNR, DTEXT-TDLINE. &lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you still have the problem then look at the text table defination... even you can replace this by usin gthe REPLACE with spaces with some conditions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Apr 2006 11:32:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216873#M135126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-21T11:32:44Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216874#M135127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanq sudheer , i'll look at and get back to you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Apr 2006 03:36:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216874#M135127</guid>
      <dc:creator>jwalithtatikonda2</dc:creator>
      <dc:date>2006-04-22T03:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216875#M135128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jwalith,&lt;/P&gt;&lt;P&gt;this behaviour may be due to the reason that &amp;amp; is used to identify variables in the script.. u may  verify this by putting anything else in the text..it wont create any such problems.. hence, u may need to get the text in the program, n then make necessary modifications as suggested in the posts above,..&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bikash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Apr 2006 05:53:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216875#M135128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-22T05:53:06Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216876#M135129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after reading the text using READ_TEXT use FM CONVERT_ITF_TO_ASCII to convert it to ASCII format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pass the itf content from READ_TEXT to itf_lines table in CONVERT_ITF_TO_ASCII&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C_DATATAB export parameter will return the correct results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Apr 2006 05:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216876#M135129</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-04-23T05:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216877#M135130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;here is the complete code sample.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: itf_tab TYPE STANDARD TABLE OF   tline ,
 wa_itf TYPE tline .
DATA: c_datatab TYPE tdtab_c132 .
.
CALL FUNCTION 'READ_TEXT'
  EXPORTING
   client                        = sy-mandt
    id                            = 'ST'
    language                      = sy-langu
    name                          = 'Y_RAJA_HTML'
    object                        = 'TEXT'
*   ARCHIVE_HANDLE                = 0
*   LOCAL_CAT                     = ' '
* IMPORTING
*   HEADER                        = HEADER
  TABLES
    lines                         = itf_tab
 EXCEPTIONS
   id                            = 1
   language                      = 2
   name                          = 3
   not_found                     = 4
   object                        = 5
   reference_check               = 6
   wrong_access_to_archive       = 7
   OTHERS                        = 8
         .
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.

CALL FUNCTION 'CONVERT_ITF_TO_ASCII'
 EXPORTING
*   CODEPAGE                = '0000'
*   FORMATWIDTH             = 72
   language                = sy-langu
   tabletype               = 'ASC'
*   TAB_SUBSTITUTE          = ' '
*   LF_SUBSTITUTE           = ' '
*   REPLACE_SYMBOLS         = 'X'
*   REPLACE_SAPCHARS        = 'X'
 IMPORTING
*   FORMATWIDTH_E           = FORMATWIDTH_E
*   X_DATATAB               = X_DATATAB
   c_datatab               = c_datatab
*   X_SIZE                  = X_SIZE
  TABLES
    itf_lines               = itf_tab
 EXCEPTIONS
   invalid_tabletype       = 1
   OTHERS                  = 2
          .
IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 23 Apr 2006 06:08:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216877#M135130</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-04-23T06:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216878#M135131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Durairaj,&lt;/P&gt;&lt;P&gt;             That was a gr8 reply, actually i am working on 4.6 , the function module which u had specified is not there so i have used FM "DSVAS_TEXTE_CONVERT_ITF2ASCII" . This FM solved my problem and raised another problem. That was , its again converting some text to &amp;lt;*&amp;gt; and also am not getting the entire text after calling this function module , could you please look into it ,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Apr 2006 07:13:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216878#M135131</guid>
      <dc:creator>jwalithtatikonda2</dc:creator>
      <dc:date>2006-04-24T07:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216879#M135132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi manoj ,&lt;/P&gt;&lt;P&gt;             I have tried everything to solve this problem but ulmately i have to use replace . But in 4.6 am unable to use REPLACE ALL OCCURRENCES , When i am using REPLACE WITH , only first occurrence is being replaced , could you help how i can replace that in entire text .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Apr 2006 07:17:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216879#M135132</guid>
      <dc:creator>jwalithtatikonda2</dc:creator>
      <dc:date>2006-04-24T07:17:15Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216880#M135133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;*&amp;gt; is the TD format. before passin the ITF table from READ_TEXT to this convert to ASCII function clear the TD format column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not getting the entire text? is some text getting cut off?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as for replace all&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do &lt;/P&gt;&lt;P&gt;find '&amp;lt;' in &amp;lt;var&amp;gt; .&lt;/P&gt;&lt;P&gt;if sy-suvrc eq 0 .&lt;/P&gt;&lt;P&gt;replace ...&lt;/P&gt;&lt;P&gt;else .&lt;/P&gt;&lt;P&gt;exit .&lt;/P&gt;&lt;P&gt;endo .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Apr 2006 07:36:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216880#M135133</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-04-24T07:36:19Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216881#M135134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Durairaj,&lt;/P&gt;&lt;P&gt;             Thanq for u'r repetative search n replace. Regarding READ_TEXT and ASCII conversion , some text is missing. what might be the problem. I awarded points for u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Apr 2006 11:24:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216881#M135134</guid>
      <dc:creator>jwalithtatikonda2</dc:creator>
      <dc:date>2006-04-24T11:24:27Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216882#M135135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its very difficult to anyalyze the issue. are you using some stadandard staandard text or cutom one. if its a standard one, give me the name of the text i will try to simulate the case to check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Apr 2006 11:41:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216882#M135135</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-04-24T11:41:27Z</dc:date>
    </item>
    <item>
      <title>Re: Read_text function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216883#M135136</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, 03 Mar 2015 12:33:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-module/m-p/1216883#M135136</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-03-03T12:33:04Z</dc:date>
    </item>
  </channel>
</rss>

