<?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: Problem with the syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868804#M1322844</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi Jaya sri,

Check your modified program. It works. I have just added some logic inside subroutine.
&lt;PRE&gt;&lt;CODE&gt;REPORT ztest_notepad.

DATA: var1 TYPE i VALUE 5,
      var2 TYPE i VALUE 10.

PERFORM form1 USING var1
                     '1'
                     '2'
                     '3'
           CHANGING var2.
WRITE var2.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  FORM1
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_VAR1      text
*      --&amp;gt;p_value_1   text
*      --&amp;gt;p_value_2   text
*      --&amp;gt;p_value_3   text
*      &amp;lt;--P_VAR2      text
*----------------------------------------------------------------------*
FORM form1  USING    p_var1
                     p_value_1
                     p_value_2
                     p_value_3
            CHANGING p_var2.
  p_var2 = p_var2 + p_var1 + p_value_1 + p_value_2 + p_value_3.

ENDFORM.                                                    " FORM1&lt;/CODE&gt;&lt;/PRE&gt;

I hope that it solves your problem.

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 17 Jul 2009 02:06:12 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2009-07-17T02:06:12Z</dc:date>
    <item>
      <title>Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868796#M1322836</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;&lt;/P&gt;&lt;P&gt;I am writing the below piece of code and it was throwing syntax error that 'actual parameters and formal parameters are not equal'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;its really irritating, can any one solve this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: var1 type i value 5,
      var2 type i value 10.

perform form1 
              using var1:
                     '1',
                     '2',
                     '3',
              changing var2.
              
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  FORM1
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_VAR1  text
*      --&amp;gt;P_0019   text
*----------------------------------------------------------------------*
form FORM1  
            using    p_var1
                     p_no
            changing p_var2.
            &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 20:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868796#M1322836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T20:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868797#M1322837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dont understand what you are trying to do. Are 1, 2 and 3 different values of var1?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 21:03:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868797#M1322837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T21:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868798#M1322838</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;Your Syntax is wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 1 Write &lt;/P&gt;&lt;P&gt;          Perform get_details using var1 var2&lt;/P&gt;&lt;P&gt;                                          changing var3 var4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 2 Double Click on the above line in editor, Body of the Perform will be automatically created in Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   FORM test USING p1 TYPE string &lt;/P&gt;&lt;P&gt;                p2 TYPE string &lt;/P&gt;&lt;P&gt;          CHANGING value(p3) TYPE string &lt;/P&gt;&lt;P&gt;                   value(p4) TYPE string. &lt;/P&gt;&lt;P&gt;  ... &lt;/P&gt;&lt;P&gt;     ENDFORM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz look in following link.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="7691882"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and Regards,&lt;/P&gt;&lt;P&gt;ShreeMohan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ShreeMohan Pugalia on Jul 16, 2009 11:05 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 21:03:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868798#M1322838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T21:03:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868799#M1322839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes one by one those should be passed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If i dont have changing then it will work, but if i have changing then its not. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
perform form1
              using var1:
                     '1',
                     '2',
                     '3'.
*              changing var2.

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  FORM1
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_VAR1  text
*      --&amp;gt;P_0019   text
*----------------------------------------------------------------------*
form FORM1
            using    p_var1
                     p_no.
*            changing p_var2.



endform.                    " FORM1&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 21:05:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868799#M1322839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T21:05:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868800#M1322840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But why are you trying to pass 3 values for one variable?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 21:07:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868800#M1322840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T21:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868801#M1322841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare more 2 variable for value 2 and 3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 21:11:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868801#M1322841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T21:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868802#M1322842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do 3 times.&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;ur code for setting the var1 value here***&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;perform form1&lt;/P&gt;&lt;P&gt;              using var1&lt;/P&gt;&lt;P&gt;              changing var2.&lt;/P&gt;&lt;P&gt;enddo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 21:13:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868802#M1322842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T21:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868803#M1322843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am still working on that why it was not working? is there any restriction that we should not use changing?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 00:09:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868803#M1322843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T00:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868804#M1322844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi Jaya sri,

Check your modified program. It works. I have just added some logic inside subroutine.
&lt;PRE&gt;&lt;CODE&gt;REPORT ztest_notepad.

