<?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: capturing screen valuess in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932408#M1333156</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jack,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can either use a FM or directly capture the values from screen.&lt;/P&gt;&lt;P&gt;The reason for not getting the screen values could be the disimilar names in dynpro, &amp;amp; the one used in your program.&lt;/P&gt;&lt;P&gt;Also check, if you are saving values at any user command, check OKCODE or sy-ucomm.&lt;/P&gt;&lt;P&gt;Hope this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nidhi Kothiyal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jul 2009 06:35:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-21T06:35:08Z</dc:date>
    <item>
      <title>capturing screen valuess</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932405#M1333153</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;Hope all are doing fine...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am unable to capture the values entered in a transaction ,,,I have tried using screen-fieldname-value ,,but even then the values are not getting captured ... I have tried using dynp_values_read ...but also the values are not getting captured...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The moment i enter some values in the transaction and save it ,,its triggering a BADI ,,even the parameters of that BADI are not capturing the value entered in the screen of the particular transaction ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other alternatives to capture the values of the screen.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. do the needful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Jack&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 09:05:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932405#M1333153</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T09:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: capturing screen valuess</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932406#M1333154</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 have to declare the screen fields in your top include with the same names and same type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Sajid&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 09:07:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932406#M1333154</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T09:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: capturing screen valuess</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932407#M1333155</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;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>Fri, 17 Jul 2009 05:25:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932407#M1333155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-17T05:25:40Z</dc:date>
    </item>
    <item>
      <title>Re: capturing screen valuess</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932408#M1333156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jack,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can either use a FM or directly capture the values from screen.&lt;/P&gt;&lt;P&gt;The reason for not getting the screen values could be the disimilar names in dynpro, &amp;amp; the one used in your program.&lt;/P&gt;&lt;P&gt;Also check, if you are saving values at any user command, check OKCODE or sy-ucomm.&lt;/P&gt;&lt;P&gt;Hope this works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nidhi Kothiyal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 06:35:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932408#M1333156</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T06:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: capturing screen valuess</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932409#M1333157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Jack ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can refer to this link , this link will help you out&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="497760"&gt;&lt;/A&gt;&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;Saurabh goel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 09:57:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932409#M1333157</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T09:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: capturing screen valuess</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932410#M1333158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2009 13:07:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-screen-valuess/m-p/5932410#M1333158</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-03T13:07:00Z</dc:date>
    </item>
  </channel>
</rss>

