<?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: FM Read_Text Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297379#M1221815</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the sy-subrc value you are getting after FM execution. try to map it with exception and see where the error is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also test it with another PO so you will come to know if this the problem with that perticular PO only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Mar 2009 13:37:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-13T13:37:54Z</dc:date>
    <item>
      <title>FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297366#M1221802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru's,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've a problem with Read_Text when i try to extract the Overview Text. The SELECT from STHX fails, the parameters are correct but in the STHX the record there isn't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I notice that in the ME23 , Item -&amp;gt; Text -&amp;gt; Text Overview , in 'Material PO Text' in the Status, there is this symbol ' * ', it is possible that this symbol is a problem when using the Read_Text FM ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are there any anothers idea or solution for this problem ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Angelo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 10:30:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297366#M1221802</guid>
      <dc:creator>former_member302911</dc:creator>
      <dc:date>2009-03-13T10:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297367#M1221803</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;Kindly go through this below sample code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

TABLES: PBIM. 
* stxh, stxl, stxb - trans tables for text 
* ttxit - text on text-ids 
* ttxot - Short texts on text objects 
* Transaction MD63 
SELECT-OPTIONS: S_MATNR FOR PBIM-MATNR, 
                S_WERKS FOR PBIM-WERKS. 
DATA: BEGIN OF HTEXT. 
        INCLUDE STRUCTURE THEAD. 
DATA: END OF HTEXT. 
DATA: BEGIN OF LTEXT OCCURS 50. 
        INCLUDE STRUCTURE TLINE. 
DATA: END OF LTEXT. 
DATA: BEGIN OF DTEXT OCCURS 50. 
DATA:   MATNR LIKE PBIM-MATNR. 
        INCLUDE STRUCTURE TLINE. 
DATA: END OF DTEXT. 
DATA: TNAME LIKE THEAD-TDNAME. 
SELECT * FROM PBIM WHERE WERKS IN S_WERKS. 
  MOVE PBIM-BDZEI TO TNAME. 
  CALL FUNCTION 'READ_TEXT' 
       EXPORTING 
*           CLIENT                  = SY-MANDT 
          ID                      = 'PB' 
          LANGUAGE                = 'E' 
          NAME                    = TNAME 
          OBJECT                  = 'PBPT' 
*         ARCHIVE_HANDLE          = 0 
     IMPORTING 
          HEADER                  = HTEXT 
     TABLES 
          LINES                   = LTEXT 
     EXCEPTIONS 
          ID                      = 1 
          LANGUAGE                = 2 
          NAME                    = 3 
          NOT_FOUND               = 4 
          OBJECT                  = 5 
          REFERENCE_CHECK         = 6 
          WRONG_ACCESS_TO_ARCHIVE = 7 
          OTHERS                  = 8. 
  LOOP AT LTEXT. 
    IF LTEXT-TDLINE NE ''. 
      MOVE LTEXT-TDLINE TO DTEXT-TDLINE. 
      MOVE PBIM-MATNR TO DTEXT-MATNR. 
      APPEND DTEXT. 
    ENDIF. 
  ENDLOOP. 
ENDSELECT. 
LOOP AT DTEXT. 
  WRITE:/ DTEXT-MATNR, DTEXT-TDLINE. 
ENDLOOP. 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find the Text id these are the following steps.  Let us take an example of Billing document Header text.  &lt;/P&gt;&lt;P&gt;1. goto VF03, enter Billing doc Number  &lt;/P&gt;&lt;P&gt;2. from menu&lt;DEL&gt;select Goto&lt;/DEL&gt;&amp;gt;Header--&amp;gt;header Text..... New window will be displayed  &lt;/P&gt;&lt;P&gt;3. select the Header Text. here you can see all the text.  &lt;/P&gt;&lt;P&gt;4. click on the TEXT (which you want to know the Text id) , then press log ICON (you can find in bottom right of the text window) it looks like a rolled paper.  &lt;/P&gt;&lt;P&gt;5. in the Next window you will find Text Name. Text ID, Language. etc... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mansi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 10:38:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297367#M1221803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T10:38:31Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297368#M1221804</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;It could be possible that the Text that your are seeing in  ME23n is really existing under a different TEXT ID, i.e. the text might be a reference text from another document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As described above, you can find the correct parameters of the TEXT and then use these in READ_TEXT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Ravish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 10:42:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297368#M1221804</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T10:42:41Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297369#M1221805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In me23 the parameters for READ_TEXT are correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ME23 : &lt;/P&gt;&lt;P&gt;573000011500010&lt;/P&gt;&lt;P&gt;IT&lt;/P&gt;&lt;P&gt;F03  &lt;/P&gt;&lt;P&gt;EKPO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same for READ_TEXT but fails when try to extract text, i think that the problem isn't in the code but it is in the customizing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 10:51:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297369#M1221805</guid>
      <dc:creator>former_member302911</dc:creator>
      <dc:date>2009-03-13T10:51:45Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297370#M1221806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can u post ur code?&lt;/P&gt;&lt;P&gt;In ME23N u might be looking english text. Just check whether parameters in ME23N and READ_TEXT are matching or not. Leading zeros also matters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 10:57:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297370#M1221806</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2009-03-13T10:57:25Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297371#M1221807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;

 VA_EBELN = '573000011500010'.
  CALL FUNCTION 'READ_TEXT_INLINE'
       EXPORTING
            ID              = 'F03'
           INLINE_COUNT    =  '1'
            LANGUAGE        = 'I'
            NAME            = VA_EBELN 
            OBJECT          = 'EKPO'
