<?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: regarding currency and quantity fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-currency-and-quantity-fields/m-p/4100516#M980518</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;The same type - currency field/DEC field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2008 11:10:24 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-09T11:10:24Z</dc:date>
    <item>
      <title>regarding currency and quantity fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-currency-and-quantity-fields/m-p/4100514#M980516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i hav to fill one field with the calculated value of currency and the field of type DEC as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_final_unitprice = currency field/DEC field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to declare that field in data dictionary as i hav to create ztable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and i hav to fill another field as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_final_val = (wa_final_unitprice * quantity field)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to declare wa_final_val field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help me in this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:58:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-currency-and-quantity-fields/m-p/4100514#M980516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T10:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: regarding currency and quantity fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-currency-and-quantity-fields/m-p/4100515#M980517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare  wa_final_unitprice as currency field &lt;/P&gt;&lt;P&gt;and wa_final_val  also as currency field only &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for currency fields uneed to give refference fields&lt;/P&gt;&lt;P&gt;gto the entry/help check tab of any standrad table and see the reffrence field over there , u can use the same in your ztable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 11:09:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-currency-and-quantity-fields/m-p/4100515#M980517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T11:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: regarding currency and quantity fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-currency-and-quantity-fields/m-p/4100516#M980518</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;The same type - currency field/DEC field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 11:10:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-currency-and-quantity-fields/m-p/4100516#M980518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T11:10:24Z</dc:date>
    </item>
    <item>
      <title>Re: regarding currency and quantity fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-currency-and-quantity-fields/m-p/4100517#M980519</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;At table level you declare like currency only for that feild-c.&lt;/P&gt;&lt;P&gt;For Ex: feild-C = feild-A * feild-B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But to get the value in the feild-c you need to create a table maintainece generator. In that you write Events. In Table control after save event (02) you need write the code like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;feild-C = feild-A * feild-B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to go the events, go to se11 maintain feilds and activate. &lt;/P&gt;&lt;P&gt;Then  go to Utilities -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; Tabel Maintanence Generator&lt;/P&gt;&lt;P&gt;now   go to Environment ---&amp;gt; Modification ---&amp;gt; Events&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many Thanks,&lt;/P&gt;&lt;P&gt;Raghu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 11:20:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-currency-and-quantity-fields/m-p/4100517#M980519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T11:20:35Z</dc:date>
    </item>
  </channel>
</rss>