DATA: var1 TYPE i VALUE 5,
      var2 TYPE i VALUE 10.

PERFORM form1 USING var1
                     '1'
                     '2'
                     '3'
           CHANGING var2.
WRITE var2.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  FORM1
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_VAR1      text
*      --&amp;gt;p_value_1   text
*      --&amp;gt;p_value_2   text
*      --&amp;gt;p_value_3   text
*      &amp;lt;--P_VAR2      text
*----------------------------------------------------------------------*
FORM form1  USING    p_var1
                     p_value_1
                     p_value_2
                     p_value_3
            CHANGING p_var2.
  p_var2 = p_var2 + p_var1 + p_value_1 + p_value_2 + p_value_3.

ENDFORM.                                                    " FORM1&lt;/CODE&gt;&lt;/PRE&gt;

I hope that it solves your problem.

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 02:06:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868804#M1322844</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-07-17T02:06:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868805#M1322845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI VENKAT, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Thanks for your code, but what you wrote is general approach. I dont want to mention those number of formal parameters. Did you check my previous code, in the similar way it should work even if i use CHANGING parameter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Jaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 02:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868805#M1322845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T02:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868806#M1322846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the perform statement as you want but you can not use changing becuase you are passing the value 1,2 nad 3 directly to p_no and these values wiil be woked as constant for p_no (you can check this also in debugging) that is why you can not use statement changing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 Program is giving the syntax error beacuse after colon you are passing the value 1,2 and 3 and these values are passed to variable p_no , when you declare new actual parameter 'var2', perform stetement still consider that this is the value which need to pass to the vaiable p_no and does not accept it as a actual parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3 if you will use like this then it can accept var2 as a actual parameter and will not give any error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform form1&lt;/P&gt;&lt;P&gt;              &lt;STRONG&gt;using var1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                       &lt;STRONG&gt;var2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                          &lt;STRONG&gt;'1',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                         &lt;STRONG&gt;'2',&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                          &lt;STRONG&gt;'3'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: 'test'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  FORM1&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_VAR1  text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_0019   text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form FORM1&lt;/P&gt;&lt;P&gt;            &lt;STRONG&gt;using p_var1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                  &lt;STRONG&gt;p_no&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;                  &lt;STRONG&gt;p_var2.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the above code both the actual and formal parameters are same (3), so whenever you want to pass the value directly to any variable of subroutine then keep it at the end of perform statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will clear to you, if not then plz let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 05:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868806#M1322846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T05:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868807#M1322847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ztest_notepad.
DATA: var1 TYPE i VALUE 5,
      var2 TYPE i VALUE 10.
PERFORM: form1 USING: var1 '1' CHANGING var2,
         form1 USING: var1 '2' CHANGING var2,
         form1 USING: var1 '3' CHANGING var2.
FORM form1  USING    p_var1
                     p_no
            CHANGING p_var2.
  p_var2 = p_var2 + p_var1.
ENDFORM.  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;venkat.O&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 05:40:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868807#M1322847</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-07-17T05:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with the syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868808#M1322848</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 wrongly used Chain Operator  i.e. ':'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your Code you have used after variable Var1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform form1&lt;/P&gt;&lt;P&gt;              using var1:  &amp;lt;-------  Your Chain Operator.&lt;/P&gt;&lt;P&gt;                     '1',&lt;/P&gt;&lt;P&gt;                     '2',&lt;/P&gt;&lt;P&gt;                     '3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead it should be place after Word  PERFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       Actual Postion Of Chain Operator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  l&lt;/P&gt;&lt;P&gt;                  l&lt;/P&gt;&lt;P&gt;                 v&lt;/P&gt;&lt;P&gt;PERFORM : form1 USING: var1 '1' CHANGING var2,&lt;/P&gt;&lt;P&gt;                   form1 USING: var1 '2' CHANGING var2,&lt;/P&gt;&lt;P&gt;                   form1 USING: var1 '3' CHANGING var2.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Hope This help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Shreemohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jul 2009 05:53:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-the-syntax/m-p/5868808#M1322848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T05:53:49Z</dc:date>
    </item>
  </channel>
</rss>

