<?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: CTU_PARAMS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458876#M216735</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry double post. Gunjan has explained it well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Durairaj Athavan Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 25 Jun 2006 12:25:13 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2006-06-25T12:25:13Z</dc:date>
    <item>
      <title>CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458874#M216733</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any one explain the structure CTU_PARAMS  where and how to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mainly&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-DISMODE = 'N'.&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-UPDMODE = 'S'.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;WA_CTU_PARAMS-NOBINPT = 'X'.&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-NOBIEND = 'X'.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-DEFSIZE = 'X'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 12:04:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458874#M216733</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T12:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458875#M216734</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;while using call transaction we can make use of this as:&lt;/P&gt;&lt;P&gt; OPT-NOBINPT = 'X'.&lt;/P&gt;&lt;P&gt; OPT-DISMODE   = 'N'.&lt;/P&gt;&lt;P&gt; OPT-UPDMODE = 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION tcode USING bdcdata&lt;/P&gt;&lt;P&gt;                   MODE   ctumode&lt;/P&gt;&lt;P&gt;                   UPDATE cupdate&lt;/P&gt;&lt;P&gt;                   OPTIONS FROM OPT&lt;/P&gt;&lt;P&gt;                   MESSAGES INTO messtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS FROM opt &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect &lt;/P&gt;&lt;P&gt;This addition gives you control using the values of the components of the structure opt, which must be of the Dictionary type CTU_PARAMS. The components have the following meaning: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DISMODE&lt;/P&gt;&lt;P&gt;Processing mode (comparable with the MODE addition) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDMODE&lt;/P&gt;&lt;P&gt;Update mode (comparable with the UPDATE addition) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CATTMODE&lt;/P&gt;&lt;P&gt;CATT mode (controlling a CATT procedure) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The CATT mode can have the following values: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;' ' No CATT procedure active &lt;/P&gt;&lt;P&gt;'N' CATT procedure without single screen control &lt;/P&gt;&lt;P&gt;'A' CATT procedure with single screen control &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFSIZE&lt;/P&gt;&lt;P&gt;Use standard window size &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RACOMMIT&lt;/P&gt;&lt;P&gt;COMMIT WORK does not end CATT procedure &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOBINPT&lt;/P&gt;&lt;P&gt;No batch input mode, that s SY-BINPT = SPACE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOBIEND&lt;/P&gt;&lt;P&gt;No batch input mode after BDC data has been read &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The components DEFSIZE , RACOMMIT, NOBINPT, NOBIEND always take the following values: &lt;/P&gt;&lt;P&gt;'X' Yes &lt;/P&gt;&lt;P&gt;' ' No &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the OPTIONS addition is omitted, the following settings are valid for the control parameters: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DISMODE from the MODE addition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDMODE&lt;/P&gt;&lt;P&gt;from the UPDATE addition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CATTMODE&lt;/P&gt;&lt;P&gt;No CATT procedure active &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEFSIZE&lt;/P&gt;&lt;P&gt;Do not use standard window size &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RACOMMIT&lt;/P&gt;&lt;P&gt;COMMIT WORK ends procedure successfully &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOBINPT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Batch input mode, that is SY-BINPT =X. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOBIEND&lt;/P&gt;&lt;P&gt;Batch input mode also active after BDC data has been read &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 12:21:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458875#M216734</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T12:21:04Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458876#M216735</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry double post. Gunjan has explained it well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Durairaj Athavan Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 12:25:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458876#M216735</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-06-25T12:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458877#M216736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes its give in the help, however am not still able to understand these statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;NOBINPT&lt;/P&gt;&lt;P&gt;No batch input mode, that s SY-BINPT = SPACE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOBIEND&lt;/P&gt;&lt;P&gt;No batch input mode after BDC data has been read&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 12:32:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458877#M216736</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T12:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458878#M216737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SY-BINPT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;X while a batch input session is running and when an ABAP program is called using CALL TRANSACTION USING, otherwise space. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS FROM in the CALL TRANSACTION USING statement can set SY-BINPT to space either for the entire duration of the program, or at the end of the BDC data ie SY-NOBIEND&lt;/P&gt;&lt;P&gt;. &lt;/P&gt;&lt;P&gt;SY-BINPT is always space during a CATT procedure.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gunjan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Gunjan Kumar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 13:03:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458878#M216737</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T13:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458879#M216738</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;NOBINPT = 'X' means the system variable SY-BINPT is space insead of 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this way your BDC can skip the controls the program does if it works in B.I., i.e. controls like&lt;/P&gt;&lt;P&gt;if sy-binpt = 'X'.&lt;/P&gt;&lt;P&gt;.............&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NOBIEND skip the errors occur when in a dynpro it calls a certain field, but this one isn't in the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Jun 2006 13:51:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458879#M216738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-25T13:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458880#M216739</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 have a questions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; what is the significance of No Batch input in SHDB , does it affects the sqr of screen in PA40 transaction?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jun 2006 11:07:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458880#M216739</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-26T11:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458881#M216740</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;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;WA_CTU_PARAMS-DISMODE = 'N'.  "no screen mode&lt;/P&gt;&lt;P&gt;WA_CTU_PARAMS-UPDMODE = 'S'.  "synchronus 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;Default size will play good role in terms of resoultion. in one system in table control you can see 10rows, but in others system it will show 20 records. it depends on resoultion. 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;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jun 2006 11:27:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/1458881#M216740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-26T11:27:09Z</dc:date>
    </item>
  </channel>
</rss>

