<?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: screen field value to program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222120#M1008809</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you pls provide some more details regarding?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jul 2008 09:25:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-23T09:25:38Z</dc:date>
    <item>
      <title>screen field value to program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222118#M1008807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;how to get screen field value i.e ebeln value from ME22N to zprogram.kindly help regarding this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards,&lt;/P&gt;&lt;P&gt;siri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 09:22:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222118#M1008807</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T09:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: screen field value to program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222119#M1008808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check this thread:&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/db9e0435c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/Helpdata/EN/9f/db9e0435c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Adil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 09:25:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222119#M1008808</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T09:25:04Z</dc:date>
    </item>
    <item>
      <title>Re: screen field value to program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222120#M1008809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you pls provide some more details regarding?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 09:25:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222120#M1008809</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T09:25:38Z</dc:date>
    </item>
    <item>
      <title>Re: screen field value to program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222121#M1008810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check Dynprofield and retfield&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 09:25:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222121#M1008810</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T09:25:56Z</dc:date>
    </item>
    <item>
      <title>Re: screen field value to program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222122#M1008811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the get parameter ID for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The parameter ID for EBELN is BES. this you can find out by pressing F1 on the field and going to technical info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Zprogram try including the following code, to get the value of EBELN in ME22N.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Data: w_ebeln type ekko-ebeln.
constants: c_parameter_id_bes TYPE memoryid VALUE 'BES'

GET parameter ID c_parameter_id_bes FIELD w_ebeln. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 09:26:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222122#M1008811</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T09:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: screen field value to program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222123#M1008812</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sirisha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The screen field values are populated at run time only.&lt;/P&gt;&lt;P&gt;Once the transaction is saved, the data is refreshed from the structures or screen fields. At run time or at the time of execution of the transaction we need to capture the screen fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The screen field name is &lt;STRONG&gt;MEPO_TOPLINE - EBELN&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;Here MEPO_TOPLINE is the structure name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the Parameter ID and get the value. The parameter ID for EBELN is ' BES '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;raam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 09:30:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222123#M1008812</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T09:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: screen field value to program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222124#M1008813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use code like this to get value from selection screen of other transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;get parameter id 'BES' field itab-ebeln.&lt;/P&gt;&lt;P&gt;get parameter id 'BSP' field itab-ebelp.&lt;/P&gt;&lt;P&gt;Call transaction 'ME22N;.&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;rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 09:35:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222124#M1008813</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T09:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: screen field value to program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222125#M1008814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;ive tried using your code but even it didnt work.kindly help me.&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;siri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 09:58:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222125#M1008814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T09:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: screen field value to program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222126#M1008815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code works perfectly. It reads the current value from SAP memory into the variable in the program. Maybe the memory area is empty.&lt;/P&gt;&lt;P&gt;Say, you have just entered a PO 4500006371 in ME22N in your system, that PO number gets stored in the SAP memory and by using GET parameter ID you can read that value into program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter a PO number in ME22N and then go to the program having GET parameter ID. after the GET parameter statement put a write statement&lt;/P&gt;&lt;P&gt;like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: w_ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will surely print the PO number that you had entered recently. Thats how GET parameter ID works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jul 2008 10:23:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-field-value-to-program/m-p/4222126#M1008815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-23T10:23:55Z</dc:date>
    </item>
  </channel>
</rss>

