<?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 Parameter ID in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3160124#M751763</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have developed a Ztransaction and I am calling from it from ME51N by writing a BADI. Now it is working fine. I have to pass the PRNo (Purchase Requesition Number ) to my Ztransaction screen field. For that purpose i have used Parameter id. I have given parameter Id for that text box. &lt;/P&gt;&lt;P&gt;and in the BADI.&lt;/P&gt;&lt;P&gt;I am writing.&lt;/P&gt;&lt;P&gt;DATA : WA_EBAN TYPE UEBAN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE IM_EBAN INDEX 1 INTO WA_EBAN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : PRNO TYPE EBAN-BANFN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRNO = WA_EBAN-BANFN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SET PARAMETER ID 'PRN' FIELD PRNO.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ZPRN'.&lt;/P&gt;&lt;P&gt;but the number is not coming only screen is coming.&lt;/P&gt;&lt;P&gt;in the debug mode the number is availabe in prno.&lt;/P&gt;&lt;P&gt;what could be the problem...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Dec 2007 13:21:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-11T13:21:21Z</dc:date>
    <item>
      <title>Parameter ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3160124#M751763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have developed a Ztransaction and I am calling from it from ME51N by writing a BADI. Now it is working fine. I have to pass the PRNo (Purchase Requesition Number ) to my Ztransaction screen field. For that purpose i have used Parameter id. I have given parameter Id for that text box. &lt;/P&gt;&lt;P&gt;and in the BADI.&lt;/P&gt;&lt;P&gt;I am writing.&lt;/P&gt;&lt;P&gt;DATA : WA_EBAN TYPE UEBAN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE IM_EBAN INDEX 1 INTO WA_EBAN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : PRNO TYPE EBAN-BANFN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PRNO = WA_EBAN-BANFN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SET PARAMETER ID 'PRN' FIELD PRNO.&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'ZPRN'.&lt;/P&gt;&lt;P&gt;but the number is not coming only screen is coming.&lt;/P&gt;&lt;P&gt;in the debug mode the number is availabe in prno.&lt;/P&gt;&lt;P&gt;what could be the problem...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 13:21:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3160124#M751763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T13:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3160125#M751764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you assigned the parameter to your input field in your custom program?  Try checking the help documentation for parameters and look at the memory id addition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gareth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 13:26:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3160125#M751764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T13:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3160126#M751765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to use this parameter ID in your user data (goto System / user profile / own data).&lt;/P&gt;&lt;P&gt;Better to work with export / import into memory in this case, since not always people will use the parameter ID.&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;Frank Umans&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 14:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3160126#M751765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T14:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Parameter ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3160127#M751766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have assigned it to the INPUT Parameter.&lt;/P&gt;&lt;P&gt;But still it is not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;satya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Dec 2007 14:35:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameter-id/m-p/3160127#M751766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-11T14:35:58Z</dc:date>
    </item>
  </channel>
</rss>

