Screen Painter experts....please help

I am having a screen with 5 fields. Based on the value in the first fields I need to gray out the remaining 4 fields. Please suggest.

Here is a quick and dirty sample.  Screen 100 has four fields on it.  FIELD1, FIELD2, FIELD3, FIELD4.  When you put an "X" in FIELD1 and hit enter,  then the rest of the fields will grey out.
report zrich_0001.
data: field1(10) type c,
      field2(10) type c,
      field3(10) type c,
      field4(10) type c.
data: ok_code type sy-ucomm,
      save_ok type sy-ucomm.
start-of-selection.
  call screen 100.
*&      Module  status_0100  OUTPUT
*       text
module status_0100 output.
  set pf-status '0100'.
  set titlebar  '0100'.
  if field1 = 'X'.
    loop at screen.
      if screen-name = 'FIELD2'
        or screen-name = 'FIELD3'
        or screen-name = 'FIELD4'.
        screen-input = '0'.
        modify screen.
      endif.
    endloop.
  endif.
endmodule.
*&      Module  user_command_0100  INPUT
*       text
module user_command_0100 input.
  save_ok = ok_code.
  case ok_code.
    when 'BACK'.
      leave program.
  endcase.
endmodule.
Regards,
Rich Heilman

Similar Messages

  • BDC - table control - experts please help

    Hi experts,
    Please help. I am in need of your help.
    I am working with BDC and I have a table control in one of the screen. Table control has a check box in the first column. While recording how I entered the data is : I select the check box in a row, enter two values in next two columns of that row and then hit enter then the other columns in that row turn from grey to white (initially these columns are greyed out).
    NOw in BDC when I run my session in foreground, I am able to check(select) the check box and enter the values in next two columns and then I have a Enter OKCODE. But when I hit enter it is not able to recognize the row and its unable to turn the greyed out columns in that particular row to white.
    Is there a way to specify in my program that I am hitting enter in one particular row.
    Please help. Let me know if something is not clear. Very urgent . Pleasee respond. Thanks

    Hi Rich,
    Thanks for the replies. I will try that. I got one more doubt. While manually creating the recipes using C201, there is a screen Recipe header. When I record this transaction, I see a different screen for the Recipe header. Fro example the screen numbers are like 4210(manual) and 4211(recording).
    But my problem is there are two fields which are missing in the screen which I am getting while recording C201. These two fields are present on the screen for manual creation. I need to enter those two fields while I record. But how can I do this.
    Please help.

  • Hey all ,  my apple ipad 16gb wifi only  is showing a blue screen !! please help ! how do i fix this . what does it mean ? thanks in advance .

    hey all ,  my apple ipad 16gb wifi only  is showing a blue screen !! please help ! how do i fix this . what does it mean ? thanks in advance .

    Thank u verrrrrrrrrrry much FoxFifth u save my life thank u.

  • I forgot the code for my iPhone to access the Home screen I do , please help me try formatting the iphone but when I put in nfc mode and connect it to the pc recognizes it and everything when you try to format the error 3004 appears

    I forgot the code for my iPhone to access the Home screen I do , please help me
    try formatting the iphone but when I put in nfc mode and connect it to the pc recognizes it and everything when you try to format the error 3004 appears

    Hello polo-angulo,
    I apologize, I'm a bit unclear on the nature and scope of the issue you are describing. If you are saying that you are getting an error code (3004) when you try to restore your iPhone (because you could not remember your passcode), you may find the information and troubleshooting steps outlined in the following articles helpful:
    Resolve iOS update and restore errors in iTunes - Apple Support
    Get help with iOS update and restore errors - Apple Support
    Sincerely,
    - Brenden

  • SQL experts please help for a query

    I have following table1.
    What query can give the result as given below, SQL experts please help on this.
    TABLE1
    Event DATETIME
    in 2/JAN/2010
    out 2/JAN/2010
    in 13/JAN/2010
    out 13/JAN/2010
    in 5/JAN/2010
    out 5/JAN/2010
    RESULT REQUIRED FROM THE SQL QUERY
    COL1_IN COL2_OUT
    2/JAN/2010 2/JAN/2010
    13/JAN/2010 13/JAN/2010
    5/JAN/2010 5/JAN/2010

    I tried to help, but this puzzles me.
    Why is this not returning pre-selected set of rows, why it's doing some merge join cartezian ?
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> select * from table1;
    EVENT      DATETIME
    in         2/JAN/2010
    out        2/JAN/2010
    in         13/JAN/2010
    out        13/JAN/2010
    in         5/JAN/2010
    out        5/JAN/2010
    6 rows selected.
    SQL> explain plan for
      2  with a as
    (select datetime from table1 where event='in'),
    b as
    (select datetime from table1 where event='out')
    select  a.datetime COL1_IN ,b.datetime COL2_OUT from a,b ;
    Explained.
    SQL> set wrap off
    SQL> set linesize 200
    SQL> select * from table(dbms_xplan.display);
    PLAN_TABLE_OUTPUT
    Plan hash value: 185132177
    | Id  | Operation            | Name   | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT     |        |     9 |   288 |     8   (0)| 00:00:01 |
    |   1 |  MERGE JOIN CARTESIAN|        |     9 |   288 |     8   (0)| 00:00:01 |
    |*  2 |   TABLE ACCESS FULL  | TABLE1 |     3 |    48 |     3   (0)| 00:00:01 |
    |   3 |   BUFFER SORT        |        |     3 |    48 |     5   (0)| 00:00:01 |
    |*  4 |    TABLE ACCESS FULL | TABLE1 |     3 |    48 |     2   (0)| 00:00:01 |
    PLAN_TABLE_OUTPUT
    Predicate Information (identified by operation id):
       2 - filter("EVENT"='in')
       4 - filter("EVENT"='out')
    Note
       - dynamic sampling used for this statement
    21 rows selected.
    SQL> with a as
    (select datetime from table1 where event='in'),
    b as
    (select datetime from table1 where event='out')
    select  a.datetime COL1_IN ,b.datetime COL2_OUT from a,b ;
    COL1_IN         COL2_OUT
    2/JAN/2010      2/JAN/2010
    2/JAN/2010      13/JAN/2010
    2/JAN/2010      5/JAN/2010
    13/JAN/2010     2/JAN/2010
    13/JAN/2010     13/JAN/2010
    13/JAN/2010     5/JAN/2010
    5/JAN/2010      2/JAN/2010
    5/JAN/2010      13/JAN/2010
    5/JAN/2010      5/JAN/2010
    9 rows selected.
    SQL>

  • I bought an iphone 5 from one of my friends and unluckily I had yet lost his contact, I had update this iphone to IOs 7 and now it's be locked at iCloud because there was no password . Actually I dont know what I must do for its. Experts, please help me!

    I bought an iphone 5 from one of my friends and unluckily I had yet lost his contact, I had update this iphone to IOs 7 and now it's be locked at iCloud because there was no password . Actually I dont know what I must do for its. Experts, please help me!

    The friend who sold it to you needed to clear his Apple ID off the phone before he sold it to you. Of course if it wasn't his phone in the first place then he could not do so. He is your friend but you don't know where he is?
    There is nothing that will help you short of getting the password for the Apple ID from your friend. If you cannot obtain that there is no workaround.

  • I instaled osx 10.8 and when i turn computer screen no.. please help me

    I instaled osx 10.8 and when i turn computer screen no.. please help me

    I'm sorry......what is the issue?

  • Windows Server 2008 black screen with mouse *PLEASE HELP*

    Hello fellow techs,
    I have been tearing my hair out for the past 12hrs on this issue.
    About 3 weeks ago, one of our clients reported that they were experiencing
    issues on the network so one of the staff went into the server room and noticed
    the screen was black with only the cursor. As they couldn't reboot, they
    decided to hold the power button to power it off. When they powered it back
    up, it went passed the windows loading
    splash screen, and again the screen is black with
    the mouse pointer in the center of the screen.
    I am diagnosing the server and find that at the black screen, I’m able to move
    the cursor and beyond that nothing happened. I started in safe mode with the
    exact same results.
    I have been trying many different solutions from posts that I have found in
    Google but no change.
    From other machines you can type \\servername in
    the run box and see the shared folders, as well as ping it.
    This is a very urgent request as I need to have the Server back up and running
    by tomorrow.
    I am quiet willing to pay for phone support with anyone that can assist as soon
    as possible. I am happy to transfer founds via Paypal.<o:p></o:p>
    PLEASE HELP!

    Hi,
    I agree with sm, you should give us more details. Also you should use sfc  /scannow
    command to scans the integrity of all protected system files and repairs files with problems when possible. For more details, please refer to the following article.
    Sfc
    http://technet.microsoft.com/en-us/library/ff950779.aspx
    Before going further, would you please let me know whether there were any changes on the affected server? Has windows update or any new device been added? Please also check your shadow copies.
    The Windows Server black screen may be caused by them.
    In addition, there are similar questions, please refer to.
    Windows Server 2008 black screen
    http://social.technet.microsoft.com/Forums/en-US/463b529b-26a6-4d5d-88f5-7d8b3460d165/black-screen-windows-2008-r2
    Windows Server 2008 and the Black Screen of Waiting
    http://projectdream.org/wordpress/2009/03/03/windows-server-2008-and-the-black-screen-of-waiting/
    By a way, you also can be able to boot into last know good configuration to solve the trouble. You can refer to the following similar question that provide the detailed operations.
    Windows Server 2008 black screen with only the mouse pointer showing
    http://social.technet.microsoft.com/Forums/en-US/5c878af8-78f2-430d-9530-a0e5ad73ff03/windows-server-2008-black-screen-with-only-the-mouse-pointer-showing
    Hope this helps.
    Best regards,
    Justin Gu

  • STUCK ON GREY SCREEN! !PLEASE HELP!

    !!HELP!! STUCK ON GREY SCREEN
    I have a MacBook 10.5. Its a few years old anyway it seemed to be working fine up until a couple of weeks ago then it started taking ages to startup.
    I started it in singlemode then typed /sbin/fsck -fy then a message came up "harddrive appears to be ok" next i typed "reboot" and the system started booting.It started as normal with the apple logo and spinning chime,next the screen turns blue where the login screen normally appears but then the screen turns grey with no logo with just the pointer arrow on it and it doesn't seem to load past that point.Can anybody please help me solve this problem i have my kids photos and stuff on it that are unreplaceable.
    Hopefully there's a command line that can help also I don't have a installation disk so is there a way I can download 1 onto USB??
    THANKS HEAPS!!!!!

    Hi Eug07349,
    Thanks for visiting Apple Support Communities.
    It sounds like you may be experiencing a software issue. I'd suggest trying the first two steps in this article (Disconnect, test peripheral devices and network cables, Perform a Safe Boot):
    Mac OS X: Gray screen appears during startup
    http://support.apple.com/kb/ts2570
    Best,
    Jeremy

  • My old mac powerbook g4 wont boot up, it wont show apple logo and spinner aswell just stuck on grey screen while booting please help me

    i have a old powerbook g4 which i usally use to store some photos and to listen music. the battery of my powerbook is completly dead so i used to use my powerbook using charger adapter so whenever my power cuts down my laptop will be shutdown.
    one day i had just bootedup my powerbook and some date notificateion poped up so i press enter and suddenly my power went off and laptop shuted down. and next time when i tried to boot its stuck at grey screen , i even cant reach the apple logo and spinner. please helppp me :!!!!!!!!!!!!!!!

    Resetting PRAM and NVRAM is not working
    and i cann't boot it on safemode holding shift button and while holding option or c button at startup i can only see three things 1 is refresh button, 2 macintosh HD with X under it, 3 arrow forward button please help me

  • My just bought new ipad screen stuck one a game. Can't turn off, can't get into log in screen. I connect ipad to my imac, but message say need to unlock ipad. But my ipad screened dead. Please help!

    My just bought ipad with retinal display 32G, screen frozen at one of game my son play. Now I can't turn off ipad, I can log in ipad. I connect ipad to my apple computer, message say I need to unlock the ipad, the problem is I can't even get to ipad home screen to unlock or enter the password. Basically, my ipad is dead. I can't even know what my series number etc. Please help!
    Thanks!

    Try a reset:
    Hold the Sleep and Home button down until you see the Apple logo.

  • HT1414 I am having a problem with a black screen.. Please HELP

    I am having black screen issues. Have tried all the resets and no luck. I hear it but cant see anything. I called support and they said pay more money for it to get resolved. I cant see paying money for something i dont ffeel i caused. I left it charging and went out for several hours and came back to a black screen now its gonna cost 149.99 for telephone support that may or may not resolve the issue. Funny the first time I called them it started working again andthe price to get support at that time was 119.99 then they proceeded argue with me that it was not fixed and i would have to pay them to fix it. The darn thing is only 8 months old never been scratched dropped or abused in any way. Someone please help me get his apple ipad working for my daughter. This is her fun she doesnt do much else and i cant seem to figure out what is wrong with it...It is still under warranty and they say just to send it in is going to cost 99.99. I feel im being taken advantage of by the support comapny apple uses....
    Thanks for any feedback
    Mindy J

    After selecting the Crop Tool you should see a little icon in the Options bar that allows you to select what kind of grid overlay you'd like while cropping, along with some options that define when to show it...
    -Noel

  • My touch screen not working please help!!!

    I recently baught a hp touchsmart 320-1010a running windows 7 home premium and then installed a new version of windows (windows 7 ultimate 64 bit) and now the touch screen doesnt work and i have non of the hp touchsmart applications like, hp magic canvas and others. i installed all the drivers from the hp webbsite and it still doesnt work
    can somebody please help??? im dying here !

    Hello Jerome19961996:
              Sorry about your wipe out. Are you ready to try it again? This time we will do it the right way. We first have to get you back to orginal factory ok. Lets first see if can use the recovery manger. Type in your all program search box Recover Manager.Open it and click factory restore. If it is still there. If not then you will need to use your recovery disk. If you did not make a copy then you will need to purchase them from HP's parts store. Direction on how to order them are on your computers update page.  Ounce you have your computer restored to factory condition. We can now upgrade to Windows 7 Ultimate.
           This time we are going to use just the product key number. Goto all programs search box again and type in Windows 7 Upgrade Advisor. Open it and inter the product key that you purchased already. This time do not remove programs or delete any thing. Let it upgrade on it's own. This time everthing that is on your computer already will not be touched. The upgrade will only install what upgrades are needed with out disturbing HP's software. Ounce the initial upgrade is completed then go on line and download Windows 7 Ultimate add on's. Windows XP mode, XP Virtual Windows and Languages .  http://windows.microsoft.com/en-US/windows/downloads/windows-7    You should be all set now. Thank and welcome to the forum. Please click on Kodus if this has helped resolved your issue. Thank you.frrw

  • I cant get my macbook pro to have a full screen in safari please help?

    I have tried getting my full screen back and its not working please help?????

    First off, iOS 7 does not run on Macs.
    Secondly, Mac Pros are desktops, and MacBook Pros are notebooks.  Something is not jibing with your signature and what you say you are running.  Please go to Apple menu -> About This Mac to tell us your Mac OS X version.
    Go to Safari menu -> About Safari, or Help menu-> About Safari to tell us your Safari version.
    That will tell us if fullscreen is an option.

  • Ipod nano 6th gen touch screen stopped working please help

    Everything on the ipod nano 6th gen is working except the touch screen and once it goes to sleep i have to hold the sleep button and the volume down button to turn it back on. I went into the volume -, sleep, volume + menu and went through the tests and in the touch panel error check section it says i have IC error reported: 0xFFFFFFFF. Please help as i have reset and restored and update itunes etc. Do i need to send it in to apple? The touch screen was working at one stage and then i disconected from the computer while it said eject first (this is when the touch screen stopped working) and put the ipod on a different computer. The first computer was windows 7 which i used just to charge it a little and the second one im using is windows vista.

    I have had the same problem and changed three Nano's. Each time the fault is diagnosed by Apple as "water damage".
    If you take your Nano to one of their maintenance centres they will look into either the headphone socket or the power dock and and tell you that you have infringed the warranty by somehow getting the thing wet.
    Basically is a poorly designed piece of kit whereas a simple shuffle is way more robust.
    I have given up with my Nano and am now using an old model

  • Apple TV 2 is stuck on the "setting calendar/date"-screen forever. Please help!

    My Apple TV 2 will not start, whatever I do. It's stuck on a screen which says "setting calendar/clock/date" (or something like that), and never gets past it. I've been waiting for it to fix itself for about two hours - so waiting wont fix it. Resetting it by pulling the plug does *not* work - neither does resetting it via the Apple Remote.
    Please help me, I seriously need the Apple TV!

    knowsbest wrote:
    I honestly can't see how that can be the problem, it worked fine for months - then suddenly port forwarding starts to matter? Why?
    And *how* do I forward a port anyways?
    you'll need to refer to the manual for your particular router.
    and i would bet that this IS your router or firewall that is causing the issue.

