<?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: screen resolution problem in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145759#M452602</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;For screen resolution,&lt;/P&gt;&lt;P&gt;Use the default size for table control with the following option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : f_option type ctu_params,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f_option-updmode = 'S'.&lt;/P&gt;&lt;P&gt;f_option-defsize = 'X'.&lt;/P&gt;&lt;P&gt;f_option-dismode = 'N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will take the default size for TC in all systems and solve the screen resolution problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Reward pts if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Apr 2007 07:43:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-12T07:43:56Z</dc:date>
    <item>
      <title>screen resolution problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145754#M452597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when i was transfering data in BDC using table control,i got screen resolution problem.&lt;/P&gt;&lt;P&gt;how to rectify the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 07:05:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145754#M452597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T07:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: screen resolution problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145755#M452598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check and make use of CTU_PARAMS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see in se11.&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;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 07:07:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145755#M452598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T07:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: screen resolution problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145756#M452599</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;Check this coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS type ctu_params.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-DISMODE = 'N'. "no screen mode&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-UPDMODE = 'S'. "synchronous update&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-NOBINPT = 'X'. &lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-NOBIEND = 'X'.&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-DEFSIZE = 'X'. "Default size&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'VA01' USING it_bdcdata&lt;/P&gt;&lt;P&gt;OPTIONS FROM WA_CTU_PARAMS&lt;/P&gt;&lt;P&gt;MESSAGES INTO it_mesg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Default size will play good role in terms of resolution. in one system in table control you can see 10rows, but in others system it will show 20 records. it depends on resolution. but when you set the default size then it will take same (default screen size) in all the systems when you run BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this resolves your query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all the helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 07:08:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145756#M452599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T07:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: screen resolution problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145757#M452600</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;For screen resolution,&lt;/P&gt;&lt;P&gt;Use the default size for table control with the following option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : f_option type ctu_params,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f_option-updmode = 'S'.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;f_option-defsize = 'X'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;f_option-dismode = 'N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will take the default size for TC in all systems and solve the screen resolution problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Reward pts if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 07:08:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145757#M452600</guid>
      <dc:creator>former_member632991</dc:creator>
      <dc:date>2007-04-12T07:08:46Z</dc:date>
    </item>
    <item>
      <title>Re: screen resolution problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145758#M452601</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;we need to check how many lines of data it takes using se51(screen painter).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now in the program we need to program to upload so much data nd hit the next/down button and update next set of records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz let me know if you need further infor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 07:09:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145758#M452601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T07:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: screen resolution problem in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145759#M452602</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;For screen resolution,&lt;/P&gt;&lt;P&gt;Use the default size for table control with the following option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : f_option type ctu_params,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;f_option-updmode = 'S'.&lt;/P&gt;&lt;P&gt;f_option-defsize = 'X'.&lt;/P&gt;&lt;P&gt;f_option-dismode = 'N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction 'VA01' using bdcdata options from f_option messages into bdcerror.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will take the default size for TC in all systems and solve the screen resolution problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Reward pts if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2007 07:43:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution-problem-in-table-control/m-p/2145759#M452602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-12T07:43:56Z</dc:date>
    </item>
  </channel>
</rss>

