<?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: Issue When moving Dates in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907596#M937035</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in internal table change field dats type to char type , then it wil not display zero..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ankesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jun 2008 06:33:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-06T06:33:34Z</dc:date>
    <item>
      <title>Issue When moving Dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907595#M937034</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;I am selecting dates from a Database table and moving it to an internal table, When values are present in DB table it copies it correctly whereas when there is no value in DB table a Zero gets stored in the internal table and gets subsequently printed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to avoid this issue and i want only blanks  in the internal table when the value in DB is not filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Rgrds,&lt;/P&gt;&lt;P&gt;Ken&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 06:32:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907595#M937034</guid>
      <dc:creator>former_member216668</dc:creator>
      <dc:date>2008-06-06T06:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: Issue When moving Dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907596#M937035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in internal table change field dats type to char type , then it wil not display zero..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ankesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 06:33:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907596#M937035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T06:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Issue When moving Dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907597#M937036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data dt type sy-datum.&lt;/P&gt;&lt;P&gt;dt = sy-datum.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; dt.&lt;/P&gt;&lt;P&gt;clear dt.&lt;/P&gt;&lt;P&gt;if dt is initial.&lt;/P&gt;&lt;P&gt;dt = space.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; dt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;does that help???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 06:34:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907597#M937036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T06:34:02Z</dc:date>
    </item>
    <item>
      <title>Re: Issue When moving Dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907598#M937037</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;   As ur variable is in date format its displaying Zeros when there is no data in DB.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  By declaring the variable as string r char you can avoid this Zero (or)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  fetch all the data as u need in Tab and Loop the Itab for date = 0 and replace 0 to Blank space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if its useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagulan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 06:35:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907598#M937037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T06:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: Issue When moving Dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907599#M937038</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;Write ur date field to a character type field of the same length as follows&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lv_date(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE itab-date to lv_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 06:38:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907599#M937038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T06:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Issue When moving Dates</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907600#M937039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ken,&lt;/P&gt;&lt;P&gt;Did the answers help you to solve the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not quote the problem.&lt;/P&gt;&lt;P&gt;If yes, close the thread..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 07:10:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-when-moving-dates/m-p/3907600#M937039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T07:10:44Z</dc:date>
    </item>
  </channel>
</rss>

