<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316453#M1028772</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;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5895498"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Aug 2008 10:57:08 GMT</pubDate>
    <dc:creator>bpawanchand</dc:creator>
    <dc:date>2008-08-26T10:57:08Z</dc:date>
    <item>
      <title>read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316450#M1028769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guyz,&lt;/P&gt;&lt;P&gt;at the moment text for material has been pickedup from  mara-maktx and its only priting 40 characters(in sapscript) .. now to make it more meaningful  i wanted to make it 80 characters to print on the list ..guessing  i have to use function module 'Read_text' ..but ive got no idea how to use it...plz advise..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 10:53:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316450#M1028769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T10:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316451#M1028770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think this function module has probably been mentioned a couple of times before. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;YOU MAY WANT TO CLICK THE SEARCH BUTTON FIRST.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 10:55:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316451#M1028770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T10:55:25Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316452#M1028771</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;&lt;/P&gt;&lt;P&gt;*--Call to the Function Module For geting the longtext of sales text&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          id                      = '0001'&lt;/P&gt;&lt;P&gt;          language                = 'E'&lt;/P&gt;&lt;P&gt;          name                    = v_name&lt;/P&gt;&lt;P&gt;          object                  = 'MVKE'&lt;/P&gt;&lt;P&gt;        TABLES&lt;/P&gt;&lt;P&gt;          lines                   = i_line&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;&lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;        READ TABLE i_line INDEX 1.&lt;/P&gt;&lt;P&gt;        MOVE : wa_readtext-matnr TO wa_longtext-matnr,&lt;/P&gt;&lt;P&gt;               i_line-tdline TO wa_longtext-tdline.&lt;/P&gt;&lt;P&gt;        APPEND wa_longtext TO  i_longtext.&lt;/P&gt;&lt;P&gt;        CLEAR  wa_longtext.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This fm Is used to fetch the long text. For this u have to pass the name , object and id.For the above function module . Iam fetching the long text maintain in the sales in the material master&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 10:56:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316452#M1028771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T10:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316453#M1028772</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;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5895498"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 10:57:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316453#M1028772</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2008-08-26T10:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316454#M1028773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Check this sample code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
REPORT  z_test1.

TABLES:
  thead.

PARAMETERS:
  p_vbeln TYPE vbak-vbeln.

PARAMETERS:
  p_textid TYPE thead-tdid.

DATA:
  BEGIN OF t_thead OCCURS 0.
        INCLUDE STRUCTURE thead.
DATA:
END OF t_thead.
DATA:
  w_line TYPE i,
  w_idx TYPE i,
  w_flag TYPE i.
DATA:
  BEGIN OF t_tline OCCURS 0.
        INCLUDE STRUCTURE tline.
DATA:
END OF t_tline.

DATA:
  w_test TYPE thead-tdname,
  w_temp TYPE string VALUE 'FIRST ASSIGNMENT'.


START-OF-SELECTION.
  w_test = p_vbeln.

  CALL FUNCTION 'READ_TEXT'
    EXPORTING
      client                  = sy-mandt
      id                      = p_textid
      language                = sy-langu
      name                    = w_test
      object                  = 'VBBK'
    TABLES
      lines                   = t_tline
    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.
    t_tline-tdline = w_temp.
    APPEND t_tline.
  ENDIF.


END-OF-SELECTION.

  LOOP AT t_tline.
    IF t_tline-tdline = w_temp.
      w_flag = 1.
    ENDIF.
  ENDLOOP.



  IF w_flag NE 1.
    t_tline-tdline = w_temp.
    APPEND t_tline.
  ENDIF.

  REFRESH t_thead.
  t_thead-tdobject = 'VBBK'.
  t_thead-tdname = w_test.
  t_thead-tdid =   p_textid.
  t_thead-tdspras = sy-langu.
  APPEND t_thead.

  CALL FUNCTION 'SAVE_TEXT'
    EXPORTING
      client          = sy-mandt
      header          = t_thead
      savemode_direct = 'X'
    TABLES
      lines           = t_tline
    EXCEPTIONS
      id              = 1
      language        = 2
      name            = 3
      object          = 4.

  IF sy-subrc NE 0.
    WRITE: / 'ERROR'.
  ELSE.
    COMMIT WORK.
    WRITE: / 'TEXT SAVED'.
  ENDIF.


  LOOP AT t_tline.
    WRITE: / t_tline-tdline.
  ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhijeet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 10:57:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316454#M1028773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T10:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316455#M1028774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to the transaction from where you want to read the text from. Display the text and via the menu you can find the data you need to retrieve the text via FM READ_TEXT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 10:58:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316455#M1028774</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-08-26T10:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316456#M1028775</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;Check this sample code.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After completion of call transaction syntax or BAPI run....&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;lt_tline-tdformat = ''.
  lt_tline-tdline = long_text.       &amp;lt;----variable with long text
  append lt_tline.
  clear lt_tline.

  ls_thead-tdobject   = &amp;lt;give object name here&amp;gt;.
  ls_thead-tdid       = &amp;lt;give input&amp;gt;.
  ls_thead-tdspras    = sy-langu.
  ls_thead-tdname      = &amp;lt;generated number or something&amp;gt;.

  perform read_txt changing ls_thead lt_tline[].
  if sy-subrc &amp;lt;&amp;gt; 0.
    perform save_txt using ls_thead lt_tline[].
  endif.