*    IMPORTING
*        HEADER          =
       TABLES
           INLINES         =   TB_LINE
            LINES           =  TB_LINE1
       EXCEPTIONS
            ID              = 1
            LANGUAGE        = 2
            NAME            = 3
            NOT_FOUND       = 4
            OBJECT          = 5
            REFERENCE_CHECK = 6
            OTHERS          = 7.
  IF SY-SUBRC EQ '0'.
    LOOP AT TB_LINE1.
      MOVE TB_LINE1-TDLINE TO TB_TESTO-TDLINE.
      MOVE TB_EKPO-EBELP  TO TB_TESTO-EBELP.
      APPEND TB_TESTO.
    ENDLOOP.
    FREE TB_LINE1.
    CLEAR TB_TESTO.
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've debugged the read text in ME23, and compare with this, the difference is that in ME23 make an  IMPORT CATALOG FROM MEMORY ID 'SAPLSTXD' that not fails.&lt;/P&gt;&lt;P&gt;In the code above this import fails.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 11:08:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297371#M1221807</guid>
      <dc:creator>former_member302911</dc:creator>
      <dc:date>2009-03-13T11:08:25Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297372#M1221808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Did u try the same in SE37???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am thinking that some of the parameters u r passing must be wrong. Just try to compare ME23N=&amp;gt;Select texts tab for that item, Select script editor in drop down list(Option 3) (Bottom side).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Menu=&amp;gt;goto=&amp;gt;Header. Compare if there is any descripency. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can see its working in my system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Also instead of hard coding try to declare variables/constants of same type as FM interface.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 11:26:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297372#M1221808</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2009-03-13T11:26:15Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297373#M1221809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The parameters is correct :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.pchs.it/image-hosting/out.php/i5893_Immagine.JPG" target="test_blank"&gt;http://www.pchs.it/image-hosting/out.php/i5893_Immagine.JPG&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The variables are already declared like type of FM interfaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is a strange problem &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 11:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297373#M1221809</guid>
      <dc:creator>former_member302911</dc:creator>
      <dc:date>2009-03-13T11:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297374#M1221810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In text ID r u passing F03 or FO3?&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;It should be F03(F zero 3). Copy paste all parameters from ME23N into ur code.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you check it carefully? Also just remove hard coding and see. It really don't matter. But still u can give a try. Apart from this i dont see any descrepency.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 11:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297374#M1221810</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2009-03-13T11:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297375#M1221811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Angelo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the language key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check if you have text maintained in the same langauage as you are passing it to FM.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 12:52:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297375#M1221811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T12:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297376#M1221812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For  Vinod Reddy:  Yes, F zero 3 is the same of function.&lt;/P&gt;&lt;P&gt;For  santosh sarda: The language is Italian and the text work in italian language.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The unique difference that i've seen from another PO is this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.pchs.it/image-hosting/out.php/i5903_Immagine3.JPG" target="test_blank"&gt;http://www.pchs.it/image-hosting/out.php/i5903_Immagine3.JPG&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know how to change this status ' * '. Another PO work fine with blank status.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 13:23:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297376#M1221812</guid>
      <dc:creator>former_member302911</dc:creator>
      <dc:date>2009-03-13T13:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297377#M1221813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of FM  read_text_inline , try using READ_TEXT only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 13:27:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297377#M1221813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T13:27:52Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297378#M1221814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is the same, i've tryed using READ_TEXT, however inside READ_TEXT_INLINE there is READ_TEXT .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 13:31:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297378#M1221814</guid>
      <dc:creator>former_member302911</dc:creator>
      <dc:date>2009-03-13T13:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297379#M1221815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the sy-subrc value you are getting after FM execution. try to map it with exception and see where the error is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also test it with another PO so you will come to know if this the problem with that perticular PO only.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 13:37:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297379#M1221815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-13T13:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: FM Read_Text Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297380#M1221816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The sy-subrc exception is refered to NOT_FOUND. I don't know if there is a aparticular PO that have problem with the READ_TEXT, the problem is trange because when i set a breakpoint into READ_TEXT and when I run me23 in debug the READ_TEXT work fine because the CATALOG(Internal Structure) is FILLED from IMPORT CATALOG FROM MEMORY ID 'SAPLSTXD'.&lt;/P&gt;&lt;P&gt;In custom program this don't happen because this IMPORT fail.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2009 13:46:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fm-read-text-problem/m-p/5297380#M1221816</guid>
      <dc:creator>former_member302911</dc:creator>
      <dc:date>2009-03-13T13:46:46Z</dc:date>
    </item>
  </channel>
</rss>

