<?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/1642342#M286047</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankyou for the valuable information guys. But I still have a problem. I am trying to create a sales order screen from BAPI - BAPI_SALESORDER_CREATEFROMDAT2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to provide a table control to capture the order item. There is a structure called - bapisditm. This is what I am binding to the Table Control. I have declared an internal table in my code called order_items_in which references this structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the modify module I have the foolowing code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; modify order_items_in from bapisditm index itemdata-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table Control is called itemdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still after entering data, on pressing enter the data is wiped out. No data on description column is defaulted after selecting material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can this be achieved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points willbe reward. Pliz help. Its a bit urgent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Nov 2006 08:19:22 GMT</pubDate>
    <dc:creator>pbechani</dc:creator>
    <dc:date>2006-11-16T08:19:22Z</dc:date>
    <item>
      <title>Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642339#M286044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am creating a customised screen in SAP using a table control. On pressing ENTER key, the data entered in the table control is deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I solve this issue and to default data into other columns when certain information is entered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How is this data copied to code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 18:56:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642339#M286044</guid>
      <dc:creator>pbechani</dc:creator>
      <dc:date>2006-11-15T18:56:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642340#M286045</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;Create a module UPDATE_DATA and use to update the internal table for the table control..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Process the table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Module to update data.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    MODULE update_data.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE UPDATE_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check the table.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  MODIFY ITAB FROM SCREEN_STRUCTURE&lt;/P&gt;&lt;P&gt;                          INDEX tc-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;TC WILL BE YOUR TABLE CONTROL NAME.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;If the return is not sucessful..Append a record.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    APPEND SCREEN_STRUCTURE TO ITAB.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 19:00:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642340#M286045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T19:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642341#M286046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check transaction BIBS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 19:02:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642341#M286046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T19:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642342#M286047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankyou for the valuable information guys. But I still have a problem. I am trying to create a sales order screen from BAPI - BAPI_SALESORDER_CREATEFROMDAT2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to provide a table control to capture the order item. There is a structure called - bapisditm. This is what I am binding to the Table Control. I have declared an internal table in my code called order_items_in which references this structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the modify module I have the foolowing code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; modify order_items_in from bapisditm index itemdata-current_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The table Control is called itemdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still after entering data, on pressing enter the data is wiped out. No data on description column is defaulted after selecting material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can this be achieved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Points willbe reward. Pliz help. Its a bit urgent&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 08:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642342#M286047</guid>
      <dc:creator>pbechani</dc:creator>
      <dc:date>2006-11-16T08:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642343#M286048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Prince,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      You have a PBO and PAI ok. When you enter data into the Table control make sure you are updating/passing the data to internal table of Table Control. Do this in PAI. Also remember when u enter data and validate PBO fires again. So if u dont update the internal table in PAI, it wont be reflected in PBO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 08:25:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642343#M286048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T08:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642344#M286049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you everyone.The table now works. points awarded&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 10:29:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/1642344#M286049</guid>
      <dc:creator>pbechani</dc:creator>
      <dc:date>2006-11-16T10:29:20Z</dc:date>
    </item>
  </channel>
</rss>

