<?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: Logic needed pls... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894992#M935027</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;  Don't try to display check box as it is in the top of page. Instead you can write the text of the check box along with value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Check the below code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF p_check1 = 'X'.&lt;/P&gt;&lt;P&gt;then display the text of this check box along with 'X'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Jun 2008 08:10:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-03T08:10:09Z</dc:date>
    <item>
      <title>Logic needed pls...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894991#M935026</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;     In my ALV report i need to display some data on top of page depending on the selection criterian. everything is working fine, but there is one field which has four check boxes. I need to display these (checked) checkboxes description on top of page. for example, if first and second checked only those two shld be displayed. if first and last only those two and if all are checked, all check boxes description should be displayed on top of page. Any easy way to acheive this..pls helpme....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Thanks&lt;/P&gt;&lt;P&gt;        Ram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 08:07:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894991#M935026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T08:07:41Z</dc:date>
    </item>
    <item>
      <title>Re: Logic needed pls...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894992#M935027</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;  Don't try to display check box as it is in the top of page. Instead you can write the text of the check box along with value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Check the below code....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF p_check1 = 'X'.&lt;/P&gt;&lt;P&gt;then display the text of this check box along with 'X'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Bujji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 08:10:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894992#M935027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T08:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: Logic needed pls...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894993#M935028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Pls check the following code. it ll help u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;form alv_comment_build using lt_top_of_page type
                                        slis_t_listheader.
  data: ls_line type slis_listheader.
*
  clear lv_title.
  lv_title = text-100.

  clear ls_line.
  ls_line-typ  = 'S'.
  ls_line-key  = text-108.
  ls_line-info = lv_z1log_lines.
  append ls_line to lt_top_of_page.

  clear ls_line.
  ls_line-typ  = 'S'.
  ls_line-key  = text-113.
    ls_line-info = text-101.
  append ls_line to lt_top_of_page.
endform.                    " ALV_COMMENT_BUILD&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 08:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894993#M935028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T08:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Logic needed pls...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894994#M935029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bujji,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          I am trying to display description of check boxes only. what u sggested is correct, but i have four check boxes here. instead of coding on different combinations is there any easy way to proceed..because i need to check all diff combinations to display those deatils.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;     Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 08:18:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894994#M935029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T08:18:44Z</dc:date>
    </item>
    <item>
      <title>Re: Logic needed pls...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894995#M935030</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;  Any suggestion for my above question plss....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 08:44:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894995#M935030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T08:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Logic needed pls...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894996#M935031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is that field (with 4 check boxes) belonging to selection screen or ALV?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is from selection screen then we have to follow Bujji's suggestion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we need to check whether first check box is checked or not if it is yes display its description using event print_top_of_page of cl_gui_alv_grid..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;same for remaining three check boxes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here combination check is not necessary i think.U r saying that individual description of check boxes has to display.right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sushama Vivek on Jun 3, 2008 12:15 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 09:23:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-needed-pls/m-p/3894996#M935031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T09:23:49Z</dc:date>
    </item>
  </channel>
</rss>

