<?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: Module pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972917#M1158910</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a frequently encountered problem and SAP has given various events ex for setting the cursor position dynamically, we have &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET CURSOR FIELD &amp;lt;screen_element&amp;gt; [OFFSET &amp;lt;offset&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the PBO field since it gets triggered before any user interaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;screen_element&amp;gt; is either a literal or a variable having the name of a screen element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex: if you want to place the cursor at a point w r t an i/p or o/p field&lt;/P&gt;&lt;P&gt;we use &amp;lt;offset&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Srikanth.P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Jan 2009 09:31:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-01-19T09:31:54Z</dc:date>
    <item>
      <title>Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972913#M1158906</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 3 text boxes and 2 text areas.When the screen opens as soon as when we give t.code it will point the cursor in the first text box.When i press the tab means it will go to the next text box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But after it reaching the 3rd text box.It is pointing to the text area.But i need a short cut key which will take the cursor to the next text area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to do this.Please help me to solve this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 08:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972913#M1158906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T08:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972914#M1158907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use  &lt;STRONG&gt;SET CURSOR FIELD 'T001W-WERKS'&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 09:06:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972914#M1158907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T09:06:10Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972915#M1158908</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;To set the cursor position dynamically, use the following statement in an ABAP dialog module in&lt;/P&gt;&lt;P&gt;the PBO event:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SET CURSOR FIELD &amp;lt;f&amp;gt; [OFFSET &amp;lt;off&amp;gt;].&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;f&amp;gt; can be a literal or a variable containing the name of a screen element. You can use the&lt;/P&gt;&lt;P&gt;OFFSET addition to place the cursor at a particular point within an input/output field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Abhinab Mishra.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 09:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972915#M1158908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T09:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972916#M1158909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the code in this thread. it might be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4283238"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 09:23:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972916#M1158909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T09:23:58Z</dc:date>
    </item>
    <item>
      <title>Re: Module pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972917#M1158910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ramya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a frequently encountered problem and SAP has given various events ex for setting the cursor position dynamically, we have &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET CURSOR FIELD &amp;lt;screen_element&amp;gt; [OFFSET &amp;lt;offset&amp;gt;].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the PBO field since it gets triggered before any user interaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;screen_element&amp;gt; is either a literal or a variable having the name of a screen element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For ex: if you want to place the cursor at a point w r t an i/p or o/p field&lt;/P&gt;&lt;P&gt;we use &amp;lt;offset&amp;gt; .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards&lt;/P&gt;&lt;P&gt;Srikanth.P.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jan 2009 09:31:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool/m-p/4972917#M1158910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-01-19T09:31:54Z</dc:date>
    </item>
  </channel>
</rss>

