<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution/m-p/3655370#M880532</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Sakthi Sri,
Have a look at this . Use additon OPTIONS FROM &amp;lt;ctu_params&amp;gt; to Call Transction statement by specifying defsize = 'X'. Then problem will be solved.

  &lt;PRE&gt;&lt;CODE&gt;DATA:
        w_params TYPE ctu_params,
        i_msgcoll  TYPE STANDARD TABLE OF bdcmsgcoll,
        i_bdcdata  TYPE STANDARD TABLE OF bdcdata.

  "structure of ctu_params.
  "----------------------
  "dismode   processing mode for call transaction using...
  "updmode   update mode for call transaction using...
  "cattmode  catt mode for call transaction using...
  "defsize   default screen size for call transaction using...
  "racommit  call transaction using... is not completed by commit
  "nobinpt   sy-binpt=space for call transaction using...
  "nobiend   sy-binpt=space after data end for call transaction using...

  w_params-dismode = 'A'. "All screen mode
  w_params-updmode = 'A'. "Asynchronous update
  w_params-defsize = 'X'. "standard size

  CALL TRANSACTION 'PA30' USING i_bdcdata MESSAGES INTO i_msgcoll OPTIONS FROM  w_params .&lt;/CODE&gt;&lt;/PRE&gt;

I hope that it helps you .
Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Apr 2008 02:32:43 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2008-04-11T02:32:43Z</dc:date>
    <item>
      <title>Screen Resolution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution/m-p/3655368#M880530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i had a interview question,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt; i am developing my bdc with 10 line items in my development server and in Onsite, it is showing only 5 line items. how come v adjust to get the same no, of line items in both the servers?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz answer me...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 13:58:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution/m-p/3655368#M880530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T13:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Resolution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution/m-p/3655369#M880531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;do this way ...&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 OPT&lt;/P&gt;&lt;P&gt;MESSAGES INTO it_mesg.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;opt of type ctu_params.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPT-DISMODE = 'N'. "no screen mode&lt;/P&gt;&lt;P&gt;OPT-UPDMODE = 'S'. "synchronus update&lt;/P&gt;&lt;P&gt;OPT-NOBINPT = 'X'.&lt;/P&gt;&lt;P&gt;OPT-NOBIEND = 'X'.&lt;/P&gt;&lt;P&gt;OPT-DEFSIZE = 'X'. "Default size&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;KK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 21:30:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution/m-p/3655369#M880531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T21:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Resolution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution/m-p/3655370#M880532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Sakthi Sri,
Have a look at this . Use additon OPTIONS FROM &amp;lt;ctu_params&amp;gt; to Call Transction statement by specifying defsize = 'X'. Then problem will be solved.

  &lt;PRE&gt;&lt;CODE&gt;DATA:
        w_params TYPE ctu_params,
        i_msgcoll  TYPE STANDARD TABLE OF bdcmsgcoll,
        i_bdcdata  TYPE STANDARD TABLE OF bdcdata.

  "structure of ctu_params.
  "----------------------
  "dismode   processing mode for call transaction using...
  "updmode   update mode for call transaction using...
  "cattmode  catt mode for call transaction using...
  "defsize   default screen size for call transaction using...
  "racommit  call transaction using... is not completed by commit
  "nobinpt   sy-binpt=space for call transaction using...
  "nobiend   sy-binpt=space after data end for call transaction using...

  w_params-dismode = 'A'. "All screen mode
  w_params-updmode = 'A'. "Asynchronous update
  w_params-defsize = 'X'. "standard size

  CALL TRANSACTION 'PA30' USING i_bdcdata MESSAGES INTO i_msgcoll OPTIONS FROM  w_params .&lt;/CODE&gt;&lt;/PRE&gt;

I hope that it helps you .
Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Apr 2008 02:32:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolution/m-p/3655370#M880532</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2008-04-11T02:32:43Z</dc:date>
    </item>
  </channel>
</rss>