endform.                    " save_lng_text
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  read_txt
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;THEAD      text
*      --&amp;gt;TLINE      text
*----------------------------------------------------------------------*
form read_txt  changing thead   type thead
                         tline   type standard table.
  call function 'READ_TEXT'
    exporting
      client                  = sy-mandt
      id                      = thead-tdid
      language                = thead-tdspras
      name                    = thead-tdname
      object                  = thead-tdobject
    importing
      header                  = thead
    tables
      lines                   = tline
    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.
endform.                    " read_text
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  save_text
*&amp;amp;---------------------------------------------------------------------*
form save_txt  using    thead   type thead
                         tline   type standard table.

  call function 'SAVE_TEXT'
    exporting
*     CLIENT                = SY-MANDT
      header                = thead
      savemode_direct       = 'X'
    tables
      lines                 = tline
   exceptions
     id                    = 1
     language              = 2
     name                  = 3
     object                = 4
     others                = 5
            .
  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.
  else.
    commit work.
  endif.

endform.                    " save_text&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.i&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 10:59:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316456#M1028775</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-26T10:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316457#M1028776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ähm well, the dataelement of mara-maktx is of type character with length 40.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats why it´s called material short text.&lt;/P&gt;&lt;P&gt;you can/should not change its size.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i expect you want to use the material maindata text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;therefor the usage is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  CALL FUNCTION 'READ_TEXT'
      EXPORTING
        id                      = 'GRUN'
        language                = sy-langu
        name                    = lv_matnr "the materialnumber of the material whichs maindatatext 
                                                    "you want to read.
        object                  = 'MATERIAL'
      TABLES
        lines                   = gt_tline
      EXCEPTIONS
        id                      = 1
        language                = 2
        name                    = 3
        not_found               = 4
        object                  = 5
        reference_check         = 6
        wrong_access_to_archive = 7
        OTHERS                  = 8.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 11:00:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316457#M1028776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T11:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316458#M1028777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use READ_TEXT Function Module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the Example for fetching the Material Text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:v_matexn TYPE thead-tdname,&lt;/P&gt;&lt;P&gt;v_str TYPE i,&lt;/P&gt;&lt;P&gt;v_count TYPE i,&lt;/P&gt;&lt;P&gt;V_SPACE TYPE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF v_mat CA sy-abcde.&lt;/P&gt;&lt;P&gt;v_str = STRLEN( v_mat ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;v_count = 18 - v_str.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE wa_vbrk-vkorg wa_vbrk-vtweg INTO V_SPACE.&lt;/P&gt;&lt;P&gt;SHIFT V_SPACE RIGHT BY V_COUNT PLACES.&lt;/P&gt;&lt;P&gt;CONCATENATE V_MAT V_SPACE INTO V_MATEXN.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CONCATENATE v_mat wa_vbrk-vkorg wa_vbrk-vtweg INTO v_matexn.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'READ_TEXT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;client                  = sy-mandt&lt;/P&gt;&lt;P&gt;id                      = '0001'&lt;/P&gt;&lt;P&gt;language                = 'E'&lt;/P&gt;&lt;P&gt;name                    = v_matexn&lt;/P&gt;&lt;P&gt;object                  = 'MVKE'&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;lines                   = i_mat_txt&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;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop through i_mat_txt and print tdline.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 11:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316458#M1028777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T11:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316459#M1028778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi There,&lt;/P&gt;&lt;P&gt;Thanks for ur reply...iz ID always 0001 , wot will be value of v_name..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 11:02:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316459#M1028778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T11:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316460#M1028779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you double click on the text area and then choose go to header from the menu on top you will get text id and other details.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 11:04:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316460#M1028779</guid>
      <dc:creator>Azeemquadri</dc:creator>
      <dc:date>2008-08-26T11:04:24Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316461#M1028780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to go to mm03 and check the ID there. and coming to the V_name , it is the material&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 11:05:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316461#M1028780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T11:05:03Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316462#M1028781</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;iam in mm03 and i cant see any ids there...wot id mean?&lt;/P&gt;&lt;P&gt;and secondly where abouts iis text area?&lt;/P&gt;&lt;P&gt;plz advise..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 11:25:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316462#M1028781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T11:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: read_text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316463#M1028782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;Text Name      000000000000000637 (18 chars material)
Language        EN or sy-langu
Text ID           GRUN    "Basic data text   
Text Object     MATERIAL   "Material texts

"There are TextIDs  : BEST , GRUN, or IVER  

Plant level

Textname     (18 chars material) + PLANT
Language      EN or sy-langu
Text ID          LTXT
Text Object   MDTXT

Sales Text

Textname     (18 chars material) + SalesOrg+Dist.Chanel
Language      EN or sy-langu
Text ID          0001
Text Object   MVKE&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Aug 2008 11:40:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text/m-p/4316463#M1028782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-26T11:40:40Z</dc:date>
    </item>
  </channel>
</rss>

