<?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 for multiple id and multiple languages in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549383#M20735</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;"Declared and selected as below , still doesn`t do nothing

TYPES: BEGIN OF ty_stxl_raw,
clustr TYPE stxl-clustr,
tdid TYPE stxl-tdid,
clustd TYPE stxl-clustd,
END OF ty_stxl_raw,

BEGIN OF ty_stxl,
tdname TYPE stxl-tdname,
tdid TYPE stxl-tdid,
clustr TYPE stxl-clustr,
clustd TYPE stxl-clustd,
END OF ty_stxl.


SELECT l~tdid l~tdname l~clustr l~clustd
INTO CORRESPONDING FIELDS OF TABLE t_stxl
FROM stxl AS l
JOIN stxh AS h
ON h~tdobject = l~tdobject
AND h~tdname = l~tdname
AND h~tdid = l~tdid
FOR ALL ENTRIES in it_cids
WHERE l~relid = 'TX' "standard text
AND h~tdobject = it_cids-cobject
AND h~tdname = it_cids-lTDNAME
AND h~tdid = it_cids-cid
AND l~tdspras = sy-langu.




LOOP AT t_stxl ASSIGNING &amp;lt;stxl&amp;gt;.

   "New text

  AT NEW tdid.

    REFRESH: t_stxl_raw, t_tline.

  ENDAT.

   "&amp;gt; your current code to fill t_stxl_raw goes here

   "End of a text

  AT END OF tdid.

    IMPORT tline = t_tline FROM INTERNAL TABLE t_stxl_raw.

    LOOP AT t_tline ASSIGNING &amp;lt;tline&amp;gt;.

     "&amp;gt; Your current code to add report records goes here

    ENDLOOP.

  ENDAT.

ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 06 Nov 2017 13:17:49 GMT</pubDate>
    <dc:creator>manole_apetroaie</dc:creator>
    <dc:date>2017-11-06T13:17:49Z</dc:date>
    <item>
      <title>read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549369#M20721</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;I have managed to make the READ_TEXT FM work only for one cID at a time on multiple calls of function read_text(for example I found out how to access it for cID = 'GRUN' cObject = 'MATERIAL'. Can anyone advise how to connect read_text function so that inspection text(cID = 'GRUN' cObject = 'MATERIAL') will be dispalyed in my alv grid on the same line with material details? Please see below output when running my program:&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/83812-capture.jpg" /&gt;&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;FORM READTEXT.
  data: it_MVKE type standard table of MVKE initial size 0.
  data: lMVKE like MVKE, lMAKT like MAKT, lT002 like T002 ,
        lTDNAME like THEAD-TDNAME,"text header

        it_TLINE type standard table of TLINE,
        wa_TLINE type TLINE.

  data: cObject(10) type c, cID(4) type c.


  select MATNR from MARA into corresponding fields of table it_MVKE
  where MATNR in Material order by MATNR.
  cID = 'GRUN'. cObject = 'MATERIAL'. "Text date principale "


  loop at it_MVKE into lMVKE.

    lTDNAME = lMVKE-MATNR.

    select spras from T002 into lT002.

      CALL FUNCTION 'READ_TEXT'
        EXPORTING
          CLIENT   = SY-MANDT
          ID       = cID
          LANGUAGE = lT002-SPRAS
          NAME     = lTDNAME
          OBJECT   = cObject
        TABLES
          LINES    = it_TLINE
        EXCEPTIONS
          ID       = 1
          OTHERS   = 8.

      IF SY-SUBRC EQ 0.

        select single * from MAKT into lMAKT where MATNR eq lMVKE-MATNR
         and SPRAS eq lT002-SPRAS.

        LOOP AT it_TLINE INTO wa_TLINE.
          wa_join-TEXTPRI = wa_TLINE-TDLINE.
          append wa_join to lt_join.
          clear wa_join.
        ENDLOOP.
      ENDIF.
    ENDSELECT.
  ENDLOOP.
