<?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: Process on value request for table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792295#M40125</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what does it mean posting F4 code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Oct 2004 07:37:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2004-10-28T07:37:41Z</dc:date>
    <item>
      <title>Process on value request for table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792293#M40123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 10 rows in a table control,when a F4 for&lt;/P&gt;&lt;P&gt;a particular column in a row is called,process on value request is called here i call a customized F4 based on the structure mapped to the row,but unfortunaletly unlike the screen the mapped structure is not populated,so is &lt;/P&gt;&lt;P&gt;there a way of getting the structure mapped to the row.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2004 05:10:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792293#M40123</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-28T05:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value request for table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792294#M40124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If possible post your F4 code .&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;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2004 07:04:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792294#M40124</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-28T07:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value request for table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792295#M40125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what does it mean posting F4 code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2004 07:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792295#M40125</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-28T07:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value request for table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792296#M40126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry it is code written for F4&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;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2004 07:58:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792296#M40126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-10-28T07:58:51Z</dc:date>
    </item>
    <item>
      <title>Re: Process on value request for table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792297#M40127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kaushik&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I guess solution would be reading the row into the structure which the F4 screen uses.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;&amp;lt;b&amp;gt;e.g.&amp;lt;/b&amp;gt;&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;GET CURSOR LINE lv_linno .
lv_linno = lv_linno + &amp;lt;table_control_name&amp;gt;-top_line - 1 .
READ TABLE &amp;lt;itab&amp;gt; INTO &amp;lt;screen_structure&amp;gt; INDEX lv_linno.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is not the case, then posting your POV coding will be better to analyze your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Serdar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Oct 2004 10:38:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/process-on-value-request-for-table-control/m-p/792297#M40127</guid>
      <dc:creator>ssimsekler</dc:creator>
      <dc:date>2004-10-28T10:38:21Z</dc:date>
    </item>
  </channel>
</rss>

