<?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: smart forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/1603387#M270911</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use below logic &lt;/P&gt;&lt;P&gt;  data l_t type i.             &lt;/P&gt;&lt;P&gt; compute l_t = sqrt( 9 ).    &lt;/P&gt;&lt;P&gt;  l_t = l_t + 1.&lt;/P&gt;&lt;P&gt;  write l_t.                  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use interger variable for rounding &lt;/P&gt;&lt;P&gt;or use function&lt;/P&gt;&lt;P&gt; CEIL           Smallest integer value not less than x        &lt;/P&gt;&lt;P&gt; FLOOR          Greatest integer value not greater than x     &lt;/P&gt;&lt;P&gt; TRUNC          Integer part of x                             &lt;/P&gt;&lt;P&gt; FRAC           Decimal part of x                             &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;Amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Sep 2006 11:51:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-19T11:51:17Z</dc:date>
    <item>
      <title>smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/1603385#M270909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi friends,&lt;/P&gt;&lt;P&gt; Could u please help me how to do this i already fetch the data from the qals-anzgeb &lt;/P&gt;&lt;P&gt;Calculated field: &amp;#147;square root of QALS-ANZGEB (round up the value if the decimal point value is &amp;gt; 0.5 else round down the value) plus 1. example: if the square root value is 5.2 then the results will be 5 + 1 = 6 but if the square root value is 5.5 then the results will be 6 + 1 = 7. &lt;/P&gt;&lt;P&gt;but my problem is in smart form how to squreroot the value after that how round that value&lt;/P&gt;&lt;P&gt;Any one of them could u please help &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;siri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 11:25:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/1603385#M270909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T11:25:14Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/1603386#M270910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sireesha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the program lines import the variable(declare another variable of similar type say v_compute) and then find the square root....&lt;/P&gt;&lt;P&gt;v_compute = sqrt( qals-anzeb).&lt;/P&gt;&lt;P&gt;if v_compute GE 5.5 &lt;/P&gt;&lt;P&gt;v_compute = ceil( v_compute).&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;v_compute = floor( v_compute).&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now export v_compute and print it in the text node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vidya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 11:37:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/1603386#M270910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T11:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/1603387#M270911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use below logic &lt;/P&gt;&lt;P&gt;  data l_t type i.             &lt;/P&gt;&lt;P&gt; compute l_t = sqrt( 9 ).    &lt;/P&gt;&lt;P&gt;  l_t = l_t + 1.&lt;/P&gt;&lt;P&gt;  write l_t.                  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use interger variable for rounding &lt;/P&gt;&lt;P&gt;or use function&lt;/P&gt;&lt;P&gt; CEIL           Smallest integer value not less than x        &lt;/P&gt;&lt;P&gt; FLOOR          Greatest integer value not greater than x     &lt;/P&gt;&lt;P&gt; TRUNC          Integer part of x                             &lt;/P&gt;&lt;P&gt; FRAC           Decimal part of x                             &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;Amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Sep 2006 11:51:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/1603387#M270911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-19T11:51:17Z</dc:date>
    </item>
  </channel>
</rss>