ENDFORM.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 02 Nov 2017 13:20:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549369#M20721</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-02T13:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549370#M20722</link>
      <description>&lt;P&gt;And which is the problem you are facing?&lt;/P&gt;
  &lt;P&gt;i do not see anything difficult in it, just a really wrong code structure from my point of view.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Nov 2017 16:03:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549370#M20722</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2017-11-02T16:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549371#M20723</link>
      <description>&lt;P&gt;Dear Simone, &lt;/P&gt;
  &lt;P&gt;I need to display in my alv at the same time cID = PRUE ,cID =0001, cID = IVER .At the moment i can make it work only individually.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 06:01:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549371#M20723</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-03T06:01:24Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549372#M20724</link>
      <description>&lt;P&gt;Just call READ_MULTIPLE_TEXTS or call READ_TEXT for each ID, what your exact concern. Have a coffee, walk around the block to clear your head and then get back to coding.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 06:55:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549372#M20724</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-11-03T06:55:05Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549373#M20725</link>
      <description>&lt;P&gt;Hi Raymond, thank you :)). Funny comment too.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 07:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549373#M20725</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-03T07:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549374#M20726</link>
      <description>&lt;P&gt;Hi Raymond , in the mean time i found some other way of doing it as i understand that i cannot do multiple calls on ID. Please find below,trouble is that i get an message error on line : w_stxl_raw-clustr = &amp;lt;stxl&amp;gt;-clustr saying : Fields &amp;lt;STXL&amp;gt;-CLUSTR is unknown. It is neither in one of the specified tables nor defined by a " DATA" statement&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;
 data: it_MVKE type standard table of MVKE initial size 0.

data: lMVKE like MVKE, lMAKT like MAKT, lT002 like T002,

 lTDNAME like THEAD-TDNAME,

 it_TLINE type standard table of TLINE,

 wa_TLINE type TLINE, lText type string.



types: begin of i_Report,

        MATNR(18) type c,

        MAKTX like MAKT-MAKTX,

        VKORG(5) type c,

        VTWEG(5) type c,

        SPRAS(2) type c,

        Text type string,

       end of i_Report.



data: wa_Report type i_Report,

      it_Report type standard table of i_Report initial size 0.

data: cID(4) type c, cObject(10) type c.



types: begin of cids,

         cid(4)      type c,

         cobject(10) type c,

         lTDNAME(70) TYPE c,

       end of cids.



data: wa_cids type cids.

data: it_cids type standard table of cids.



TYPES: BEGIN OF ty_stxl_raw,

        clustr TYPE stxl-clustr,

        clustd TYPE stxl-clustd,

       END OF ty_stxl_raw,



       BEGIN OF ty_stxl,

        tdname TYPE stxl-tdname,

        clustr TYPE stxl-clustr,

        clustd TYPE stxl-clustd,

       END OF ty_stxl.



DATA:  t_stxl_raw TYPE STANDARD TABLE OF ty_stxl_raw,

       t_stxl     TYPE TABLE OF ty_stxl,

       w_stxl_raw TYPE ty_stxl_raw.



DATA:  t_tline TYPE STANDARD TABLE OF tline.

FIELD-SYMBOLS: &amp;lt;tline&amp;gt; TYPE tline,

              &amp;lt;stxl&amp;gt; LIKE LINE OF t_stxl.



wa_cids-cid = 'GRUN'.

wa_cids-cobject = 'MATERIAL'.

append wa_cids to it_cids.



if cID = '0001'.

 concatenate lMVKE-MATNR lMVKE-VKORG lMVKE-VTWEG into wa_cids-lTDNAME.

else.

 lTDNAME = lMVKE-MATNR.

endif.

append wa_cids to it_cids.



SELECT l~tdname l~clustr l~clustd

 INTO CORRESPONDING FIELDS OF TABLE t_stxl

 FROM stxl AS l

 JOIN stxh AS h

  ON h~tdobject = l~tdobject

   AND h~tdname   = l~tdname

   AND h~tdid     = l~tdid

   FOR ALL ENTRIES in it_cids

 WHERE l~relid    = 'TX'          "standard text

   AND h~tdobject = it_cids-cobject

   AND h~tdname   = it_cids-lTDNAME

   AND h~tdid     = it_cids-cid

   AND l~tdspras  = sy-langu.



LOOP AT t_stxl ASSIGNING &amp;lt;stxl&amp;gt;.





  CLEAR: t_stxl_raw[], t_tline[].

w_stxl_raw-clustr = &amp;lt;stxl&amp;gt;-clustr.

w_stxl_raw-clustd = &amp;lt;stxl&amp;gt;-clustd.

APPEND w_stxl_raw TO t_stxl_raw.

