<?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 Table control In BDC in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291098#M155338</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am Confused with onething.&lt;/P&gt;&lt;P&gt;I have done the BDC's but now i am not getting whts the difference in Normal BDC and BDC done for table Control.&lt;/P&gt;&lt;P&gt;So if someone can help me in this and can also send me the code for how to begin with BDC for Table control it will be great help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Apr 2006 06:28:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-26T06:28:12Z</dc:date>
    <item>
      <title>Table control In BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291098#M155338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am Confused with onething.&lt;/P&gt;&lt;P&gt;I have done the BDC's but now i am not getting whts the difference in Normal BDC and BDC done for table Control.&lt;/P&gt;&lt;P&gt;So if someone can help me in this and can also send me the code for how to begin with BDC for Table control it will be great help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2006 06:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291098#M155338</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-26T06:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Table control In BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291099#M155339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm" target="test_blank"&gt;http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2006 06:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291099#M155339</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-26T06:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Table control In BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291100#M155340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Taking care of Table Control&lt;/P&gt;&lt;P&gt;What is the problem here?&lt;/P&gt;&lt;P&gt;First Problem:-&lt;/P&gt;&lt;P&gt;In a table control,in a given column,the screen name of the field does not change irrespective of the row number.&lt;/P&gt;&lt;P&gt;We will have to distinguish the screen fields in the same column.&lt;/P&gt;&lt;P&gt;This is done by concatenating the row number at the end of screen field.For example in transaction va02 in second screen we have field material number(VBAP-MATNR) in the table control.&lt;/P&gt;&lt;P&gt;So we will  refer to material number in first row as vbap-matnr(01) and the second row as vbap-matnr(02) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Taking care of Table Control&lt;/P&gt;&lt;P&gt;Syntax:- &lt;/P&gt;&lt;P&gt;data:int type I,&lt;/P&gt;&lt;P&gt;L_MATNR(14).&lt;/P&gt;&lt;P&gt;I = 0.&lt;/P&gt;&lt;P&gt;Loop at itab.&lt;/P&gt;&lt;P&gt;I = I + 10.&lt;/P&gt;&lt;P&gt;Concatenate &amp;#145;VBAP-MATNR&amp;#146; &amp;#146;(&amp;#146;  I  &amp;#145;)&amp;#146; INTO L_MATNR.&lt;/P&gt;&lt;P&gt;PERFORM  fill_bdctab.&lt;/P&gt;&lt;P&gt;&amp;#133;&amp;#133;..&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Form fill_bdctab will look like following&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;FORM  fill_bdctab.&lt;/P&gt;&lt;P&gt;Perform populate_bdctab using:&lt;/P&gt;&lt;P&gt;&amp;#145; &amp;#145;        l_matnr            itab-matnr&lt;/P&gt;&lt;P&gt;&amp;#133;&amp;#133;..&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;Taking care of Table Control&lt;/P&gt;&lt;P&gt;Second  Problem:-&lt;/P&gt;&lt;P&gt; In case, the table control contains number of populated rows greater then visible on the screen.What do we do?.Two ways:-&lt;/P&gt;&lt;P&gt;1st method :- Use the page down button in standard toolbar.We will have to give okcode corresponding to that while filling bdctab table. &lt;/P&gt;&lt;P&gt;   The problem is that number of rows visible on table control varies from user to user and it depends on user profile.&lt;/P&gt;&lt;P&gt;Taking care of Table Control&lt;/P&gt;&lt;P&gt;2nd  method:- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the &amp;#145;item to top button&amp;#146; on the bottom of table control.&lt;/P&gt;&lt;P&gt;Press on this button and programmatically give row number on the popup screen and press enter.&lt;/P&gt;&lt;P&gt;The row number that you gave will come on top.&lt;/P&gt;&lt;P&gt;Start doing it from 1st row onwards and  your code will work irrespective of user settings&lt;/P&gt;&lt;P&gt;For new page :&lt;/P&gt;&lt;P&gt; perform bdc_field using `BDC_OKCODE&amp;#146;         &amp;#145;=FCNP&amp;#146;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THANX and REGARDS&lt;/P&gt;&lt;P&gt;Vinay Swarup&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2006 06:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291100#M155340</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-26T06:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: Table control In BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291101#M155341</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;  In normal BDC no where U find a table like structure&lt;/P&gt;&lt;P&gt;  so u fill the fields normally.&lt;/P&gt;&lt;P&gt;  But when using Table control U need to handle the &lt;/P&gt;&lt;P&gt;  'page up' and 'page down' in order to fill in the&lt;/P&gt;&lt;P&gt;  table . Also U need to fix the rows per page.&lt;/P&gt;&lt;P&gt;  (This differs because of the screen resolution)&lt;/P&gt;&lt;P&gt;  Check the no. of rows appearing in the Recording and &lt;/P&gt;&lt;P&gt;  set the DEFSIZE as 'X' while calling the &lt;/P&gt;&lt;P&gt;  CALL TRANSACTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  structure opt, which must have the ABAPDictionary type &lt;/P&gt;&lt;P&gt;  CTU_PARAMS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION tcod&lt;/P&gt;&lt;P&gt;       OPTIONS FROM opt ...&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;GSR.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2006 06:40:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291101#M155341</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-26T06:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Table control In BDC</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291102#M155342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Anu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the following links&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1450501"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapfans.com/sapfans/repos/comelite.htm" target="test_blank"&gt;http://www.sapfans.com/sapfans/repos/comelite.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm" target="test_blank"&gt;http://www.sap-img.com/abap/bdc-example-using-table-control-in-bdc.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1446918"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="588603"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="835354"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="1295009"&gt;&lt;/A&gt;&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;Sreenivasulu P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Apr 2006 06:53:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-in-bdc/m-p/1291102#M155342</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-26T06:53:44Z</dc:date>
    </item>
  </channel>
</rss>

