<?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: screen-input? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075173#M430033</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, RS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help, actullay I want to toggle for this field. but it always disable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when it display on the screen. my code as the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      if screen-group1 = 'GR1'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        if screen-name = 'V_CURRENT_TERM-FACILITY_NAME'.&lt;/P&gt;&lt;P&gt;           if screen-input = 0.&lt;/P&gt;&lt;P&gt;              screen-input = 1.&lt;/P&gt;&lt;P&gt;           elseif screen-input = 1.&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;        endif.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Apr 2007 00:00:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-09T00:00:59Z</dc:date>
    <item>
      <title>screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075169#M430029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Guru:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a question on SCREEN-INPUT.  In the PAI, I set one field SCREEN-INPUT to 0.  but once click one button. In the PBO, Its value automatically always change to 1.&lt;/P&gt;&lt;P&gt;Is there any place to setup, I want to write code to change it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Apr 2007 23:05:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075169#M430029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-08T23:05:33Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075170#M430030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You must always set the screen attributes in the PBO, not the PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Apr 2007 23:37:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075170#M430030</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-08T23:37:14Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075171#M430031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, RIch Heilman:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your answer.  when I just set this field SCREEN-INPUT to 1 in the PBO. but this field still display diabled in the screen. I don't know why. I think it should be enable because I set it to 1. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Apr 2007 23:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075171#M430031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-08T23:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075172#M430032</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 have to use &amp;lt;b&amp;gt;MODIFY SCREEN&amp;lt;/b&amp;gt; statement, whenever you change any atrribute of screen field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it is like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN.
   IF SCREEN-NAME = 'XYZ'.
      SCREEN-INPUT  = '1'.
   ENDIF.
   MODIFY SCREEN.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you still have a issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Apr 2007 23:48:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075172#M430032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-08T23:48:57Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075173#M430033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, RS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help, actullay I want to toggle for this field. but it always disable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when it display on the screen. my code as the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      if screen-group1 = 'GR1'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        if screen-name = 'V_CURRENT_TERM-FACILITY_NAME'.&lt;/P&gt;&lt;P&gt;           if screen-input = 0.&lt;/P&gt;&lt;P&gt;              screen-input = 1.&lt;/P&gt;&lt;P&gt;           elseif screen-input = 1.&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;        endif.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 00:00:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075173#M430033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T00:00:59Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075174#M430034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the field has been statically defined in screen painter as an input field, then it will have this value everytime the PBO is fired.  So you need only to change the INPUT value when required. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 00:07:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075174#M430034</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-09T00:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075175#M430035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Rich:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my field is input field. but when I debug it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCREEN-REQUIRED = 0. Is that ok or I should set SCREEN-REQUIRED to 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 00:12:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075175#M430035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T00:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075176#M430036</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The REQUIRED field is simply to make it obligatory, but doing this is a little buggy.  If you turn this off, you will not be able to turn it off without a value being entered.  This will not help your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You requirement is to simply turn a field on/off depending on a click off a button, example...  change/display    right?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 00:15:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075176#M430036</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-09T00:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075177#M430037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, RIch Heilman:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right. I just make a field enable or disable when click a button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's simple. but It's not working. I really don't know what happened.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; thank you for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 00:20:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075177#M430037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T00:20:30Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075178#M430038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this is your requirement, here is how to proceed.  Create a simply flag variable in your TOP include or at the top of the program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data:  toggle type c.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in your PAI,  for the specific button or icon,  you will want to toggle the value of this field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;case sy-ucomm.
    when 'CHG'.
        toggle = 'X'.
    when 'DSP'.
        toggle = space.
endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in your PBO,  you will want to check this value and make the feild input or output accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at screen.
   if screen-name = 'YOUR_FIELD'
      and toggle = space.
      screen-input = 0.
      modify screen.
  endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 00:23:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075178#M430038</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-09T00:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075179#M430039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Rich:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try to use your method, but it still not working.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when I click the button  first time, It work, field will be disable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when I click the button again. It not work. field still disable. not change to enable.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 00:51:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075179#M430039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T00:51:41Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075180#M430040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 00:53:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075180#M430040</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-09T00:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075181#M430041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Rich:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is as the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF not v_click_switch is initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the following toggle table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   LOOP AT TC9020-cols INTO cols WHERE index GT 0.&lt;/P&gt;&lt;P&gt;        IF  cols-screen-input = '0'.&lt;/P&gt;&lt;P&gt;          cols-screen-input = '1'.&lt;/P&gt;&lt;P&gt;        ELSEIF  cols-screen-input = '1'.&lt;/P&gt;&lt;P&gt;          cols-screen-input = '0'.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        MODIFY TC9020-cols FROM cols INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;the following toggle the fields&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;        if screen-name = 'V_CURRENT_TERM-FACILITY_NAME' and&lt;/P&gt;&lt;P&gt;                          v_click_switch = 'X'.&lt;/P&gt;&lt;P&gt;           if screen-input = 0.&lt;/P&gt;&lt;P&gt;              screen-input = 1.&lt;/P&gt;&lt;P&gt;           elseif screen-input = 1.&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;        endif.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 00:58:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075181#M430041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T00:58:44Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075182#M430042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Where are yout setting v_click_switch = 'X'.   Show the PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 01:02:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075182#M430042</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-09T01:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075183#M430043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;module m_USER_COMMAND_9010 input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  save_ok = ok_code.&lt;/P&gt;&lt;P&gt;  clear ok_code.&lt;/P&gt;&lt;P&gt;  case SAVE_OK.&lt;/P&gt;&lt;P&gt;*1+ double click on terminal attribute table control&lt;/P&gt;&lt;P&gt;    when 'PICK'.&lt;/P&gt;&lt;P&gt;        perform f_dblclk_table_control.&lt;/P&gt;&lt;P&gt;        perform f_set_button_status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*2+ click on save button&lt;/P&gt;&lt;P&gt;    when 'SAVE'.&lt;/P&gt;&lt;P&gt;       perform f_save_action.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*3+ click on back button&lt;/P&gt;&lt;P&gt;    when 'EXIT'.   " 'BACK' or 'EXIT' or 'CANCEL'.&lt;/P&gt;&lt;P&gt;       perform f_exit_action.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*5+ click on Add (create) button&lt;/P&gt;&lt;P&gt;    when 'ADD'.&lt;/P&gt;&lt;P&gt;       perform f_add_action.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*6+ click on Delete button&lt;/P&gt;&lt;P&gt;    when 'DELE'.&lt;/P&gt;&lt;P&gt;       perform f_delete_action.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*7+ click on switch button&lt;/P&gt;&lt;P&gt;    when 'SWITCHMODE'.&lt;/P&gt;&lt;P&gt;       v_click_switch = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    when others.&lt;/P&gt;&lt;P&gt; endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 01:09:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075183#M430043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T01:09:29Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075184#M430044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please do this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;when 'SWITCHMODE'.
if v_click_switch = space.
    v_click_switch = 'X'.
elseif v_click_switch = 'X'.
    v_click_switch = space.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 01:22:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075184#M430044</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-09T01:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075185#M430045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Rich Heilman:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much. It's working now. I will reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best wishes,&lt;/P&gt;&lt;P&gt;Victor&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 01:34:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075185#M430045</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-09T01:34:06Z</dc:date>
    </item>
    <item>
      <title>Re: screen-input?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075186#M430046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Success!!!!  Wooohoooo.&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;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2007 01:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-input/m-p/2075186#M430046</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-04-09T01:35:39Z</dc:date>
    </item>
  </channel>
</rss>