Maybe you are looking for

  • Help troublesho​oting, please!...

    Hi fellow Fios people, It takes a little time to describe, but it is necessary to kno what I've tried I have had FIos working on a desktop for over 6 months.  This is connected directly to a dataport that runs down 1 floor to my basement where the ro

  • Laser Jet CP1215 Color Matching Issues;

    Colors are abnormally darker than the photos, art and copy especially those in red.They appear to be redishbrown. But, not all the photos/art on a page are effected. I have been working with HP Thech service guy who has put me through several days of

  • Streaming from Atv to Macbook

    Hi guys, I would like to buy an Apple TV, but before i do, i have one question. If I put all my music from my macbook to the hard drive of apple tv (so i won't have any music on my macbook), will I be able to listen to this music with my macbook (wit

  • Error "Function G1 does not exist "

    Hi , While doing monitoring  got error " Function G1 does not exist ". Bdoc type : BUPA_REL Sate         : E04. Checked SMQ1,SMQ2 , no queues were in sysfail status.How to maintain this function. Help me how to clear . Thanks in advance, Regards, PA.

  • EL from blank to null

    I was helping a coworker setup his machine today and had an interesting issue arise. I am curious why this happens. var1 equals the blank string or "" var2 "test" <c:set var="result" value="${var1}${var2}" scope="page" />the el-api.jar and the jstl.j