<?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: Re: READ_TEXT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572616#M258498</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;find out the TextID then check thru FM ,have u maintained the data in the server where u are testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check tcode SE75 for text Id list&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Sep 2006 09:41:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-29T09:41:49Z</dc:date>
    <item>
      <title>Re: READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572615#M258497</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;We hav a scenario that to retrevie the extended basic text of a material posted in the Transaction MM03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We searched in the tables STXH &amp;amp; STXL using READ_TEXT Function Module but still we are unable to find the Additional text defined for that particular material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea where will it be stored n how can it be retrevied.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If someone has faced similar scenario pls suggest us the solution to retrevie the additional text of tht particular material&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suggestions and Help will be much appreciated.&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;Ramesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 06:58:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572615#M258497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T06:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Re: READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572616#M258498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;find out the TextID then check thru FM ,have u maintained the data in the server where u are testing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check tcode SE75 for text Id list&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 09:41:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572616#M258498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T09:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Re: READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572617#M258499</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;You can retrieve the corresponding text using read text FM.In the READ_TEXT FM pass your correspong name and ID import parameters. to this function module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: tline.&lt;/P&gt;&lt;P&gt;data :  gt_welcome type table of  tline.&lt;/P&gt;&lt;P&gt;data : Xhead type thead.&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;      id                      = 'ST'&lt;/P&gt;&lt;P&gt;      language                = sy-langu&lt;/P&gt;&lt;P&gt;      name                    = 'ZSM_EMPLOYEE_WELCOME'&lt;/P&gt;&lt;P&gt;      object                  = 'TEXT'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      lines                   = gt_welcome&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;Please assign points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Aashish Garg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 10:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572617#M258499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T10:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Re: READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572618#M258500</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;  For determining the parameters, you can do that by going to the editor of the text. Use menupath Goto-&amp;gt;Header. Here we can find the Text-ID, Text Object and how textname is stored. Pass these parameters to FM: READ_TEXT to extract the text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Note that material number has to be prefixed with '0' incase of numerical values. For doing so, use FM: CONVERSION_EXIT_ALPHA_OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_OUTPUT'
  EXPORTING
    INPUT         = itab-matnr
 IMPORTING
   OUTPUT        = itab-matnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Hope the above info helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 10:27:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572618#M258500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T10:27:38Z</dc:date>
    </item>
    <item>
      <title>Re: Re: READ_TEXT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572619#M258501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ramesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please try this, might be heipful to you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ_TEXT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import Parameters            Value     &lt;/P&gt;&lt;P&gt; CLIENT                      800       &lt;/P&gt;&lt;P&gt; ID                          GRUN      &lt;/P&gt;&lt;P&gt; LANGUAGE                    EN        &lt;/P&gt;&lt;P&gt; NAME                        100-100(ur mat number)   &lt;/P&gt;&lt;P&gt; OBJECT                      MATERIAL  &lt;/P&gt;&lt;P&gt; ARCHIVE_HANDLE              0         &lt;/P&gt;&lt;P&gt; LOCAL_CAT                                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishveshwara.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Sep 2006 11:08:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-read-text/m-p/1572619#M258501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-29T11:08:50Z</dc:date>
    </item>
  </channel>
</rss>

