<?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: Adding Filter to use Unix command in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-filter-to-use-unix-command/m-p/1239423#M141693</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;See &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3d01358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3d01358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also see a sample program using filters at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.kabai.com/abaps/z04.htm" target="test_blank"&gt;http://www.kabai.com/abaps/z04.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Wenceslaus.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Mar 2006 02:57:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-03T02:57:30Z</dc:date>
    <item>
      <title>Adding Filter to use Unix command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-filter-to-use-unix-command/m-p/1239422#M141692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where I can get the information about adding the filters for using the Unix commands.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have seen the following Filter to use to unix command in one program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: open dataset &amp;lt;dsn&amp;gt; for input in text mode filter &amp;lt;b&amp;gt;'dos2ux'&amp;lt;/b&amp;gt;.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here "dos2ux" is a filter Unix command they used in that program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 23:32:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-filter-to-use-unix-command/m-p/1239422#M141692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T23:32:05Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Filter to use Unix command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-filter-to-use-unix-command/m-p/1239423#M141693</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;See &lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3d01358411d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3d01358411d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also see a sample program using filters at:&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.kabai.com/abaps/z04.htm" target="test_blank"&gt;http://www.kabai.com/abaps/z04.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Wenceslaus.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 02:57:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-filter-to-use-unix-command/m-p/1239423#M141693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T02:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Filter to use Unix command</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-filter-to-use-unix-command/m-p/1239424#M141694</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 execute an operating system command in the OPEN DATASET statement using the FILTER addition: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following example works under UNIX: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA DSN(20) VALUE '/usr/test.Z'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET DSN FOR OUTPUT FILTER 'compress'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET DSN FOR INPUT FILTER 'uncompress'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The first OPEN statement opens the file &amp;#145;/usr/test.Z&amp;#146; so that the displayed data can be read into it in compressed form. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second OPEN statement opens the file &amp;#145;/usr/test.Z&amp;#146; so that the data is decompressed when it is read from the file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;austin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 05:12:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-filter-to-use-unix-command/m-p/1239424#M141694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T05:12:24Z</dc:date>
    </item>
  </channel>
</rss>

