<?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 header text languages in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721949#M315023</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    How can I print the header text language on the report that exist for a given sales order no.&lt;/P&gt;&lt;P&gt;e.g. for a given 0005500001 sales oder , header text exists in which of the languages. how  can I print it on a report. How can I get that languages field  informantion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please do the needdful&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Nov 2006 13:18:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-15T13:18:58Z</dc:date>
    <item>
      <title>header text languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721949#M315023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    How can I print the header text language on the report that exist for a given sales order no.&lt;/P&gt;&lt;P&gt;e.g. for a given 0005500001 sales oder , header text exists in which of the languages. how  can I print it on a report. How can I get that languages field  informantion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please do the needdful&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 13:18:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721949#M315023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T13:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: header text languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721950#M315024</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;U can do a query on table STXH in order to know the languages and use the fm READ_TEXT to load the text in an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 13:23:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721950#M315024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T13:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: header text languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721951#M315025</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; u can do that using read_text fumction module...&lt;/P&gt;&lt;P&gt; by paasing the following&lt;/P&gt;&lt;P&gt;  data: v_text_id    like thead-tdid value 'ST' ,  "ID LIKE THEAD-TDID&lt;/P&gt;&lt;P&gt;        v_text_name  like thead-tdname,"NAME LIKE THEAD-TDNAME&lt;/P&gt;&lt;P&gt;        v_text_object like thead-tdobject 'TEXT',   "OBJECT LIKE THEAD-TDOBJECT&lt;/P&gt;&lt;P&gt;        v_language   like thead-tdspras.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt; pass ur vblen to v_text_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  refresh: p_text_tab.&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                      = v_text_id&lt;/P&gt;&lt;P&gt;              language                = v_language&lt;/P&gt;&lt;P&gt;              name                    = v_text_name&lt;/P&gt;&lt;P&gt;              object                  = v_text_object&lt;/P&gt;&lt;P&gt;         tables&lt;/P&gt;&lt;P&gt;              lines                   = p_text_tab&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;Madhavi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 13:24:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721951#M315025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T13:24:56Z</dc:date>
    </item>
    <item>
      <title>Re: header text languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721952#M315026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You usually get the HEADER TEXTS using READ_TEXT function module. In this function module, there is a language parameter. Depending on which language you want to print, you pass the appropriate language code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want the print in the same language in which the user has logged in, use the system field SY-LANGU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;Note - Please mark all the helpful ansewrs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 13:25:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721952#M315026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T13:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: header text languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721953#M315027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the FM READ_TEXT to het text for a Order No.&lt;/P&gt;&lt;P&gt;*&amp;amp;-Read the Appropriate text through FM READ_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                      = TEXTID&lt;/P&gt;&lt;P&gt;                language                = sy-langu&lt;/P&gt;&lt;P&gt;                name                    = Order Number&lt;/P&gt;&lt;P&gt;                object                  = Object &lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                lines                   = t_lines&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 13:25:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721953#M315027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T13:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: header text languages</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721954#M315028</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;Double click in text header, then in the screen showed go to menú Goto-&amp;gt;Header, then you will see the Text object, Text ID, Language and text name, that can be passed like parameters in function module READ_TEXT.&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;Alejandro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 13:32:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/header-text-languages/m-p/1721954#M315028</guid>
      <dc:creator>alejandro_lpez</dc:creator>
      <dc:date>2006-11-15T13:32:41Z</dc:date>
    </item>
  </channel>
</rss>

