<?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: syntax help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862352#M1136928</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Nov 2008 09:26:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-26T09:26:19Z</dc:date>
    <item>
      <title>syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862342#M1136918</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;&lt;/P&gt;&lt;P&gt;i need the syntax help for the below sentence&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F = (10 - (round(10 - j) - j)^2)&lt;/P&gt;&lt;P&gt;this is giving error in editor&lt;/P&gt;&lt;P&gt;pls help to resolve this&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:14:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862342#M1136918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862343#M1136919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the syntax error. Please provide more details of your code as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:17:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862343#M1136919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862344#M1136920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;"&lt;/STRONG&gt;"Local Interface:&lt;/P&gt;&lt;P&gt;*"  IMPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(UID) TYPE  OIJNOMI-ZZSCHEDID&lt;/P&gt;&lt;P&gt;*"     REFERENCE(TIMESTAMP) TYPE  CHAR14&lt;/P&gt;&lt;P&gt;*"  EXPORTING&lt;/P&gt;&lt;P&gt;*"     REFERENCE(TOKEN) TYPE  CHAR25&lt;/P&gt;&lt;P&gt;*"----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;*timestamp (YYYYMMDDhhmmss)&lt;/P&gt;&lt;P&gt;  DATA: zyear TYPE i,&lt;/P&gt;&lt;P&gt;        zmon TYPE i,&lt;/P&gt;&lt;P&gt;        zdat TYPE i,&lt;/P&gt;&lt;P&gt;        zhrs TYPE i,&lt;/P&gt;&lt;P&gt;        zmin TYPE i,&lt;/P&gt;&lt;P&gt;        zsec TYPE i,&lt;/P&gt;&lt;P&gt;        zfrm TYPE i,&lt;/P&gt;&lt;P&gt;        zuid TYPE i,&lt;/P&gt;&lt;P&gt;        a TYPE i,&lt;/P&gt;&lt;P&gt;        b TYPE i,&lt;/P&gt;&lt;P&gt;        c TYPE i,&lt;/P&gt;&lt;P&gt;        d TYPE i,&lt;/P&gt;&lt;P&gt;        e TYPE i,&lt;/P&gt;&lt;P&gt;        f TYPE i,&lt;/P&gt;&lt;P&gt;        g TYPE i,&lt;/P&gt;&lt;P&gt;        h TYPE i,&lt;/P&gt;&lt;P&gt;        i TYPE i,&lt;/P&gt;&lt;P&gt;        j TYPE i,&lt;/P&gt;&lt;P&gt;        k TYPE i,&lt;/P&gt;&lt;P&gt;        w_data  TYPE i. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;splitting up the timestamp to date,month,hrs,minutes etc.,&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  zuid = uid.&lt;/P&gt;&lt;P&gt;  zyear = timestamp+0(4).&lt;/P&gt;&lt;P&gt;  zmon = timestamp+4(2).&lt;/P&gt;&lt;P&gt;  zdat = timestamp+6(2).&lt;/P&gt;&lt;P&gt;  zhrs = timestamp+8(2).&lt;/P&gt;&lt;P&gt;  zmin = timestamp+10(2).&lt;/P&gt;&lt;P&gt;  zsec = timestamp+12(2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  a = zhrs + 1.&lt;/P&gt;&lt;P&gt;  b = zuid - zdat + zhrs.&lt;/P&gt;&lt;P&gt;  c = zyear - zhrs.&lt;/P&gt;&lt;P&gt;  d = zmin + zuid .&lt;/P&gt;&lt;P&gt;  e = zyear + zhrs * 13 + zuid + zdat * 23 .&lt;/P&gt;&lt;P&gt;  f = e * zuid.&lt;/P&gt;&lt;P&gt;  g = zuid - zdat.&lt;/P&gt;&lt;P&gt;  h = zuid - zhrs.&lt;/P&gt;&lt;P&gt;  i = zhrs - zdat.&lt;/P&gt;&lt;P&gt;  j = zuid / 10.&lt;/P&gt;&lt;P&gt;  k = 25 - zhrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;  zfrm = ABS( 15 * zuid * a + 11 * b + 19 * c + d * 3 + f + zhrs * zhrs * g * h + i * 23 * ( 10 - ( j - round( j ) * 10 ) exp 2 ) * ( k ) exp 2 ).&lt;/P&gt;&lt;P&gt;  token = zfrm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: janagar sundaramoorthy on Nov 25, 2008 9:20 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:20:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862344#M1136920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:20:42Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862345#M1136921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of ^ use **.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jayant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:22:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862345#M1136921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862346#M1136922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;F = ( 10 - ( ROUND( 10 - j ) - j ) ^ 2 ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:27:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862346#M1136922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862347#M1136923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jayant&lt;/P&gt;&lt;P&gt;your answer is helpful &lt;/P&gt;&lt;P&gt;but &lt;/P&gt;&lt;P&gt;the code i have pasted above is also giving an error&lt;/P&gt;&lt;P&gt;Function Module ZIS_TSW_ESRV_TOKEN_TEST&lt;/P&gt;&lt;P&gt;The syntax for a method specification is "objref-&amp;gt;method" or&lt;/P&gt;&lt;P&gt;"class=&amp;gt;method" . "class=&amp;gt;method". "class=&amp;gt;method". "class=&amp;gt;method".&lt;/P&gt;&lt;P&gt;can u pls help me to resolve this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:27:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862347#M1136923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862348#M1136924</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;  What do you mean by &lt;STRONG&gt;round(j)&lt;/STRONG&gt; and &lt;STRONG&gt;exp&lt;/STRONG&gt; ,  &lt;STRONG&gt;^&lt;/STRONG&gt;? I don't think they are proper operator in ABAP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862348#M1136924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862349#M1136925</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;Try to do it this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zfrm = ABS ( ( 15 * zuid * a ) + ( 11 * b ) + ( 19 * c ) + ( d * 3 ) + f + ( zhrs * zhrs * g * h ) + ( ( i * 23 ) * ( 10 - ( ( j - round( j ) * 10 ) exp 2 ) * ( k ) exp 2 ) ) ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps. (Pardon me if I have missed some braces).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this code as Test Program. Also try to break the arithematic operation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Jayant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:32:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862349#M1136925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862350#M1136926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi alex yu &lt;/P&gt;&lt;P&gt;just put F1 help and see&lt;/P&gt;&lt;P&gt;these are the operators available&lt;/P&gt;&lt;P&gt;with regards&lt;/P&gt;&lt;P&gt;s.janagar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:34:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862350#M1136926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862351#M1136927</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;Even i felt the same as alex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Round option we will use generally while writing any thing. For example,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: X TYPE P DECIMALS 2 VALUE '12493.97'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: /X ROUND  -2,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kusuma.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2008 08:34:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862351#M1136927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-25T08:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: syntax help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862352#M1136928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Nov 2008 09:26:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-help/m-p/4862352#M1136928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-26T09:26:19Z</dc:date>
    </item>
  </channel>
</rss>

