<?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 Form in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984360#M704708</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Form...Endform.What is the use of changing parameters?How to use that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Nov 2007 13:50:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-01T13:50:00Z</dc:date>
    <item>
      <title>Form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984360#M704708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Form...Endform.What is the use of changing parameters?How to use that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 13:50:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984360#M704708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T13:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: Form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984361#M704709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Changing helps to change the parameter value and then use the same in main program with changed value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;data : val1 type i value 1,&lt;/P&gt;&lt;P&gt;val2 type i value 0.&lt;/P&gt;&lt;P&gt;perform calc using val1 changing val2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write / : 'Changing :' , val2.&lt;/P&gt;&lt;P&gt;write / : 'Using :' , val1.&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 calc&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_VAL1 text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;&amp;lt;--P_VAL2 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 calc using p_val1&lt;/P&gt;&lt;P&gt;changing p_val2.&lt;/P&gt;&lt;P&gt;p_val2 = p_val1 + 100.&lt;/P&gt;&lt;P&gt;*p_val1 = p_val1 + 100.&lt;/P&gt;&lt;P&gt;*Since p_val1 is passed as using,the above is not *permitted&lt;/P&gt;&lt;P&gt;endform. " calc&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;This link will clear all your Doubts reagrding Perform Statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_erp2005/helpdata/en/9f/db977635c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_erp2005/helpdata/en/9f/db977635c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 13:52:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984361#M704709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T13:52:36Z</dc:date>
    </item>
    <item>
      <title>Re: Form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984362#M704710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the parameters that you paas with changing.. whatever changes you make in subroutine also get reflected in the passing parameter as well...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 13:52:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984362#M704710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T13:52:38Z</dc:date>
    </item>
    <item>
      <title>Re: Form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984363#M704711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the PERFORM statement, you can call subroutines which are coded in the same ABAP program (internal calls), or subroutines which are coded in other ABAP programs (external calls).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also specify the name of the subroutine dynamically at runtime, and call subroutines from a list. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Internal Subroutine Calls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To call a subroutine defined in the same program, you need only specify its name in the PERFORM statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM &amp;lt;subr&amp;gt; [USING   ... &amp;lt;pi&amp;gt;... ] &lt;/P&gt;&lt;P&gt;               [CHANGING... &amp;lt;pi&amp;gt;... ].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The internal subroutine can access all of the global data of the calling program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/db978335c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/db978335c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward point if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 13:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984363#M704711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T13:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984364#M704712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the difference betn changing and using(by reference) parameters in form?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Nov 2007 13:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/form/m-p/2984364#M704712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-01T13:55:50Z</dc:date>
    </item>
  </channel>
</rss>

