<?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 CTU_PARAMS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/3850097#M925591</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody tell me what is the role of CTU_PARAMS In Call Transaction Method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: swamy katta on May 13, 2008 10:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 May 2008 14:56:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-13T14:56:06Z</dc:date>
    <item>
      <title>CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/3850097#M925591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello all &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody tell me what is the role of CTU_PARAMS In Call Transaction Method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: swamy katta on May 13, 2008 10:56 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 14:56:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/3850097#M925591</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T14:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/3850098#M925592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer to this related thread&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="5376741"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 15:01:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/3850098#M925592</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T15:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/3850099#M925593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;DEFSIZE = 'X' means the screen size will be constant irrespective of the screen resolution.&lt;/P&gt;&lt;P&gt;Say you are doing a bdc for some transaction which has X number of lines in a table control when resolution is some A.&lt;/P&gt;&lt;P&gt;If you change the resolution to some other value say B, the number of visible line wil change to Y.&lt;/P&gt;&lt;P&gt;You cannot know how many lines are visible to handle your BDC logic at run time. If the defsize is not set to 'X', then it may lead to errors in BDC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so in your call transaction statement, we use this defsize.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;x_ctu_params-mode = 'N'.&lt;/P&gt;&lt;P&gt;x_ctu_params-update = 'S'.&lt;/P&gt;&lt;P&gt;x_ctu_params-defsize = 'X'.&lt;/P&gt;&lt;P&gt;call transaction 'VA01' using t_bdcdata options from x_ctu_params.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check sample code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code&lt;/P&gt;&lt;P&gt;data: begin of i_options occurs 0.&lt;/P&gt;&lt;P&gt;include structure ctu_params.&lt;/P&gt;&lt;P&gt;data: end of i_options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;refresh : i_bdc, i_message, i_options.&lt;/P&gt;&lt;P&gt;move : 'N' to i_options-dismode,&lt;/P&gt;&lt;P&gt;'L' to i_options-updmode,&lt;/P&gt;&lt;P&gt;c_x to i_options-defsize.&lt;/P&gt;&lt;P&gt;append i_options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction v_tcode using i_bdc options from i_options&lt;/P&gt;&lt;P&gt;messages into i_message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[/code]&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;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 15:33:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/3850099#M925593</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T15:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: CTU_PARAMS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/3850100#M925594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swamy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Call transaction &amp;lt;tcode&amp;gt; using BDCDATA mode &lt;STRONG&gt;A/E/N/P&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;    update S/A  &lt;STRONG&gt;options from&lt;/STRONG&gt;    Messages into messtab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of giving &lt;STRONG&gt;mode&lt;/STRONG&gt; and &lt;STRONG&gt;update&lt;/STRONG&gt; options we use this structure CTU_PARAMS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The CTU_PARAMS structure has the components &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1.DISMODE&lt;/STRONG&gt;      ---&amp;gt;Specified by Mode addition&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2.UPMODE&lt;/STRONG&gt;      -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt;Specified by update addition&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3.CATTMODE&lt;/STRONG&gt;  -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;Enables CATT for complex transactions.&lt;/P&gt;&lt;P&gt; Normally batch input is data transfer where as Computer aided test tool is for complex trasactions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4.DEFSIZE&lt;/STRONG&gt;     -&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt;&amp;gt;Default size of window&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5.RACOMMIT&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;6.NOBIEND&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't know abt 5 &amp;amp; 6.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this is useful for you.Award points if useful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Ravee..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ravee on May 13, 2008 10:29 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ravee on May 13, 2008 10:30 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 16:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/ctu-params/m-p/3850100#M925594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T16:59:28Z</dc:date>
    </item>
  </channel>
</rss>

