<?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: DYNP_UPDATE_FIELDS and table control question. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-and-table-control-question/m-p/1916613#M381193</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jurijs,&lt;/P&gt;&lt;P&gt;    The problem is not so complex as it appears to be.&lt;/P&gt;&lt;P&gt;Firstly, check if there is any option to entrer the data item wise(Without using the table control).&lt;/P&gt;&lt;P&gt;Secondly, if no such option exists, check if there is any button upon clicking which, you  would get the record to the first visible line in the table control.&lt;/P&gt;&lt;P&gt;Or else, you can use the Page Down button to handle a table control.&lt;/P&gt;&lt;P&gt;Refer this example to do a BDC for a table control.&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;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Feb 2007 12:29:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-16T12:29:58Z</dc:date>
    <item>
      <title>DYNP_UPDATE_FIELDS and table control question.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-and-table-control-question/m-p/1916611#M381191</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;There is one problem I'm having. I have to implement a mass upload functionality to standard transaction, so that user can point to external document and data from it is transferred to screen. There can be hundreds of items in a document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I managed to do it partly. Problem is that if document has more items than table control has visible lines, then those lines that don't fit on screen don't appear at all. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to make it work? To trick table control into believing it has more lines than it actually does?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 12:18:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-and-table-control-question/m-p/1916611#M381191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T12:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS and table control question.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-and-table-control-question/m-p/1916612#M381192</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;I believe you can only try to get them by field-symbols if you know which is the internal table for the table screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--&amp;gt; wa_itab has to be like the internal table of the std program&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF WA_ITAB,&lt;/P&gt;&lt;P&gt;          END     OF WA_ITAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;ITAB&amp;gt; TYPE TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: FIELDNAME(30) VALUE '(&amp;lt;standard program&amp;gt;)ITAB[]'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ASSIGN (FIELDNAME) TO &amp;lt;ITAB&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;ITAB&amp;gt; INTO WA_ITAB.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 12:27:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-and-table-control-question/m-p/1916612#M381192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T12:27:13Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS and table control question.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-and-table-control-question/m-p/1916613#M381193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jurijs,&lt;/P&gt;&lt;P&gt;    The problem is not so complex as it appears to be.&lt;/P&gt;&lt;P&gt;Firstly, check if there is any option to entrer the data item wise(Without using the table control).&lt;/P&gt;&lt;P&gt;Secondly, if no such option exists, check if there is any button upon clicking which, you  would get the record to the first visible line in the table control.&lt;/P&gt;&lt;P&gt;Or else, you can use the Page Down button to handle a table control.&lt;/P&gt;&lt;P&gt;Refer this example to do a BDC for a table control.&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;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 12:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-and-table-control-question/m-p/1916613#M381193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T12:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: DYNP_UPDATE_FIELDS and table control question.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-and-table-control-question/m-p/1916614#M381194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Look at the below DEMP Programs &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABLE_CONTROL_1&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABLE_CONTROL_2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 12:31:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynp-update-fields-and-table-control-question/m-p/1916614#M381194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T12:31:09Z</dc:date>
    </item>
  </channel>
</rss>

