<?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: table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799887#M40792</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if You use a numeric data-type of course zero is valid!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A solution is, to use a character data-type-field and &lt;/P&gt;&lt;P&gt;write the bumeric value into it using NO-ZERO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: gn_value to gt_tabcntrl-svalue no-zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, i strongly suggest to supress all the&lt;/P&gt;&lt;P&gt;calculate icons using the exlude-tab!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jun 2004 05:27:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2004-06-29T05:27:10Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799882#M40787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i'm using table control. my element is numeric. my problem is i don't want to diplay the 0.00 on the screen on display mode. it does suppress it on change mode. could someone please help. thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Jun 2004 18:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799882#M40787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-06-24T18:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799883#M40788</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;If I have understood your problem correctly, you can hide a table element by looping through the table control and setting cols-invisible to 'X'. Try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: wa_cols type cxtab-column.&lt;/P&gt;&lt;P&gt;controls: tc_a type tableview using screen xxx.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;tc_a is the table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;loop at tc_a-cols into wa_cols.&lt;/P&gt;&lt;P&gt;check wa_cols-screen-name = tc_a-element_to_be_hidden.&lt;/P&gt;&lt;P&gt;wa_cols-invisible = 'X'.&lt;/P&gt;&lt;P&gt;modify tc_a-cols from wa_cols&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2004 09:08:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799883#M40788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-06-28T09:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799884#M40789</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;Kevin, I think you misunderstood the problem. The problem is not to hide a field.&lt;/P&gt;&lt;P&gt;In an SAP screen's display mode if the field type is numeric (numc, dec or int) and if it has the initial value, a "0" or "0,0..." is displayed in the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It really disturbs and I do not know a solution for this. May there be some reason which we cannot think of about this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2004 17:40:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799884#M40789</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2004-06-28T17:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799885#M40790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with Kevin, Standard functionality will always place the "0" into the field in display mode. I believe its part of the gui, and that there is no way to change this behavior.  You can get around that by "hiding" the field if the contents are = 0 as Kevin has suggested.&lt;/P&gt;&lt;P&gt;Good thinking Kevin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2004 21:01:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799885#M40790</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2004-06-28T21:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799886#M40791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you don't want to have the field displayed 0.00 or 0 on screen, have a screen field with CHAR or NUMC and pass the field values to this field...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Surgi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Jun 2004 23:26:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799886#M40791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-06-28T23:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799887#M40792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if You use a numeric data-type of course zero is valid!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A solution is, to use a character data-type-field and &lt;/P&gt;&lt;P&gt;write the bumeric value into it using NO-ZERO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: gn_value to gt_tabcntrl-svalue no-zero.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, i strongly suggest to supress all the&lt;/P&gt;&lt;P&gt;calculate icons using the exlude-tab!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2004 05:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799887#M40792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-06-29T05:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799888#M40793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes - Please use CHAR data type... It should work...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2004 07:41:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799888#M40793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-06-29T07:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799889#M40794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just mean that there is no solution for not displaying that dummy "0"s in numeric fields. And I claimed that hiding the field is not a proper solution for most cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if the field type is changed to "char", naturally problem vanishes. However, at that time, you have a character-type field for which you have to check for user's alphanumeric inputs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2004 17:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/799889#M40794</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2004-06-29T17:29:49Z</dc:date>
    </item>
  </channel>
</rss>

