<?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: Push button in table control not visible in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-table-control-not-visible/m-p/3001259#M709087</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can put the pushbutton above the table control, but u cant place it as a column of the table control.the columns to be displayed in the table control should be selected, not dragged from any where.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Nov 2007 09:24:45 GMT</pubDate>
    <dc:creator>hymavathi_oruganti</dc:creator>
    <dc:date>2007-11-13T09:24:45Z</dc:date>
    <item>
      <title>Push button in table control not visible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-table-control-not-visible/m-p/3001256#M709084</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;I am trying to place a push button in a table control.&lt;/P&gt;&lt;P&gt;I drag and drop the push button into the table control as a column.&lt;/P&gt;&lt;P&gt;I am not able to see the push button when i execute the program,All other columns are visible. The push button is in the same group (G1) as that of other columns in the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What could be the reason for the push button not being visible.&lt;/P&gt;&lt;P&gt;Any input would be of great help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;nsp.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 09:16:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-table-control-not-visible/m-p/3001256#M709084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T09:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Push button in table control not visible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-table-control-not-visible/m-p/3001257#M709085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZBCR_TC                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZBCR_TC .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : zcourse .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of gty_course ,&lt;/P&gt;&lt;P&gt;           sel       type c ,&lt;/P&gt;&lt;P&gt;           mark(4) type c .&lt;/P&gt;&lt;P&gt;           include structure zcourse .&lt;/P&gt;&lt;P&gt;types : end of gty_course .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;controls : ztc type tableview using screen '8888' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : gt_course  type standard table of gty_course ,&lt;/P&gt;&lt;P&gt;        gt_cols     like ztc-cols ,&lt;/P&gt;&lt;P&gt;        gw_course type gty_course ,&lt;/P&gt;&lt;P&gt;        gw_temp    type gty_course ,&lt;/P&gt;&lt;P&gt;        gw_cols     like line of ztc-cols ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        gv_fname(30) type c ,&lt;/P&gt;&lt;P&gt;        gv_tot_cols    type i .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection .&lt;/P&gt;&lt;P&gt;  select * from zcourse into corresponding fields of table gt_course .&lt;/P&gt;&lt;P&gt;  clear gw_course .&lt;/P&gt;&lt;P&gt;  gw_course-mark = '@06@' .&lt;/P&gt;&lt;P&gt;  modify gt_course from gw_course index 2 transporting mark .&lt;/P&gt;&lt;P&gt;  clear gw_course .&lt;/P&gt;&lt;P&gt;  gw_course-mark = '@07@' .&lt;/P&gt;&lt;P&gt;  modify gt_course from gw_course index 3 transporting mark .&lt;/P&gt;&lt;P&gt;  describe table ztc-cols lines gv_tot_cols .&lt;/P&gt;&lt;P&gt;  call screen 8888 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  PF_8888  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE PF_8888 OUTPUT.&lt;/P&gt;&lt;P&gt;  set pf-status 'PF_8888' .&lt;/P&gt;&lt;P&gt;  set titlebar 'TITLE_8888' .&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " PF_8888  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  UCOMM_8888  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE UCOMM_8888 INPUT.&lt;/P&gt;&lt;P&gt;  if sy-ucomm = 'BACK' or&lt;/P&gt;&lt;P&gt;    sy-ucomm = 'EXIT' or&lt;/P&gt;&lt;P&gt;    sy-ucomm = 'CANCEL' .&lt;/P&gt;&lt;P&gt;    leave program .&lt;/P&gt;&lt;P&gt;  endif .&lt;/P&gt;&lt;P&gt;  case sy-ucomm .&lt;/P&gt;&lt;P&gt;    when 'SALL' .&lt;/P&gt;&lt;P&gt;      clear gw_temp .&lt;/P&gt;&lt;P&gt;      gw_temp-sel = 'X' .&lt;/P&gt;&lt;P&gt;      modify gt_course from gw_temp&lt;/P&gt;&lt;P&gt;               transporting sel where mandt = '200' .&lt;/P&gt;&lt;P&gt;    when 'DALL' .&lt;/P&gt;&lt;P&gt;      clear gw_temp .&lt;/P&gt;&lt;P&gt;      gw_temp-sel = '' .&lt;/P&gt;&lt;P&gt;      modify gt_course from gw_temp&lt;/P&gt;&lt;P&gt;               transporting sel where mandt = '200' .&lt;/P&gt;&lt;P&gt;    when 'COL' .&lt;/P&gt;&lt;P&gt;      clear : gv_fname, gw_cols .&lt;/P&gt;&lt;P&gt;      loop at ztc-cols into gw_cols .&lt;/P&gt;&lt;P&gt;        if gw_cols-selected = 'X' .&lt;/P&gt;&lt;P&gt;          gv_fname = gw_cols-screen-name+10 .&lt;/P&gt;&lt;P&gt;          message i000(zgeneral) with 'Selected column is' gv_fname .&lt;/P&gt;&lt;P&gt;          gw_cols-selected = '' .&lt;/P&gt;&lt;P&gt;          modify ztc-cols from gw_cols&lt;/P&gt;&lt;P&gt;               transporting selected&lt;/P&gt;&lt;P&gt;               where screen-name = gw_cols-screen-name .&lt;/P&gt;&lt;P&gt;        endif .&lt;/P&gt;&lt;P&gt;      endloop .&lt;/P&gt;&lt;P&gt;      if gv_fname is initial .&lt;/P&gt;&lt;P&gt;        message i000(zgeneral) with 'None of the column was selected' .&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;    when 'HIDE' .&lt;/P&gt;&lt;P&gt;      if gv_tot_cols = 1 .&lt;/P&gt;&lt;P&gt;        message i000(zgeneral) with&lt;/P&gt;&lt;P&gt;                    'At least one column has to be displayed' .&lt;/P&gt;&lt;P&gt;        exit .&lt;/P&gt;&lt;P&gt;      endif .&lt;/P&gt;&lt;P&gt;      clear gw_cols .&lt;/P&gt;&lt;P&gt;      gw_cols-invisible = 'X' .&lt;/P&gt;&lt;P&gt;      modify ztc-cols from gw_cols transporting invisible&lt;/P&gt;&lt;P&gt;                           where selected = 'X' .&lt;/P&gt;&lt;P&gt;      gv_tot_cols = gv_tot_cols - 1 .&lt;/P&gt;&lt;P&gt;    when 'SHOW' .&lt;/P&gt;&lt;P&gt;      describe table ztc-cols lines gv_tot_cols .&lt;/P&gt;&lt;P&gt;      clear gw_cols .&lt;/P&gt;&lt;P&gt;      gw_cols-invisible  = '' .&lt;/P&gt;&lt;P&gt;      gw_cols-selected = '' .&lt;/P&gt;&lt;P&gt;      modify ztc-cols from gw_cols transporting invisible selected&lt;/P&gt;&lt;P&gt;                           where invisible = 'X'.&lt;/P&gt;&lt;P&gt;  endcase .&lt;/P&gt;&lt;P&gt;  clear sy-ucomm .&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " UCOMM_8888  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  fill_tc  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE fill_tc OUTPUT.&lt;/P&gt;&lt;P&gt;  read table gt_course into gw_course index ztc-current_line .&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " fill_tc  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  read_tc  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE read_tc INPUT.&lt;/P&gt;&lt;P&gt;  modify gt_course from gw_course index ztc-current_line .&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " read_tc  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 09:22:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-table-control-not-visible/m-p/3001257#M709085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T09:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Push button in table control not visible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-table-control-not-visible/m-p/3001258#M709086</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;Look at the demo program in SAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABLE_CONTROL_2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here in this Program we have code for page up and Page down, you can use that code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below links.&lt;/P&gt;&lt;P&gt;just refer to the link below&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapmaterial.com/tablecontrol_sap.html" target="test_blank"&gt;http://www.sapmaterial.com/tablecontrol_sap.html&lt;/A&gt; &lt;/P&gt;&lt;P&gt;step by step procedure with screen shots &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/howdo_a.htm" target="test_blank"&gt;http://www.planetsap.com/howdo_a.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac5135c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dbac5135c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.niraj.tripod.com/id25.html" target="test_blank"&gt;http://sap.niraj.tripod.com/id25.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can see the below examples...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to se38 and give demo&lt;STRONG&gt;dynpro&lt;/STRONG&gt; and press F4.&lt;/P&gt;&lt;P&gt;YOu will get a list of demo module pool programs.&lt;/P&gt;&lt;P&gt;One more T-Code is ABAPDOCU.&lt;/P&gt;&lt;P&gt;YOu can find more examples there.&lt;/P&gt;&lt;P&gt;See the prgrams:&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement &lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/ZSAPcHAT" target="test_blank"&gt;http://www.geocities.com/ZSAPcHAT&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;A href="http://www.allsaplinks.com/files/using_table_in_screen.pdf" target="test_blank"&gt;http://www.allsaplinks.com/files/using_table_in_screen.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 09:24:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-table-control-not-visible/m-p/3001258#M709086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-13T09:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Push button in table control not visible</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-table-control-not-visible/m-p/3001259#M709087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can put the pushbutton above the table control, but u cant place it as a column of the table control.the columns to be displayed in the table control should be selected, not dragged from any where.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Nov 2007 09:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/push-button-in-table-control-not-visible/m-p/3001259#M709087</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2007-11-13T09:24:45Z</dc:date>
    </item>
  </channel>
</rss>

