<?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 screens in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244917#M143258</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Mar 2006 10:43:47 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-03T10:43:47Z</dc:date>
    <item>
      <title>Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244906#M143247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to design a screen as in SE11 Transaction?&lt;/P&gt;&lt;P&gt;ie with radiobutto and i/o field in report programming.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 08:52:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244906#M143247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T08:52:31Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244907#M143248</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;you need to know about SE51(screen painter)&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/d1/801b50454211d189710000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/d1/801b50454211d189710000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and check the sample programs using ABAPDOCU transaction.&lt;/P&gt;&lt;P&gt;you can see them under &amp;lt;b&amp;gt;dialog programs&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 09:01:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244907#M143248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T09:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244908#M143249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya,&lt;/P&gt;&lt;P&gt;I think you are new to SAP ABAP.&lt;/P&gt;&lt;P&gt;Welcome to SDN!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can achieve this using radio button group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : R1 RADIOBUTTON GROUP RAD1,&lt;/P&gt;&lt;P&gt;             		R2 RADIOBUTTON GROUP RAD1,&lt;/P&gt;&lt;P&gt;          		R3 RADIOBUTTON GROUP RAD1  DEFAULT 'X',&lt;/P&gt;&lt;P&gt;           		S1 RADIOBUTTON GROUP RAD2,&lt;/P&gt;&lt;P&gt;          		S2 RADIOBUTTON GROUP RAD2,&lt;/P&gt;&lt;P&gt;          		S3 RADIOBUTTON GROUP RAD2 DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example Selection screen.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS : P_BUKRS LIKE BKPF-BUKRS OBLIGATORY.&lt;/P&gt;&lt;P&gt;"Company code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_BELNR FOR BKPF-BELNR MODIF ID M01.&lt;/P&gt;&lt;P&gt;"Accounting Doc No&lt;/P&gt;&lt;P&gt;PARAMETERS: P_GJAHR LIKE BKPF-GJAHR MODIF ID M02.&lt;/P&gt;&lt;P&gt;"Fiscal year&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:  S_BLART FOR BKPF-BLART MODIF ID M03,&lt;/P&gt;&lt;P&gt;                                          "Document type&lt;/P&gt;&lt;P&gt;                 S_BUDAT FOR BKPF-BUDAT MODIF ID M04.&lt;/P&gt;&lt;P&gt;"Posting date&lt;/P&gt;&lt;P&gt;PARAMETERS:            		S1 RADIOBUTTON GROUP RAD2,&lt;/P&gt;&lt;P&gt;          		S2 RADIOBUTTON GROUP RAD2,&lt;/P&gt;&lt;P&gt;          		S3 RADIOBUTTON GROUP RAD2 DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 09:02:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244908#M143249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T09:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244909#M143250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;you cannot design a screen in SE11 but you can do in SE51.&lt;/P&gt;&lt;P&gt;There are lots of sample programs available in the transaction ABAPDOCU.Just go thru it..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abdul Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 09:07:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244909#M143250</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-03-03T09:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244910#M143251</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;Try this and kindly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS : p1 RADIOBUTTON GROUP rad1 DEFAULT 'X' USER-COMMAND rad.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 2(10) Text-001 FOR FIELD P1.&lt;/P&gt;&lt;P&gt;parameters   p3(10).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(10) Text-002 FOR FIELD P1.&lt;/P&gt;&lt;P&gt;PARAMETERS : p2 RADIOBUTTON GROUP rad1,  &lt;/P&gt;&lt;P&gt;parameters    p4(10).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 09:07:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244910#M143251</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-03-03T09:07:33Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244911#M143252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this..........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;parameters: r1  radiobutton group g1 .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 10(20) text-001&lt;/P&gt;&lt;P&gt;                   FOR FIELD r1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter : rr1 like RSRD1-TBMA_VAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 09:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244911#M143252</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T09:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244912#M143253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suganya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE11 transaction screen is designed through Module pool program using screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to design a similar screen in report programming, use the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS : p1 RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 4(10) text-001 FOR FIELD p1.&lt;/P&gt;&lt;P&gt;PARAMETERS p2(10).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS : p3 RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 4(10) text-002 FOR FIELD p3.&lt;/P&gt;&lt;P&gt;PARAMETERS p4(10).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS : p5 RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 4(10) text-003 FOR FIELD p5.&lt;/P&gt;&lt;P&gt;PARAMETERS p6(10).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS : p7 RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: COMMENT 4(10) text-003 FOR FIELD p7.&lt;/P&gt;&lt;P&gt;PARAMETERS p8(10).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON /2(10) PUSH1 USER-COMMAND DISP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON 15(10) PUSH2 USER-COMMAND CHAN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN PUSHBUTTON 28(10) PUSH3 USER-COMMAND CREA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  MOVE 'Display' TO PUSH1.&lt;/P&gt;&lt;P&gt;  MOVE 'Change' TO PUSH2.&lt;/P&gt;&lt;P&gt;  MOVE 'Create' TO PUSH3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Neeraj Gupta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 09:36:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244912#M143253</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T09:36:58Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244913#M143254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Neeraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if i use this code ,i am not getting the label.&lt;/P&gt;&lt;P&gt;that's what i needed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 10:31:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244913#M143254</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T10:31:50Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244914#M143255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this..........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;parameters: r1 radiobutton group g1 .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 10(20) text-001&lt;/P&gt;&lt;P&gt;FOR FIELD r1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter : rr1 like RSRD1-TBMA_VAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use above code in text-001 u have to maintain ur label.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;double click text-0001 and maintain there&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 10:34:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244914#M143255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T10:34:33Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244915#M143256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you defined the text-symbols (just double click on TEXT-...)?&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;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 10:34:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244915#M143256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T10:34:35Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244916#M143257</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;You can create the Radio buttons and input/output fields using &lt;/P&gt;&lt;P&gt;Select-options and Parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The labels for these you have to specify in go to -&amp;gt;text elements -&amp;gt;selection texts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There if the fields on the screen are dictionary fields you can check the checkbox which will display the description of the fields mentioned in the data elements of those fields. Otherwise ,we can add the labels there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ,&lt;/P&gt;&lt;P&gt;Sriranjani Chimakurthy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 10:40:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244916#M143257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T10:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244917#M143258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 10:43:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244917#M143258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T10:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244918#M143259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how can be the event set cursor field performed when one radiobutton is selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 11:06:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244918#M143259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T11:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244919#M143260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi suganya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Simple.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Just copy paste in new program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. &lt;/P&gt;&lt;P&gt;REPORT abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : sscrfields.&lt;/P&gt;&lt;P&gt;PARAMETERS : a RADIOBUTTON GROUP g1 USER-COMMAND bb,&lt;/P&gt;&lt;P&gt;             b RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : mm(15) TYPE c.&lt;/P&gt;&lt;P&gt;PARAMETERS : pp(15) TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  IF a = 'X'.&lt;/P&gt;&lt;P&gt;    SET CURSOR FIELD 'MM'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF b = 'X'.&lt;/P&gt;&lt;P&gt;    SET CURSOR FIELD 'PP'.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Mar 2006 11:20:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244919#M143260</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-03T11:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244920#M143261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When one radio button is selected the cursor can be set to the field by set cursor field.but i want the radio  button to be selectd when the cursor is in a field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2006 05:09:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244920#M143261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-04T05:09:05Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244921#M143262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. What u are asking is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The reason is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. got_focus&lt;/P&gt;&lt;P&gt;   lost_focus&lt;/P&gt;&lt;P&gt;    etc,&lt;/P&gt;&lt;P&gt;  such events (which are normally available in &lt;/P&gt;&lt;P&gt;  windows programming)&lt;/P&gt;&lt;P&gt;   are not supported by sap gui.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2006 05:13:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244921#M143262</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-04T05:13:25Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244922#M143263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;how the AT LINE SELECTION EVENT ON ALV REPORT can be performed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2006 05:40:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244922#M143263</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-04T05:40:00Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244923#M143264</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;1. Please post it as a separate question/post&lt;/P&gt;&lt;P&gt;   and close this thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. As per the forum etiquette,&lt;/P&gt;&lt;P&gt;   u may pls award points&lt;/P&gt;&lt;P&gt;   to helpful answers by clicking the STAR&lt;/P&gt;&lt;P&gt;   on the left of that reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2006 05:44:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244923#M143264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-04T05:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screens</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244924#M143265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;chk the help on AT LINE SELECTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event is processed whenever the user chooses a valid line in the list (i.e. a line generated by statements such as WRITE,ULINE, or SKIP) with the cursor and presses the function key which has the function PICK in the interface definition. This should normally be the function key F2, because it has the same effect as double-clicking the mouse, or clicking once in the case of a hotspot. &lt;/P&gt;&lt;P&gt;The processing for the event AT LINE-SELECTION usually generates further list output (the details list) which completely covers the current list display. If you want the current list display to remain visible (to aid user orientation), you can do this with the key word WINDOW. &lt;/P&gt;&lt;P&gt;In most cases, the information from the selected line is used to retrieve more comprehensive information by direct reading. When displaying the original list, you store the key terms needed for this in the HIDE area of the output line. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note &lt;/P&gt;&lt;P&gt;You can choose a line and start new processing even in the details lists. &lt;/P&gt;&lt;P&gt;The following system fields are useful for orientation purposes, since their values change with each interactive event executed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA TEXT(20). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION. &lt;/P&gt;&lt;P&gt;  PERFORM WRITE_AND_HIDE USING SPACE SPACE. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION. &lt;/P&gt;&lt;P&gt;  CASE TEXT. &lt;/P&gt;&lt;P&gt;    WHEN 'List index'. &lt;/P&gt;&lt;P&gt;      PERFORM WRITE_AND_HIDE USING 'X' SPACE. &lt;/P&gt;&lt;P&gt;    WHEN 'User command'. &lt;/P&gt;&lt;P&gt;      PERFORM WRITE_AND_HIDE USING SPACE 'X'. &lt;/P&gt;&lt;P&gt;    WHEN OTHERS. &lt;/P&gt;&lt;P&gt;      SUBTRACT 2 FROM SY-LSIND. &lt;/P&gt;&lt;P&gt;      PERFORM WRITE_AND_HIDE USING SPACE SPACE. &lt;/P&gt;&lt;P&gt;  ENDCASE. &lt;/P&gt;&lt;P&gt;  CLEAR TEXT. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM WRITE_AND_HIDE USING P_FLAG_LSIND P_FLAG_UCOMM. &lt;/P&gt;&lt;P&gt;  WRITE / 'SY-LSIND:'. &lt;/P&gt;&lt;P&gt;  PERFORM WRITE_WITH_COLOR USING SY-LSIND P_FLAG_LSIND. &lt;/P&gt;&lt;P&gt;  TEXT = 'List index'. &lt;/P&gt;&lt;P&gt;  HIDE TEXT. &lt;/P&gt;&lt;P&gt;  WRITE / 'SY-UCOMM:'. &lt;/P&gt;&lt;P&gt;  PERFORM WRITE_WITH_COLOR USING SY-UCOMM P_FLAG_UCOMM. &lt;/P&gt;&lt;P&gt;  TEXT = 'User command'. &lt;/P&gt;&lt;P&gt;  HIDE TEXT. &lt;/P&gt;&lt;P&gt;  IF SY-LSIND &amp;gt; 0. &lt;/P&gt;&lt;P&gt;    WRITE / 'PICK here to go back one list level'. &lt;/P&gt;&lt;P&gt;  ENDIF. &lt;/P&gt;&lt;P&gt;ENDFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM WRITE_WITH_COLOR USING P_VALUE &lt;/P&gt;&lt;P&gt;                            P_FLAG_POSITIVE. &lt;/P&gt;&lt;P&gt;  IF P_FLAG_POSITIVE = SPACE. &lt;/P&gt;&lt;P&gt;    WRITE P_VALUE COLOR COL_NORMAL. &lt;/P&gt;&lt;P&gt;  ELSE. &lt;/P&gt;&lt;P&gt;    WRITE P_VALUE COLOR COL_POSITIVE. &lt;/P&gt;&lt;P&gt;  ENDIF. &lt;/P&gt;&lt;P&gt;ENDFORM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on whether you choose the line at SY-LSIND or SY-UCOMM, the next details list contains the corresponding value with the color "positive". If the line is chosen without HIDE information, the list level is reduced.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Mar 2006 05:48:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screens/m-p/1244924#M143265</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-04T05:48:30Z</dc:date>
    </item>
  </channel>
</rss>

