<?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: reg selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026151#M962190</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Do the sight modification  to your sel screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;modif id:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      The addition MODIF ID assigns all the screen elements for the selection criterion to the modification group modid that is assigned to column group1 in the system table screen. This means they can be modified with a MODIFY SCREEN statement before the selection screen is displayed. You must specify the name of the modification group modid directly and it can only contain a maximum of three characters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;refer the code:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST47.&lt;/P&gt;&lt;P&gt;tables : bkpf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk3 WITH FRAME TITLE text-t03.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /1(50) TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS:p_carr TYPE c AS CHECKBOX USER-COMMAND UC1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_doc FOR bkpf-blart &lt;STRONG&gt;MODIF ID mg1&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;&lt;STRONG&gt;If check box is enabled ,then you can not enter values in in S_doc(graded out).&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;if p_carr eq 'X' AND screen-group1 = 'MG1' .&lt;/P&gt;&lt;P&gt;           screen-INPUT = 0.&lt;/P&gt;&lt;P&gt;           modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if help ful&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Umakanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jun 2008 06:18:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-18T06:18:41Z</dc:date>
    <item>
      <title>reg selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026147#M962186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk3 WITH FRAME TITLE text-t03.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /1(50) comm1 MODIF ID mg1.&lt;/P&gt;&lt;P&gt;PARAMETERS:p_carr TYPE c AS CHECKBOX USER-COMMAND UC1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_doc FOR bkpf-blart.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my selection screen. in this i have to make s_doc parameter in disable mode . it should be enabled only if the checkbox p_carr is clicked.otherwise it should be in disable mode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so can u plz help me out in getting this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 04:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026147#M962186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T04:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: reg selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026148#M962187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   Write:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF p_carr = 'X'.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'MG1'.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 05:02:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026148#M962187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T05:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: reg selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026149#M962188</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 must do it in AT SELECTION-SCREEN OUTPUT event&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk3 WITH FRAME TITLE text-t03.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /1(50) comm1.&lt;/P&gt;&lt;P&gt;PARAMETERS:p_carr TYPE c AS CHECKBOX USER-COMMAND UC1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_doc FOR bkpf-blart modif id mod.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;   loop at screen .&lt;/P&gt;&lt;P&gt;      if p_carr = 'X' and screen-group1 = 'MOD'.&lt;/P&gt;&lt;P&gt;         screen-input = 1.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;     elseif screen-group1 = 'MOD'.&lt;/P&gt;&lt;P&gt;         screen-input = 0.&lt;/P&gt;&lt;P&gt;         modify screen.&lt;/P&gt;&lt;P&gt;     endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;prasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 05:03:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026149#M962188</guid>
      <dc:creator>prasanth_kasturi</dc:creator>
      <dc:date>2008-06-18T05:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: reg selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026150#M962189</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;It can be done like below........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES bkpf.

SELECTION-SCREEN BEGIN OF BLOCK blk WITH FRAME.
PARAMETERS:p_chk TYPE c AS CHECKBOX USER-COMMAND chk.
SELECT-OPTIONS:s_doc FOR bkpf-blart.
SELECTION-SCREEN END OF BLOCK blk.

AT SELECTION-SCREEN OUTPUT..

  CASE p_chk.
    WHEN 'X'.
      LOOP AT SCREEN.
        CHECK screen-name = 'S_DOC-LOW' OR
              screen-name = 'S_DOC-HIGH'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDLOOP.
    WHEN OTHERS.
      LOOP AT SCREEN.
        CHECK screen-name = 'S_DOC-LOW' OR
              screen-name = 'S_DOC-HIGH'.
        screen-input = 1.
        MODIFY SCREEN.
      ENDLOOP.
  ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Jose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 05:03:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026150#M962189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T05:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: reg selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026151#M962190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Do the sight modification  to your sel screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;modif id:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      The addition MODIF ID assigns all the screen elements for the selection criterion to the modification group modid that is assigned to column group1 in the system table screen. This means they can be modified with a MODIFY SCREEN statement before the selection screen is displayed. You must specify the name of the modification group modid directly and it can only contain a maximum of three characters. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;refer the code:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST47.&lt;/P&gt;&lt;P&gt;tables : bkpf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK blk3 WITH FRAME TITLE text-t03.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT /1(50) TEXT-001.&lt;/P&gt;&lt;P&gt;PARAMETERS:p_carr TYPE c AS CHECKBOX USER-COMMAND UC1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:s_doc FOR bkpf-blart &lt;STRONG&gt;MODIF ID mg1&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK blk3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;&lt;STRONG&gt;If check box is enabled ,then you can not enter values in in S_doc(graded out).&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;if p_carr eq 'X' AND screen-group1 = 'MG1' .&lt;/P&gt;&lt;P&gt;           screen-INPUT = 0.&lt;/P&gt;&lt;P&gt;           modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if help ful&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Umakanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 06:18:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-selection-screen/m-p/4026151#M962190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T06:18:41Z</dc:date>
    </item>
  </channel>
</rss>

