<?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: SET PARAMETER AND GET PARAMETER in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287871#M786573</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ansar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Set Parameter ID is used to set values to the fields of the screens through the program. &lt;/P&gt;&lt;P&gt;  Get Parameter ID is used to get the values into the program that are entered in the fields of the screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can see this example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     set parameter id 'MAT' field it_mara-matnr.&lt;/P&gt;&lt;P&gt;     call transaction 'MM03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Jan 2008 14:59:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-08T14:59:58Z</dc:date>
    <item>
      <title>SET PARAMETER AND GET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287870#M786572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the difference between Set parameter and Get parameter?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 14:57:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287870#M786572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T14:57:47Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND GET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287871#M786573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ansar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Set Parameter ID is used to set values to the fields of the screens through the program. &lt;/P&gt;&lt;P&gt;  Get Parameter ID is used to get the values into the program that are entered in the fields of the screens.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can see this example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     set parameter id 'MAT' field it_mara-matnr.&lt;/P&gt;&lt;P&gt;     call transaction 'MM03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 14:59:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287871#M786573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T14:59:58Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND GET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287872#M786574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SET PARAMETER to store value to a parameter id &amp;amp; GET PARAMETER to fetch the value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;ANUPAM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 15:04:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287872#M786574</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T15:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND GET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287873#M786575</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;Set parameter is used to put some value into ABAP memory area, get paramter is used to retrive values form ABAP memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refer the below sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am taking one material number and i am passing that mateial number by using 'set parameter id', the material number will be stored in ABAP-memory area 'MAT', and then i am calling the Tcode 'MM03', after executing the Tcode  (from program) automatically 'MM03' will reads that material number from that ABAP-memory area and it will displays the 'MM03' tcode along with material number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can find the parameter-id's from data element of that field.&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;parameters: p_matnr like mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set parameter id 'MAT' field p_matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'MM03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sreeram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 15:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287873#M786575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T15:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND GET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287874#M786576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ansar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you could write this question I am convinced you can put the cursor in ABAP editor on SET or GET, click to the PARAMETER addistion and read what SAP writes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you still have trouble understanding, you may quote the parts you don't understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you a thousand times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 15:10:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287874#M786576</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2008-01-08T15:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: SET PARAMETER AND GET PARAMETER</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287875#M786577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOL !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Jan 2008 15:22:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/set-parameter-and-get-parameter/m-p/3287875#M786577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-08T15:22:33Z</dc:date>
    </item>
  </channel>
</rss>

