<?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: F4 Help on Table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-on-table-control/m-p/2760385#M642596</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;use the ' DYNP_GET_STEPL ' function module to know the row, it will return u the index of the table, based on that, u can get the row details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST. "F4&lt;/P&gt;&lt;P&gt;  FIELD EKPO-EBELP MODULE help_ekpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE help_ekpo INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Transport values to table dynpro/screen table control&lt;/P&gt;&lt;P&gt;  DATA: l_stepl LIKE  sy-stepl,&lt;/P&gt;&lt;P&gt;        l_indx  LIKE  sy-stepl.&lt;/P&gt;&lt;P&gt;  DATA: dynpfields        LIKE dynpread OCCURS 5 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Adjust for scroling within table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_GET_STEPL'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      povstepl        = l_stepl&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      stepl_not_found = 0&lt;/P&gt;&lt;P&gt;      OTHERS          = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  l_indx = tc_ekpotable-top_line + l_stepl - 1. &lt;/P&gt;&lt;P&gt;          "tc_ekpotable should already have been declared&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname     = 'SAPLZZ_EKKO'    "Program name&lt;/P&gt;&lt;P&gt;      dynumb     = '0100'           "Screen number &lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields = dynpfields&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      OTHERS     = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " help_ekpo  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you, if u still have any doubts revert back to me, i will post the entire code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prasant&lt;/P&gt;&lt;P&gt;*Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Sep 2007 04:33:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-06T04:33:42Z</dc:date>
    <item>
      <title>F4 Help on Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-on-table-control/m-p/2760384#M642595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I have created F4 help for a cell in the table control. I have used event Process on value request.I want to know on which row of the table control user has pressed F4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt; Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Sep 2007 09:20:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-on-table-control/m-p/2760384#M642595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-05T09:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help on Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-on-table-control/m-p/2760385#M642596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;use the ' DYNP_GET_STEPL ' function module to know the row, it will return u the index of the table, based on that, u can get the row details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex:&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST. "F4&lt;/P&gt;&lt;P&gt;  FIELD EKPO-EBELP MODULE help_ekpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE help_ekpo INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Transport values to table dynpro/screen table control&lt;/P&gt;&lt;P&gt;  DATA: l_stepl LIKE  sy-stepl,&lt;/P&gt;&lt;P&gt;        l_indx  LIKE  sy-stepl.&lt;/P&gt;&lt;P&gt;  DATA: dynpfields        LIKE dynpread OCCURS 5 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Adjust for scroling within table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_GET_STEPL'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      povstepl        = l_stepl&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      stepl_not_found = 0&lt;/P&gt;&lt;P&gt;      OTHERS          = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  l_indx = tc_ekpotable-top_line + l_stepl - 1. &lt;/P&gt;&lt;P&gt;          "tc_ekpotable should already have been declared&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_UPDATE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname     = 'SAPLZZ_EKKO'    "Program name&lt;/P&gt;&lt;P&gt;      dynumb     = '0100'           "Screen number &lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields = dynpfields&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      OTHERS     = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " help_ekpo  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you, if u still have any doubts revert back to me, i will post the entire code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prasant&lt;/P&gt;&lt;P&gt;*Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2007 04:33:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-on-table-control/m-p/2760385#M642596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-06T04:33:42Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help on Table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-on-table-control/m-p/2760386#M642597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jul 2013 11:25:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-on-table-control/m-p/2760386#M642597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-07-03T11:25:41Z</dc:date>
    </item>
  </channel>
</rss>

