<?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: Backup text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/backup-text/m-p/2099777#M437583</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;read_text, this functiom modul used for  standard texts like text symbols. or by using tcode so10.&lt;/P&gt;&lt;P&gt; praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Apr 2007 09:19:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-16T09:19:50Z</dc:date>
    <item>
      <title>Backup text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/backup-text/m-p/2099776#M437582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;i need to backup texts from table stxl (data cluster) and i am using read_text to get an internal table. The texts are word documents (doc) and i need to export them to a file in a pc.&lt;/P&gt;&lt;P&gt;Now i am using read_text to get the text (in a tline table) and gui_download (with the tline table) to download the file to the pc. But it doesn´t work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas? Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:15:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/backup-text/m-p/2099776#M437582</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T09:15:53Z</dc:date>
    </item>
    <item>
      <title>Re: Backup text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/backup-text/m-p/2099777#M437583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;read_text, this functiom modul used for  standard texts like text symbols. or by using tcode so10.&lt;/P&gt;&lt;P&gt; praveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2007 09:19:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/backup-text/m-p/2099777#M437583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-16T09:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: Backup text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/backup-text/m-p/2099778#M437584</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 search for a word through all standard texts in system? My client wants to find out all the standard texts containing the name of a person. Please urgent!!!&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 12:28:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/backup-text/m-p/2099778#M437584</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T12:28:21Z</dc:date>
    </item>
    <item>
      <title>Re: Backup text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/backup-text/m-p/2099779#M437585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the code below was the solution:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;REPORT Z_SEEK_STANDARDTEXTE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_sttxt like stxh-tdname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of t_stxh occurs 0,&lt;/P&gt;&lt;P&gt;   tdname like stxh-tdname,&lt;/P&gt;&lt;P&gt;   tdspras like stxh-tdspras,&lt;/P&gt;&lt;P&gt;   tdid like stxh-tdid,&lt;/P&gt;&lt;P&gt;  end of t_stxh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data t_lines like tline occurs 0 with header line.&lt;/P&gt;&lt;P&gt;select tdname tdspras tdid from stxh into table t_stxh&lt;/P&gt;&lt;P&gt;                         where tdobject = 'TEXT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at t_stxh.&lt;/P&gt;&lt;P&gt;  refresh t_lines.&lt;/P&gt;&lt;P&gt;  call function 'READ_TEXT'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLIENT                        = SY-MANDT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      id                            = t_stxh-tdid&lt;/P&gt;&lt;P&gt;      language                      = t_stxh-tdspras&lt;/P&gt;&lt;P&gt;      name                          = t_stxh-tdname&lt;/P&gt;&lt;P&gt;      object                        = 'TEXT'&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                            = 0&lt;/P&gt;&lt;P&gt;     language                      = 0&lt;/P&gt;&lt;P&gt;     name                          = 0&lt;/P&gt;&lt;P&gt;     not_found                     = 0&lt;/P&gt;&lt;P&gt;     object                        = 0&lt;/P&gt;&lt;P&gt;     reference_check               = 0&lt;/P&gt;&lt;P&gt;     wrong_access_to_archive       = 0&lt;/P&gt;&lt;P&gt;     others                        = 0 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  search t_lines for p_sttxt.&lt;/P&gt;&lt;P&gt;  if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;    write:/ t_stxh-tdname, t_stxh-tdid, t_stxh-tdspras.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Apr 2007 14:57:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/backup-text/m-p/2099779#M437585</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-25T14:57:21Z</dc:date>
    </item>
  </channel>
</rss>

