<?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: problem with table control! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517691#M846050</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Stephan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ur reply .!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ill try it..!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Mar 2008 17:11:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-07T17:11:09Z</dc:date>
    <item>
      <title>problem with table control!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517689#M846048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Guru's !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;am working with table control for &lt;STRONG&gt;XD01&lt;/STRONG&gt; transaction.&lt;/P&gt;&lt;P&gt;am populating &lt;STRONG&gt;table control&lt;/STRONG&gt; data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;based on my Graphic resolution its populating the data..!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in my flat file am having 8 bank details.!&lt;/P&gt;&lt;P&gt;in my screen if   resolution is &lt;STRONG&gt;less&lt;/STRONG&gt; its showing up to 5 rows only .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when  my resolution &lt;STRONG&gt;more&lt;/STRONG&gt; then its working correctly showing more than 8 rows in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, i want irrespective of my resolution i have to populate the &lt;STRONG&gt;TABLE CONTROL&lt;/STRONG&gt; data !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;am using &lt;STRONG&gt;Call Transaction&lt;/STRONG&gt; Method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i know the procedure while  working with &lt;STRONG&gt;Session&lt;/STRONG&gt; method but i didnt worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using FM &lt;STRONG&gt;BDC_INSERT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;by passing  the  parameter &lt;STRONG&gt;CTU_PARAMS&lt;/STRONG&gt;  we can over come that.!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what the case in &lt;STRONG&gt;Call transcation.!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help me.!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks  &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rajsh..!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 06:26:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517689#M846048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T06:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: problem with table control!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517690#M846049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rajsh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can also use CTU_PARAMS within your call transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to use:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: p_opt TYPE ctu_params.

* Fill the options depending on your requirement e.g.
  MOVE: 'S' TO p_opt-updmode,          "Update mode
        'X' TO p_opt-nobinpt,          "No BI-mode /sy-binpt = ''
        'N' TO p_opt-dismode.

CALL TRANSACTION 'XD01' USING bdcdata
     OPTIONS FROM p_opt.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 08:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517690#M846049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T08:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: problem with table control!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517691#M846050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Stephan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for ur reply .!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ill try it..!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2008 17:11:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517691#M846050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-07T17:11:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem with table control!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517692#M846051</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;even im populating the CTU_PARAMS&lt;/P&gt;&lt;P&gt;am using the parameter : &lt;STRONG&gt;Default size Screen&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how its working  means ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;irrespective of my screen resolution its Showing only 10 records in table control..!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but am unable to populating  from the &lt;STRONG&gt;11 th&lt;/STRONG&gt; record into table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i populate from the 11 th record onwards ,&lt;/P&gt;&lt;P&gt;can any one help me..regarding that..!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Rajesh.K&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 04:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517692#M846051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T04:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: problem with table control!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517693#M846052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rajesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after filling the 10th line, scroll one page down. Then you can fill the next line (normally the 1st line is filled, i.e. after scrolling you have to fill the 2nd line). You can also try to scroll after filling the 2nd line - when there's only the first line filled after scolling, you can fill the 2nd line and scroll again, fill the 2nd line ... (think it depends on the program).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stephan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 08 Mar 2008 17:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-table-control/m-p/3517693#M846052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-08T17:55:18Z</dc:date>
    </item>
  </channel>
</rss>

