<?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: Processing screen fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670784#M296463</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I call my module in the PAI of the screen 1229 in the program SAPLMEGUI and my module is in the include  LMEVIEWSF01&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Oct 2006 16:47:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-26T16:47:38Z</dc:date>
    <item>
      <title>Processing screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670778#M296457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I process screen fields in a PAI module.&lt;/P&gt;&lt;P&gt;I put a new module in the PAI of the screen 1229 of the program SAPLMEGUI (transaction me21n).&lt;/P&gt;&lt;P&gt;I can read the field I want in the debugger &lt;/P&gt;&lt;P&gt;(mepo1229-submi) but if I try to read this field in my module I've got this error:&lt;/P&gt;&lt;P&gt;Field "MEPO1229-SUBMI" is unknown&lt;/P&gt;&lt;P&gt;How can it be unknown in the module and known in the debugger???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 16:11:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670778#M296457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T16:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Processing screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670779#M296458</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;Where do you have defined your module?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 16:21:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670779#M296458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T16:21:20Z</dc:date>
    </item>
    <item>
      <title>Re: Processing screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670780#M296459</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;Not all the data in all screens are accessible during the debugging time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The reason for this is based on the program code, suppose if there is a function call, control goes to the function module code, here only parameters that are passed the functional module are visble to the debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ramakrishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 16:24:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670780#M296459</guid>
      <dc:creator>venkata_ramisetti</dc:creator>
      <dc:date>2006-10-26T16:24:47Z</dc:date>
    </item>
    <item>
      <title>Re: Processing screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670781#M296460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Michel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One thing u can do is, just declare the structure mepo1229 as a global field. so that what ever the value u enter on screen will be transfered to this structure just before PAI. i think it will solve ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Mohan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 16:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670781#M296460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T16:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: Processing screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670782#M296461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I do that??&lt;/P&gt;&lt;P&gt;Code snippet please.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 16:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670782#M296461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T16:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Processing screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670783#M296462</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;It seems your module can't see the structure MEPO1229, but this structure is defined as global data in SAPLMEGUI so if you've define your module in an include included in SAPLMEGUI is very strange that message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I repeat where have you defined your module? In which include? An where is that include? In SAPLMEGUI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 16:43:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670783#M296462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T16:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Processing screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670784#M296463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I call my module in the PAI of the screen 1229 in the program SAPLMEGUI and my module is in the include  LMEVIEWSF01&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 16:47:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670784#M296463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T16:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: Processing screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670785#M296464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You point me in the right direction, my MODULE was not in a include we're the mepo1229 was declare as global.&lt;/P&gt;&lt;P&gt;I moved the module into LMEGUII01 and it's working now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnaks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 16:55:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/processing-screen-fields/m-p/1670785#M296464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T16:55:44Z</dc:date>
    </item>
  </channel>
</rss>

