<?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: Actual and formal in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236884#M481842</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;parameters defined in FORM/ENDFORM are formal parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else are actual parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;shyam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Apr 2007 07:41:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-30T07:41:46Z</dc:date>
    <item>
      <title>Actual and formal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236880#M481838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What are Actual and formal Parameters?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Apr 2007 09:13:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236880#M481838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-29T09:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: Actual and formal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236881#M481839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Balu,&lt;/P&gt;&lt;P&gt;Actual and formal parameters are used in modularization technique while calling a subroutine. Generally we use subroutines using PERFORM statement and the functionality of this subroutine is defined at the end of the program using FORM and ENDFORM statements. The variables used in perform statement are called ACTUAL PARAMETERS and the variables used in form, endform statements are called FORMAL parameters. During the program execution these actual parameters are passed to the formal parameters. We can use the same variable name for both actual and formal parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXAMPLE:&lt;/P&gt;&lt;P&gt;data: n3 type i.&lt;/P&gt;&lt;P&gt;parameters: n1 type i,&lt;/P&gt;&lt;P&gt;                  n2 type i.&lt;/P&gt;&lt;P&gt;perform addition using n1 n2 n3.  " n1, n2, n3 are actual parameters.&lt;/P&gt;&lt;P&gt;write:/ n3.&lt;/P&gt;&lt;P&gt;form addtion using a b c.  " a, b and c are formal parameters.&lt;/P&gt;&lt;P&gt;c = a + b.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Biswaranjan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Apr 2007 09:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236881#M481839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-29T09:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: Actual and formal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236882#M481840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,,&lt;/P&gt;&lt;P&gt; Actual parameters r those values wht we pass they n formal parameters r those that r created as refernce paramenetrs for actuall parameters....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : a type i,&lt;/P&gt;&lt;P&gt;                   b type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : c type i.&lt;/P&gt;&lt;P&gt;perform add using a b. ( Here a b r the actualparameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form add using x y. (Here x y r the formal parameters taken as reference of a b parameters.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c = x + y.&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; c.&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After writing perform statement just double click on add n click on continue it will cretaed the formal parameters on it own.&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;madhuri. n if useful reward with points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 07:35:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236882#M481840</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T07:35:11Z</dc:date>
    </item>
    <item>
      <title>Re: Actual and formal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236883#M481841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;refer the link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/db979d35c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/9f/db979d35c111d1829f0000e829fbfe/frameset.htm&lt;/A&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;Regards&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 07:38:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236883#M481841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T07:38:18Z</dc:date>
    </item>
    <item>
      <title>Re: Actual and formal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236884#M481842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;parameters defined in FORM/ENDFORM are formal parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else are actual parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;shyam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 07:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236884#M481842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T07:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Actual and formal</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236885#M481843</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;The Actual params are the one which u actually send to the subroutine..&lt;/P&gt;&lt;P&gt;See here..&lt;/P&gt;&lt;P&gt;data: a,b,c&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform data_process using a b c.&lt;/P&gt;&lt;P&gt;"a, b, c are actual parameters.they forward the values into the subroutine..&lt;/P&gt;&lt;P&gt;This parameters should be define before itself as above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When comes to Formal.. The formal parameters are the one formal to actual..&lt;/P&gt;&lt;P&gt;FORM data_PROCESS using f_a type char&lt;/P&gt;&lt;P&gt;                                            f_b type char&lt;/P&gt;&lt;P&gt;                                            f_c type char.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"f_a, f_b, f_c are forma paramss./&lt;/P&gt;&lt;P&gt;remember one this these F_A,f_b, f_c are not defined so we need to define their character type as above..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using -- is just for using the value.&lt;/P&gt;&lt;P&gt;Changing-- it uses the value and changes too..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nazeer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2007 07:49:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/actual-and-formal/m-p/2236885#M481843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-30T07:49:29Z</dc:date>
    </item>
  </channel>
</rss>

