<?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: ZTABLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918947#M687255</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;  in se11 goto tab currency\quantity field and there give the reference field name and reference table name for currency fields and quantity fields in ur ZTable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Oct 2007 09:53:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-10T09:53:19Z</dc:date>
    <item>
      <title>ZTABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918944#M687252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              I couldn't activate my ZTable because of the Error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   ZTable (specify reference table AND reference field) for all those fields that contain QUAN as data type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 09:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918944#M687252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T09:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: ZTABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918945#M687253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in se11 go to Currency/Quantity Fields tab...&lt;/P&gt;&lt;P&gt;there mention reference table and reference fields... same as that of the standard field which has same data element as your field.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 09:52:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918945#M687253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T09:52:29Z</dc:date>
    </item>
    <item>
      <title>Re: ZTABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918946#M687254</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 need to specify reference table &amp;amp; field....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reference field is used for the output, the output/input format of a currency field depends on the value of its reference field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example if you create a screen using the field KONV-KBETR :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the reference field is RV61A-AWEI1:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you set RV61A-AWEI1 = 3&lt;/P&gt;&lt;P&gt;the value in KONV-KBETR is beeing shown with 3 decimals&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So you could see 3,000 but this value is automatically stored as 30.00&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you set RV61A-AWEI1 = 2&lt;/P&gt;&lt;P&gt;the value in KONV-KBETR is beeing shown with 2 decimals&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All this convertions are automatically made in according to the value setted in reference field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see this using the statament WRITE with options CURRENCY, try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS P_KBETR LIKE KONV-KBETR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: P_KBETR CURRENCY '3'.&lt;/P&gt;&lt;P&gt;WRITE: / P_KBETR CURRENCY '2'.&lt;/P&gt;&lt;P&gt;WRITE: / P_KBETR CURRENCY '1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the Currency field that we specify there, the input/output formatting(What character is to be used for thousands separator and decimals separator etc) would be decided for that amount field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit your table and select the Currency/Quantity tab. Here, you must enter the respective reference fields and tables for your new fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All quantity fields must have a referenced unit field in the same table or in another one. The same thing about currency ones.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to the "Currency/quant" tab and put those corresponding fields. I will advice you to add the units/coin fields to the same table, and fill them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to save some space, just add those unit/coin fields to the header table and use the appropiate reference in the pointed tab&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vasu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 09:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918946#M687254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T09:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: ZTABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918947#M687255</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;  in se11 goto tab currency\quantity field and there give the reference field name and reference table name for currency fields and quantity fields in ur ZTable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 09:53:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918947#M687255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T09:53:19Z</dc:date>
    </item>
    <item>
      <title>Re: ZTABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918948#M687256</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 have to maintain the technical settings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in Currency/Quantity field you shold give the Ref.Table &amp;amp; Ref.field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 09:53:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918948#M687256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T09:53:26Z</dc:date>
    </item>
    <item>
      <title>Re: ZTABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918949#M687257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While declaring QUAN fields use reference like specifying data element as NTGEW..etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check MARA table QUAN fields for example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For giving F4 help and entering only valid values.. the system restricts these fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2007 09:53:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ztable/m-p/2918949#M687257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-10T09:53:29Z</dc:date>
    </item>
  </channel>
</rss>

