<?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 read rtf from dataset in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868884#M929847</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do have a rtf file stored on dataset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to read the rtf file and replace some tags within the file...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I should I read the file so that the content of the internal table is understandable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thkx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 May 2008 13:27:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-09T13:27:24Z</dc:date>
    <item>
      <title>read rtf from dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868884#M929847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I do have a rtf file stored on dataset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to read the rtf file and replace some tags within the file...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I should I read the file so that the content of the internal table is understandable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thkx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 May 2008 13:27:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868884#M929847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-09T13:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: read rtf from dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868885#M929848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No body can help me ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 09:34:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868885#M929848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T09:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: read rtf from dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868886#M929849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use open dataset,Read dataset, write dataset and close dataset to do the canges in your rtf file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am sending one example below:&lt;/P&gt;&lt;P&gt;DATA :&lt;/P&gt;&lt;P&gt;  w_fname(60) TYPE c VALUE 'yh1059_bkpf.rtf'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  OPEN DATASET w_fname FOR INPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    DO.&lt;/P&gt;&lt;P&gt;      READ DATASET w_fname INTO fs_bkpf.&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        APPEND fs_bkpf TO t_bkpf.&lt;/P&gt;&lt;P&gt;      ENDIF.                           " IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    ENDDO.                             " Do&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    WRITE sy-subrc.&lt;/P&gt;&lt;P&gt;  ENDIF.                               " IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CLOSE DATASET w_fname.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 09:50:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868886#M929849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T09:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: read rtf from dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868887#M929850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi go to the tcode &lt;STRONG&gt;cg3y&lt;/STRONG&gt; give the file name ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 09:58:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868887#M929850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T09:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: read rtf from dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868888#M929851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;open dataset&lt;/P&gt;&lt;P&gt;read &amp;lt;filename&amp;gt; into wa.&lt;/P&gt;&lt;P&gt;this wa shud have jus 1 field of string&lt;/P&gt;&lt;P&gt;then use split to manipulate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 10:05:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-rtf-from-dataset/m-p/3868888#M929851</guid>
      <dc:creator>manubhutani</dc:creator>
      <dc:date>2008-05-13T10:05:23Z</dc:date>
    </item>
  </channel>
</rss>