IMPORT tline = t_tline FROM INTERNAL TABLE t_stxl_raw.





LOOP AT t_tline ASSIGNING &amp;lt;tline&amp;gt;.

 wa_Report-TEXT = &amp;lt;tline&amp;gt;-TDLINE.

append wa_Report to it_Report.

ENDLOOP.

  ENDLOOP.



  ENDFORM.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 03 Nov 2017 13:16:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549374#M20726</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-03T13:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549375#M20727</link>
      <description>&lt;P&gt;The code is rather unreadable, sorry (could you possibly change formatting?). But I don't see &amp;lt;stxl&amp;gt; assigned, so could that be a problem?&lt;/P&gt;</description>
      <pubDate>Fri, 03 Nov 2017 16:51:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549375#M20727</guid>
      <dc:creator>Jelena_Perfiljeva</dc:creator>
      <dc:date>2017-11-03T16:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549376#M20728</link>
      <description>&lt;P&gt;You forgot the LOOP AT t_stxl/ENDLOOP. Also use the Code option to add code in your post, post unformated code in the generated box.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 06:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549376#M20728</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-11-06T06:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549377#M20729</link>
      <description>&lt;P&gt;Dear Jelena,&lt;/P&gt;
  &lt;P&gt;Thank you for your answer.You were right i didn`t declared &amp;lt;stxl&amp;gt; . i have declared it now and i don`t get any errors but my program doesn`t do what is expected regarding this function.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 07:14:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549377#M20729</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-06T07:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549378#M20730</link>
      <description>&lt;P&gt;And where is the problem?&lt;BR /&gt;Loop - Read_text- append -endloop.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 09:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549378#M20730</guid>
      <dc:creator>SimoneMilesi</dc:creator>
      <dc:date>2017-11-06T09:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549379#M20731</link>
      <description>&lt;P&gt;I have , please see below:&lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;LOOP AT t_stxl ASSIGNING &amp;lt;stxl&amp;gt;.

  CLEAR: t_stxl_raw[], t_tline[].

w_stxl_raw-clustr = &amp;lt;stxl&amp;gt;-clustr.

w_stxl_raw-clustd = &amp;lt;stxl&amp;gt;-clustd.

APPEND w_stxl_raw TO t_stxl_raw.

IMPORT tline = t_tline FROM INTERNAL TABLE t_stxl_raw.

LOOP AT t_tline ASSIGNING &amp;lt;tline&amp;gt;.

 wa_Report-TEXT = &amp;lt;tline&amp;gt;-TDLINE.

append wa_Report to it_Report.

ENDLOOP.

  ENDLOOP.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Nov 2017 10:07:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549379#M20731</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-06T10:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549380#M20732</link>
      <description>&lt;P&gt;(your posted source is hardly readable...)&lt;/P&gt;
  &lt;P&gt;You cannot use the import TLINE with two mixed set of lines, the IMPORT should be in the LOOP in a AT END OF step, internal table refreshed in the AT NEW) &lt;/P&gt;
  &lt;PRE&gt;&lt;CODE&gt;LOOP AT t_stxl ASSIGNING &amp;lt;stxl&amp;gt;.
  " New text
  AT NEW tdid.
    REFRESH: t_stxl_raw, t_tline.
  ENDAT.  
  " &amp;gt; your current code to fill t_stxl_raw goes here
  " End of a text
  AT END OF tdid.
    IMPORT tline = t_tline FROM INTERNAL TABLE t_stxl_raw.
    LOOP AT t_tline ASSIGNING &amp;lt;tline&amp;gt;.
    " &amp;gt; Your current code to add report records goes here    
    ENDLOOP.
  ENDAT.
ENDLOOP.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Nov 2017 12:39:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549380#M20732</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-11-06T12:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549381#M20733</link>
      <description>&lt;P&gt;Hi Raymond,&lt;/P&gt;
  &lt;P&gt;Thank you , i`ve made the modifications advised and i get the error: "No component exists with the name "TDID"."&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 12:51:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549381#M20733</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-06T12:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549382#M20734</link>
      <description>&lt;P&gt;Add this field to your local TYPES definition for stxl data and in the SELECT FROM stxl statement too of course.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 12:53:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549382#M20734</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-11-06T12:53:25Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549383#M20735</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;"Declared and selected as below , still doesn`t do nothing

