<?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: selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199508#M762491</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jyothi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose CHK1 - Current Cost Plus LTP (ZPUP)&lt;/P&gt;&lt;P&gt;              CHK2 -  Cost Plus LTP pending for validation (ZTUP)&lt;/P&gt;&lt;P&gt;  CHK3 - Cost Plus LTP Comparison Report (ZTUP vs. ZPUP)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;follow below code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: CHK1 TYPE C AS CHCKBOX DEFAULT 'X',&lt;/P&gt;&lt;P&gt;                   CHK2 TYPE C AS CHECKBOX,&lt;/P&gt;&lt;P&gt;                   CHK3 TYPE C AS CHECKBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_plant for  mara-werks, &lt;/P&gt;&lt;P&gt;                       s_material for mara-mtart,&lt;/P&gt;&lt;P&gt;                       s_material for mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This the display the screen as u wanted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You said if i click first check box u need to do some process and if u click second checkbox u want to do some process so what type of process u want to do just tell me so that i ll give answer as per ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if useful &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 26 Dec 2007 12:28:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-26T12:28:12Z</dc:date>
    <item>
      <title>selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199503#M762486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I have to design a selection screen in the following manner&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cost Plus LTP Validation Reports &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;	&lt;/P&gt;&lt;P&gt;Report Type &lt;/P&gt;&lt;P&gt;     		&amp;amp;#61551;   	Current Cost Plus LTP 	 	  (ZPUP)&lt;/P&gt;&lt;P&gt;    		&amp;amp;#61560; 	Cost Plus LTP pending for validation (ZTUP)&lt;/P&gt;&lt;P&gt;     		&amp;amp;#61551;   	Cost Plus LTP Comparison Report  	  (ZTUP vs. ZPUP)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Supplying Plant #  	:   	From __________		to _________ &lt;/P&gt;&lt;P&gt;Material Type 	:	From ____________		to __________ &lt;/P&gt;&lt;P&gt;Material #             	:  	From __________		to _________&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANY LTP PRICES VALID FROM:	__/__/__	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i click the first check box it has to do some process.if i click the second it has to do another process.how can i write a code for check boxes and selecting that particular check box&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 12:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199503#M762486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T12:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199504#M762487</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;  Do like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1 with frame title t1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters : p_chk1 as checkbox,&lt;/P&gt;&lt;P&gt;p_chk2 as checkbox,&lt;/P&gt;&lt;P&gt;p_chk3 as checkbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_werks for marc-werks,&lt;/P&gt;&lt;P&gt;                       s_matnr for marc-matnr,&lt;/P&gt;&lt;P&gt;                       s_matkl for marc-matkl.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seelction-screen end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Prashant Patil on Dec 26, 2007 1:12 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 12:12:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199504#M762487</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-12-26T12:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199505#M762488</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;U might have given name for the check box right,so call them with thir names&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : chk1 as checkbox,&lt;/P&gt;&lt;P&gt;          chk2 as checkbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if chk1 is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do processing.&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;&lt;/P&gt;&lt;P&gt;if chk2 is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do processing.&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 12:13:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199505#M762488</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-12-26T12:13:13Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199506#M762489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jyothi, &lt;/P&gt;&lt;P&gt;u can design the selection screen, i hope so.Then u have to write in coding as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if zpup = 'X'.&lt;/P&gt;&lt;P&gt; ur logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ztup = 'X'.&lt;/P&gt;&lt;P&gt;ur logic&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;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 12:15:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199506#M762489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T12:15:49Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199507#M762490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jyothi can you please make ur point a bit more clear&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like what is want is when you click on one check box then the selection screen should change  then you can use screen group to modify ur selection-screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in case you want the output of report to change then simply use if and endif on differnt check boxes in ur report to make it work accordingly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 12:21:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199507#M762490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T12:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199508#M762491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jyothi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;suppose CHK1 - Current Cost Plus LTP (ZPUP)&lt;/P&gt;&lt;P&gt;              CHK2 -  Cost Plus LTP pending for validation (ZTUP)&lt;/P&gt;&lt;P&gt;  CHK3 - Cost Plus LTP Comparison Report (ZTUP vs. ZPUP)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;follow below code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Parameters: CHK1 TYPE C AS CHCKBOX DEFAULT 'X',&lt;/P&gt;&lt;P&gt;                   CHK2 TYPE C AS CHECKBOX,&lt;/P&gt;&lt;P&gt;                   CHK3 TYPE C AS CHECKBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options: s_plant for  mara-werks, &lt;/P&gt;&lt;P&gt;                       s_material for mara-mtart,&lt;/P&gt;&lt;P&gt;                       s_material for mara-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This the display the screen as u wanted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You said if i click first check box u need to do some process and if u click second checkbox u want to do some process so what type of process u want to do just tell me so that i ll give answer as per ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reply back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if useful &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;sunil kairam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Dec 2007 12:28:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199508#M762491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-26T12:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199509#M762492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;i hope this can help u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: MARA,MARC.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS CH1 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 2(50) LB1.&lt;/P&gt;&lt;P&gt;PARAMETERS CH2 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 2(50) LB2.&lt;/P&gt;&lt;P&gt;PARAMETERS CH3 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 2(50) LB3.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S1 FOR MARC-WERKS,&lt;/P&gt;&lt;P&gt;                S2 FOR MARA-MTART,&lt;/P&gt;&lt;P&gt;                S3 FOR MARA-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE:/ 'ANY LTP PRICES VALID FROM 27/12/2007'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;LB1 = 'Current Cost plus LTP (zpup)'.&lt;/P&gt;&lt;P&gt;LB2 = 'Cost Plus LTP pending for validation (ZTUP)'.&lt;/P&gt;&lt;P&gt;LB3 = 'Cost Plus LTP Comparison Report (ZTUP vs. ZPUP)'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF CH1 = 'X'.&lt;/P&gt;&lt;P&gt;  WRITE:/ 'THIS IS FIRST CHECKBOX'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF CH2 = 'X'.&lt;/P&gt;&lt;P&gt;  WRITE:/ 'THIS IS SECOND CHECKBOX'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;IF CH3 = 'X'.&lt;/P&gt;&lt;P&gt;  WRITE:/ 'THIS IS THIRD CHECKBOX'.&lt;/P&gt;&lt;P&gt;ENDIF.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just go thru it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u want to change the displayed text for variables S1,S2 and S3. then click "GOTO"-&amp;gt;"TEXT ELEMENTS"-&amp;gt;"SELECTION TEXTS".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u need any futher help then i wl clarify them.&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;chandu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 05:50:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/3199509#M762492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T05:50:36Z</dc:date>
    </item>
  </channel>
</rss>

