<?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: table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419033#M821206</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Debug and check the place where it goes into table control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 23 Feb 2008 14:05:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-23T14:05:25Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419029#M821202</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to implemet the following functionality:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a table control and it has a field matnr.when i enter  a value for matnr in the table control and press enter then the data corresponding to this matnr should be fetched from the table zprice and populated into the fields of the control table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i type the following code then this read query is not being executed.in debugging mode value of sy-subrc is 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read table itab_price with key matnr = itab_LINE-matnr.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;if sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;itab_line-netpr = itab_price-netpr.&lt;/P&gt;&lt;P&gt;itab_line-waers = itab_price-waers.&lt;/P&gt;&lt;P&gt;itab_line-meins = itab_price-meins.&lt;/P&gt;&lt;P&gt; modify ITAB_LINE&lt;/P&gt;&lt;P&gt;    from ITAB_LINE&lt;/P&gt;&lt;P&gt;    index TABLE_LINE-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;looking forward to ur help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 12:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419029#M821202</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T12:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419030#M821203</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pranjal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know 2 values in the internal table itab_price.&lt;/P&gt;&lt;P&gt;Please check if itab_price has the correct set of values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also let me know what is the value of itab_line-matnr for which it is returning sy-subrc = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If itab_price-matnr = 0000123&lt;/P&gt;&lt;P&gt;and if itab_line-matnr = 123&lt;/P&gt;&lt;P&gt;pad itab_line-matnr with zeros&lt;/P&gt;&lt;P&gt;using Function module&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        input  = itab_line-matnr&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        output = itab_line-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sriram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 12:23:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419030#M821203</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T12:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419031#M821204</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have entered matnr as 967 in the zprice table(i m fetching this in the internal table itab_price) and i enter the same value 967 in the table control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 12:46:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419031#M821204</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T12:46:54Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419032#M821205</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i did what u said and used that module.now sy-subrc is 0 but still the fields corresponding to matnr in the table control are not being populated from the internal table itab_price.&lt;/P&gt;&lt;P&gt;thanks in advance:)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 13:01:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419032#M821205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T13:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419033#M821206</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Debug and check the place where it goes into table control.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 23 Feb 2008 14:05:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419033#M821206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-23T14:05:25Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419034#M821207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HELLO,&lt;/P&gt;&lt;P&gt;TRY THE FOLLOWING,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE ITAB INDEX TABCTRL2-CURRENT_LINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 04:26:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419034#M821207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T04:26:41Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419035#M821208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select the fields u want to display take it into itab aggign that itab to table control u will get the data&lt;/P&gt;&lt;P&gt;for further u call me at 9322468903&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Shashi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Feb 2008 06:51:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/3419035#M821208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-25T06:51:16Z</dc:date>
    </item>
  </channel>
</rss>

