<?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: replace '0' with blank when using XXL_FULL_API function in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320724#M165289</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;replace '0' with ` ` in itab-col_num.&lt;/P&gt;&lt;P&gt;modify itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;note that the quotes are not the normal quotes but the key above the 'Tab' key in the keyborad.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 May 2006 09:50:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-05-26T09:50:06Z</dc:date>
    <item>
      <title>replace '0' with blank when using XXL_FULL_API function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320721#M165286</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;Can the '0' value be replaced by blank when using XXL_FULL_API to export data to excel ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e.g. &lt;/P&gt;&lt;P&gt;internal table&lt;/P&gt;&lt;P&gt;Col_Str    Col_num&lt;/P&gt;&lt;P&gt;abc             0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;excel &lt;/P&gt;&lt;P&gt;Col_Str    Col_num&lt;/P&gt;&lt;P&gt;abc    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Wilson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 04:34:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320721#M165286</guid>
      <dc:creator>former_member382644</dc:creator>
      <dc:date>2006-05-26T04:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: replace '0' with blank when using XXL_FULL_API function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320722#M165287</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;try:  translate itab using '0 '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 09:38:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320722#M165287</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2006-05-26T09:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: replace '0' with blank when using XXL_FULL_API function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320723#M165288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this  logic  to replace  0 with space  and than pass internal table ......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF itab OCCURS 0,&lt;/P&gt;&lt;P&gt;            str(50),&lt;/P&gt;&lt;P&gt;      END OF itab.&lt;/P&gt;&lt;P&gt;DATA : cha(50) VALUE 'kishan0singh0negi',&lt;/P&gt;&lt;P&gt;       str(2000).&lt;/P&gt;&lt;P&gt;SPLIT cha AT '0' INTO TABLE itab.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt; concatenate str itab-str into str separated by space.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt; write : str.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 09:45:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320723#M165288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T09:45:49Z</dc:date>
    </item>
    <item>
      <title>Re: replace '0' with blank when using XXL_FULL_API function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320724#M165289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;replace '0' with ` ` in itab-col_num.&lt;/P&gt;&lt;P&gt;modify itab.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;note that the quotes are not the normal quotes but the key above the 'Tab' key in the keyborad.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 May 2006 09:50:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320724#M165289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-26T09:50:06Z</dc:date>
    </item>
    <item>
      <title>Re: replace '0' with blank when using XXL_FULL_API function</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320725#M165290</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;it is alrady done by using char type in a new internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Wilson&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 May 2006 14:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/replace-0-with-blank-when-using-xxl-full-api-function/m-p/1320725#M165290</guid>
      <dc:creator>former_member382644</dc:creator>
      <dc:date>2006-05-27T14:25:18Z</dc:date>
    </item>
  </channel>
</rss>

