<?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 , capturing screen element in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133544#M1189897</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;Check the Demo program DEMO_DYNPRO_F4_HELP_DYNPRO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Feb 2009 12:36:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-02T12:36:17Z</dc:date>
    <item>
      <title>module pool , capturing screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133541#M1189894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;On a particular screen suppose there is 3 input/ouput field and our requirement is that on the basis of first user input , f4 help for second field should be displayed .  I mean how i can capture the particular entry without any event occurrence . Thanks .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:16:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133541#M1189894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T12:16:49Z</dc:date>
    </item>
    <item>
      <title>Re: module pool , capturing screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133542#M1189895</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;You can read your entries with FM &lt;STRONG&gt;DYNP_VALUES_READ&lt;/STRONG&gt;, then depending on what was returned select appropraite entries to next screen field and display them as F4 input help with &lt;STRONG&gt;F4IF_INT_TABLE_VALUE_REQUEST&lt;/STRONG&gt;. &lt;/P&gt;&lt;P&gt;Updating screen fields on the other hand, will be done by means of fm &lt;STRONG&gt;DYNP_VALUES_UPDATE&lt;/STRONG&gt;. [Example here|http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbaac935c111d1829f0000e829fbfe/frameset.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:27:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133542#M1189895</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2009-02-02T12:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: module pool , capturing screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133543#M1189896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use FM 'C14Z_DYNP_READ_FIELD'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Instance it should be like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : v_field(255) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'C14Z_DYNP_READ_FIELD'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_program      = sy-repid&lt;/P&gt;&lt;P&gt;      i_dynpro       = sy-dynnr&lt;/P&gt;&lt;P&gt;      i_fieldname    = 'V_PLANT'  "here specify your own field which u want to read&lt;/P&gt;&lt;P&gt;      i_flg_steploop = ''&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      e_value        = v_field.         "Specify the variable inwhich u want to have the value and based on that u select other F4 help entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:31:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133543#M1189896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T12:31:47Z</dc:date>
    </item>
    <item>
      <title>Re: module pool , capturing screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133544#M1189897</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;Check the Demo program DEMO_DYNPRO_F4_HELP_DYNPRO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:36:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133544#M1189897</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T12:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: module pool , capturing screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133545#M1189898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As long as the cursor hasn't been postioned in another field, you could try with statement &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;GET CURSOR FIELD  ....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement will return the name of the field where the cursor is positioned.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i'm not all to sure if it's possible without triggering an event.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 12:46:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133545#M1189898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T12:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: module pool , capturing screen element</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133546#M1189899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Feb 2009 16:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-capturing-screen-element/m-p/5133546#M1189899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-02T16:13:44Z</dc:date>
    </item>
  </channel>
</rss>

