<?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 screen resolutions in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolutions/m-p/2096443#M436529</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;       could any one provide the code for how to handle  screen resolutions while uploading the data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Apr 2007 15:10:23 GMT</pubDate>
    <dc:creator>former_member557020</dc:creator>
    <dc:date>2007-04-03T15:10:23Z</dc:date>
    <item>
      <title>screen resolutions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolutions/m-p/2096443#M436529</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;       could any one provide the code for how to handle  screen resolutions while uploading the data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2007 15:10:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolutions/m-p/2096443#M436529</guid>
      <dc:creator>former_member557020</dc:creator>
      <dc:date>2007-04-03T15:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: screen resolutions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolutions/m-p/2096444#M436530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;data x_ctuparams type ctu_params.

x_ctuparams-updmode = 'S'.
x_ctuparams-dismode = 'N'.
x_ctuparams-defsize = 'X'.  "For default size resolution

call transaction '&amp;lt;TCODE&amp;gt;' using it_BDCDATA options from x_ctuparams.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&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>Tue, 03 Apr 2007 15:13:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolutions/m-p/2096444#M436530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T15:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: screen resolutions</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolutions/m-p/2096445#M436531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Re: screen resolutions   &lt;/P&gt;&lt;P&gt;Posted: Apr 3, 2007 5:07 PM    in response to: Sambasiva Divvela         Reply      E-mail this post  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You need to use the CTU_PARAM structure alon with the call transaction statment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------" /&gt;&lt;P&gt;**Sturcture of CTU_PARAM&lt;/P&gt;&lt;P&gt;**DISMODE : Display mode (like the MODE addition 'A' , 'E', 'N') &lt;/P&gt;&lt;P&gt;**UPDMODE: Update mode (like the UPDATE addition 'S', 'A') &lt;/P&gt;&lt;P&gt;**DEFSIZE : Use default window size (Here we are handling those transaction by giving default window size) &lt;/P&gt;&lt;P&gt;**RACOMMIT: Do not end transaction at COMMIT WORK &lt;/P&gt;&lt;P&gt;**NOBINPT : No batch input mode (that is, SY-BINPT = SPACE) &lt;/P&gt;&lt;P&gt;**NOBIEND : No batch input mode after the end of BDC data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*The components DEFSIZE , RACOMMIT, NOBINPT, and NOBIEND always take the following values: &lt;/P&gt;&lt;P&gt;'X' Yes &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : L_OPTION TYPE CTU_PARAMS, "Parameter string for runtime of CALL TRANSACTION&lt;/P&gt;&lt;P&gt;L_SUBRC TYPE SYSUBRC.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;L_OPTION-DEFSIZE = 'X'.&lt;/P&gt;&lt;P&gt;L_OPTION-DISMODE = P_MODE.&lt;/P&gt;&lt;P&gt;L_OPTION-UPDMODE = 'S'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'FK01' "FK01-Vendor master creation&lt;/P&gt;&lt;P&gt;USING IT_BDCDATA&lt;/P&gt;&lt;P&gt;MESSAGES INTO IT_MESSTAB&lt;/P&gt;&lt;P&gt;OPTIONS FROM L_OPTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please close the Duplicate thread&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>Tue, 03 Apr 2007 15:14:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-resolutions/m-p/2096445#M436531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-03T15:14:03Z</dc:date>
    </item>
  </channel>
</rss>

