<?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: Screen creation in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722919#M1108891</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT ZSCNCRN MESSAGE-ID z001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE T1 NO INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: NAME(20) TYPE C &lt;STRONG&gt;LOWER CASE,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;PASSWORD(10) TYPE C &lt;STRONG&gt;LOWER CASE&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE11 AS CHECKBOX,&lt;/P&gt;&lt;P&gt;SE38 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: PUSHBUTTON 1(10) PUSH1 USER-COMMAND COM1,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PUSHBUTTON 20(10) PUSH2 USER-COMMAND COM2.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INITIALIZATION.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;T1 = 'LOGON'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;PUSH1 = 'ENTER'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;PUSH2 = 'EXIT'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN &lt;STRONG&gt;'COM1'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF NAME = 'demo' AND PASSWORD = 'best123' AND &lt;STRONG&gt;SE11 = 'X'&lt;/STRONG&gt; AND SE38 = ' '.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'SE51'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ELSEIF NAME = 'demo' AND PASSWORD = ' ' AND &lt;STRONG&gt;SE38 = 'X'&lt;/STRONG&gt; AND SE11 = ' '.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'SE38'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        MESSAGE A000.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LEAVE TO LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;    WHEN 'COM2'.&lt;/P&gt;&lt;P&gt;      MESSAGE I001.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sreekanth reddy on Nov 6, 2008 3:29 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Nov 2008 09:51:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-06T09:51:39Z</dc:date>
    <item>
      <title>Reg: Screen creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722917#M1108889</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;    This s a program for screen creation with login - name,password.I want the password text box should be disable in runtime and when i click yhe push button, it s  not triggering.&lt;/P&gt;&lt;P&gt;Also the error message also not displaying..&lt;/P&gt;&lt;P&gt;     So, can anyone give me the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZSCNCRN MESSAGE-ID z001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen: begin of block b1 with frame title t1 no intervals.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter: Name(20) type c,&lt;/P&gt;&lt;P&gt;           Password(10) type c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;           SE11 as checkbox,&lt;/P&gt;&lt;P&gt;           SE38 as checkbox.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          SE51 radiobutton group g1,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          SE38 radiobutton group g1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen: end of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen: pushbutton 1(10) push1 user-command com1,&lt;/P&gt;&lt;P&gt;                  pushbutton 20(10) push2 user-command com2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;t1 = 'LOGON'.&lt;/P&gt;&lt;P&gt;push1 = 'ENTER'.&lt;/P&gt;&lt;P&gt;push2 = 'EXIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;when 'com1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if name = 'demo' and password = 'best123' and SE11 = 'x' and se38 = ' '.&lt;/P&gt;&lt;P&gt;call transaction 'SE51'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;elseif name = 'demo' and password = '    ' and SE38 = 'x' and SE11 = ' '.&lt;/P&gt;&lt;P&gt;call transaction 'SE38'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;message a000.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;leave to list-processing.&lt;/P&gt;&lt;P&gt;when 'com2'.&lt;/P&gt;&lt;P&gt;message i001.&lt;/P&gt;&lt;P&gt;leave program.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:38:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722917#M1108889</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Screen creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722918#M1108890</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 said you want the password should be disabled, but if that is the case then how will anyone enter any value in it?&lt;/P&gt;&lt;P&gt;And as for the pushbutton not working, in your statement where you check the value of sy-ucomm make sure that the fucntion code in single quotes shoud be caps on, so instead of 'com1' it should be 'COM1'. this will invoke the pushbutton.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;If you want to disable the password field at runtime, write the code&lt;/P&gt;&lt;P&gt;loop at screen.&lt;/P&gt;&lt;P&gt;if screen-name =  '&amp;lt;name of the password field&amp;gt;'.&lt;/P&gt;&lt;P&gt;screen-active = 0.&lt;/P&gt;&lt;P&gt;screen-invisible = 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;this code needs to be written in the event&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:49:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722918#M1108890</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:49:48Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Screen creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722919#M1108891</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT ZSCNCRN MESSAGE-ID z001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE T1 NO INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: NAME(20) TYPE C &lt;STRONG&gt;LOWER CASE,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;PASSWORD(10) TYPE C &lt;STRONG&gt;LOWER CASE&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE11 AS CHECKBOX,&lt;/P&gt;&lt;P&gt;SE38 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: PUSHBUTTON 1(10) PUSH1 USER-COMMAND COM1,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PUSHBUTTON 20(10) PUSH2 USER-COMMAND COM2.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INITIALIZATION.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;T1 = 'LOGON'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;PUSH1 = 'ENTER'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;PUSH2 = 'EXIT'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN &lt;STRONG&gt;'COM1'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF NAME = 'demo' AND PASSWORD = 'best123' AND &lt;STRONG&gt;SE11 = 'X'&lt;/STRONG&gt; AND SE38 = ' '.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'SE51'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ELSEIF NAME = 'demo' AND PASSWORD = ' ' AND &lt;STRONG&gt;SE38 = 'X'&lt;/STRONG&gt; AND SE11 = ' '.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'SE38'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        MESSAGE A000.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LEAVE TO LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;    WHEN 'COM2'.&lt;/P&gt;&lt;P&gt;      MESSAGE I001.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sreekanth reddy on Nov 6, 2008 3:29 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722919#M1108891</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Screen creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722920#M1108892</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 had a correction n my question, password not disable.. it should be n asterix(**********), whereas the typed password shouldn't visible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 09:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722920#M1108892</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T09:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Screen creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722921#M1108893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add the below code below initialization section&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 SCREEN-NAME = 'PASSWORD'.&lt;/P&gt;&lt;P&gt;      SCREEN-INVISIBLE = 1.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 10:01:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722921#M1108893</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T10:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Screen creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722922#M1108894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT ZSCNCRN MESSAGE-ID z001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK B1 WITH FRAME TITLE T1 NO INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: NAME(20) TYPE C LOWER CASE,&lt;/P&gt;&lt;P&gt;PASSWORD(10) TYPE C LOWER CASE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE11 AS CHECKBOX,&lt;/P&gt;&lt;P&gt;SE38 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: PUSHBUTTON 1(10) PUSH1 USER-COMMAND COM1,&lt;/P&gt;&lt;P&gt;PUSHBUTTON 20(10) PUSH2 USER-COMMAND COM2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  T1 = 'LOGON'.&lt;/P&gt;&lt;P&gt;  PUSH1 = 'ENTER'.&lt;/P&gt;&lt;P&gt;  PUSH2 = 'EXIT'.&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 SCREEN-NAME = 'PASSWORD'.&lt;/P&gt;&lt;P&gt;      SCREEN-INVISIBLE = 1.&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;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN 'COM1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF NAME = 'demo' AND PASSWORD = 'best123' AND SE11 = 'X' AND SE38 = ' '.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'SE51'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ELSEIF NAME = 'demo' AND PASSWORD = ' ' AND SE38 = 'X' AND SE11 = ' '.&lt;/P&gt;&lt;P&gt;        CALL TRANSACTION 'SE38'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        MESSAGE A000.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LEAVE TO LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;    WHEN 'COM2'.&lt;/P&gt;&lt;P&gt;      MESSAGE I001.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 10:05:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722922#M1108894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T10:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reg: Screen creation</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722923#M1108895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin &amp;amp; Sreekanth,&lt;/P&gt;&lt;P&gt;           Thanks very much to both of u, u too solved my problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Nov 2008 10:07:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-screen-creation/m-p/4722923#M1108895</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-06T10:07:23Z</dc:date>
    </item>
  </channel>
</rss>

