<?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 resolution in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-resolution/m-p/2114297#M442330</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to clear the problem of table control resolution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Apr 2007 04:34:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-18T04:34:04Z</dc:date>
    <item>
      <title>table control resolution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-resolution/m-p/2114297#M442330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to clear the problem of table control resolution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;bye.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 04:34:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-resolution/m-p/2114297#M442330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-18T04:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: table control resolution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-resolution/m-p/2114298#M442331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pavan,&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;&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>Wed, 18 Apr 2007 04:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-resolution/m-p/2114298#M442331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-18T04:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: table control resolution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-resolution/m-p/2114299#M442332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: lws_cnt type char2,&lt;/P&gt;&lt;P&gt;lws_field type char15.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_invoicing_plan INTO wa_invoicing_plan.&lt;/P&gt;&lt;P&gt;lws_cnt = sy-tabix.&lt;/P&gt;&lt;P&gt;&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 = lws_cnt &lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;output = lws_cnt .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'FPLT-AFDAT(' lws_cnt ')' INTO lws_field.&lt;/P&gt;&lt;P&gt;CONCATENATE wa_invoicing_plan-date+6(2)&lt;/P&gt;&lt;P&gt;wa_invoicing_plan-date+4(2)&lt;/P&gt;&lt;P&gt;wa_invoicing_plan-date+0(4) INTO lws_date&lt;/P&gt;&lt;P&gt;SEPARATED BY '.'.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING lws_field lws_date.&lt;/P&gt;&lt;P&gt;CONCATENATE 'FPLT-FPROZ(' lws_cnt ')' INTO lws_field.&lt;/P&gt;&lt;P&gt;lws_perct = wa_invoicing_plan-percentage.&lt;/P&gt;&lt;P&gt;CONDENSE lws_perct.&lt;/P&gt;&lt;P&gt;PERFORM bdc_field USING lws_field lws_perct.&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;While calling the transaction give like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: opt TYPE ctu_params.&lt;/P&gt;&lt;P&gt;opt-dismode = 'N'.&lt;/P&gt;&lt;P&gt;opt-updmode = 'A'.&lt;/P&gt;&lt;P&gt;opt-defsize = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION tcode&lt;/P&gt;&lt;P&gt;USING i_bdcdata OPTIONS FROM opt MESSAGES INTO i_messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT i_messages.&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;&amp;lt;b&amp;gt;Reward points if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Apr 2007 04:48:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-resolution/m-p/2114299#M442332</guid>
      <dc:creator>sonu_p2</dc:creator>
      <dc:date>2007-04-18T04:48:52Z</dc:date>
    </item>
  </channel>
</rss>