TYPES: BEGIN OF ty_stxl_raw,
clustr TYPE stxl-clustr,
tdid TYPE stxl-tdid,
clustd TYPE stxl-clustd,
END OF ty_stxl_raw,

BEGIN OF ty_stxl,
tdname TYPE stxl-tdname,
tdid TYPE stxl-tdid,
clustr TYPE stxl-clustr,
clustd TYPE stxl-clustd,
END OF ty_stxl.


SELECT l~tdid l~tdname l~clustr l~clustd
INTO CORRESPONDING FIELDS OF TABLE t_stxl
FROM stxl AS l
JOIN stxh AS h
ON h~tdobject = l~tdobject
AND h~tdname = l~tdname
AND h~tdid = l~tdid
FOR ALL ENTRIES in it_cids
WHERE l~relid = 'TX' "standard text
AND h~tdobject = it_cids-cobject
AND h~tdname = it_cids-lTDNAME
AND h~tdid = it_cids-cid
AND l~tdspras = sy-langu.




LOOP AT t_stxl ASSIGNING &amp;lt;stxl&amp;gt;.

   "New text

  AT NEW tdid.

    REFRESH: t_stxl_raw, t_tline.

  ENDAT.

   "&amp;gt; your current code to fill t_stxl_raw goes here

   "End of a text

  AT END OF tdid.

    IMPORT tline = t_tline FROM INTERNAL TABLE t_stxl_raw.

    LOOP AT t_tline ASSIGNING &amp;lt;tline&amp;gt;.

     "&amp;gt; Your current code to add report records goes here

    ENDLOOP.

  ENDAT.

ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Nov 2017 13:17:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549383#M20735</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-06T13:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549384#M20736</link>
      <description>&lt;P&gt;Pls remove tid from ty_syxl_raw, and (...) paste the correct parts of your previous code to replace my 'Your current code to...goes here' comment.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 13:29:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549384#M20736</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-11-06T13:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549385#M20737</link>
      <description>&lt;P&gt;Hi Giuseppi,&lt;/P&gt;
  &lt;P&gt;I am confused , at the beginning i wanted to use read_text, then i searched for READ_MULTIPLE_TEXTS .Now i found this partial code on which i am confused. Please tell me what do you mean by :1 .Your current code to add report records goes here and&lt;/P&gt;
  &lt;P&gt; 2:Your current code to add report records goes here. Sorry to be a pain:(&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 13:47:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549385#M20737</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-06T13:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549386#M20738</link>
      <description>&lt;P&gt;You copy in those place the code you used to fill the internal tables in your initial versions. (1) the code to fill the t_styxl_raw table from stxl data (2) the code to add record to it_report from t_tline data.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 13:52:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549386#M20738</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2017-11-06T13:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549387#M20739</link>
      <description>&lt;P&gt;Hi, i think is like this,but it doesn`t show up nothing on screen,thank you :&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;LOOP AT t_stxl ASSIGNING &amp;lt;stxl&amp;gt;.

*   New text

  AT NEW tdid.

    REFRESH: t_stxl_raw, t_tline.

  ENDAT.
  CLEAR: t_stxl_raw[], t_tline[].
  w_stxl_raw-clustr = &amp;lt;stxl&amp;gt;-clustr.

  w_stxl_raw-clustd = &amp;lt;stxl&amp;gt;-clustd.

APPEND w_stxl_raw TO t_stxl_raw.

*  End of a text

  AT END OF tdid.

    IMPORT tline = t_tline FROM INTERNAL TABLE t_stxl_raw.

    LOOP AT t_tline ASSIGNING &amp;lt;tline&amp;gt;.

*     &amp;gt; Your current code to add report records goes here

       wa_Report-TEXT = &amp;lt;tline&amp;gt;-TDLINE.

      append wa_Report to it_Report.

    ENDLOOP.

  ENDAT.

ENDLOOP.&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 06 Nov 2017 13:53:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549387#M20739</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-06T13:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: read_text function for multiple id and multiple languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549388#M20740</link>
      <description>&lt;P&gt;Hi, like below?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Nov 2017 14:17:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-text-function-for-multiple-id-and-multiple-languages/m-p/549388#M20740</guid>
      <dc:creator>manole_apetroaie</dc:creator>
      <dc:date>2017-11-06T14:17:47Z</dc:date>
    </item>
  </channel>
</rss>

