Loop at Screen problem

Hi,
I am facing a few hicups in my code, I needed to make certain FIelds as updateable and some as non updateable but the problem is that this is not happening. Can you tell me where i am going wrong. I have written this code in my PBO at the end. The Code should enable FIELD KAWRT for the 1st Line and disable the rest, while for the others it should enable Field KWERT. what is the problem in my code.
  LOOP AT itab.
    IF sy-tabix = 1.
      LOOP AT SCREEN.
        IF screen-name = 'ITAB-KSCHL' OR
           screen-name = 'ITAB-KBETR' OR
           screen-name = 'ITAB-KWERT'.
          screen-input = '0'.
          screen-output = '0'.
          MODIFY SCREEN.
        ELSEIF screen-name = 'ITAB-KAWRT'.
          screen-input = '1'.
          screen-output = '1'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    ENDIF.
    READ TABLE i_kschl WITH KEY kschl = itab-kschl.
    IF sy-subrc = 0.
      LOOP AT SCREEN.
        IF screen-name = 'ITAB-KSCHL' OR
           screen-name = 'ITAB-KAWRT' OR
           screen-name = 'ITAB-KBETR'.
          screen-input = '0'.
          screen-output = '0'.
          MODIFY SCREEN.
        ELSEIF screen-name = 'ITAB-KWERT'.
          screen-input = '1'.
          screen-output = '1'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    ENDIF.
  ENDLOOP.

Hi,
Its happening so because as in your code:
LOOP AT itab.
IF sy-tabix = 1.
LOOP AT SCREEN.                             "This is executed for the First Time That's *FINE*
IF screen-name = 'ITAB-KSCHL' OR
screen-name = 'ITAB-KBETR' OR
screen-name = 'ITAB-KWERT'.
screen-input = '0'.
screen-output = '0'.
MODIFY SCREEN.
ELSEIF screen-name = 'ITAB-KAWRT'.
screen-input = '1'.
screen-output = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
READ TABLE i_kschl WITH KEY kschl = itab-kschl.   
*THIS PART OF CODE IS EXECUTED ALWAYS WHICH YOU DON'T  WANT SO THIS  SHUD BE IN ELSE PART OF _*IF SY-TABIX = 1**_                                             
IF sy-subrc = 0.
LOOP AT SCREEN.
IF screen-name = 'ITAB-KSCHL' OR
screen-name = 'ITAB-KAWRT' OR
screen-name = 'ITAB-KBETR'.
screen-input = '0'.
screen-output = '0'.
MODIFY SCREEN.
ELSEIF screen-name = 'ITAB-KWERT'.
screen-input = '1'.
screen-output = '1'.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
ENDIF.
ENDLOOP.
DO LIKE:
LOOP AT itab.
IF sy-tabix = 1.
LOOP AT SCREEN.                     
ENDLOOP.
ELSE.
READ TABLE i_kschl WITH KEY kschl = itab-kschl.   
ENDIF.

Similar Messages

  • Table ctrl - no screen-name - hav groupid but not visible in Loop at screen

    Hi...
    In pa30, for a pernr, of infotype 0008, we have a table control.
    In that table control, i hav to hide a field. ex: bet01
    it has value..by default it will appear on the screen...
    Now I want this value not to appear on the screen.
    in loop at screen, i am not able to find the sceen-name(Q0008-bet01 or no Q fields...)
    It loops for all the p fields..and exits the loop.
    How can I hide the q fields..
    I have tried with groupids...but, in loop at screen unable to find the groupids...so no use..
    screen name and groupid are there for this field...
    Any solution???????????

    Hi...thanks for ur reply...
    Not that helpful...
    I hav the groupID..screen-name...
    But the problem is, the loop at screen is not going through this groupid or screen-name...
    And if u have any sample code, plz share it..
    I cant modify the data coming to table control...access problem...
    If u have anyother solution, please give it..Anyways thanks once again for ur reply!
    Experts, no solution??? No alternative???
    Edited by: Veeranji Reddy on Nov 13, 2008 3:22 PM
    Edited by: Veeranji Reddy on Nov 14, 2008 5:49 AM

  • Loop at screen - not all fields are available

    Hi all,
    I want to set some fields on the screen invisible.
    When I do the loop at screen in PBO not all fields from the screen are available.
    Just four fields are available. In the screen there are about 20 fields.
    I try to use the chain. field xyz. endchain... But it was not the problem.
    Any ideas?
    regards

    Try this ,May be  Help ful
    { SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 2(10)  FOR FIELD r_cars.
    PARAMETERS : r_cars RADIOBUTTON GROUP rgb USER-COMMAND usd .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(10)  FOR FIELD r_toyota .
    PARAMETERS : r_toyota RADIOBUTTON GROUP rgb1 DEFAULT 'X'.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(10)  FOR FIELD r_ford .
    PARAMETERS : r_ford RADIOBUTTON GROUP rgb1 .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 2(10)  FOR FIELD r_bus .
    PARAMETERS : r_bus RADIOBUTTON GROUP rgb DEFAULT 'X'.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(10)  FOR FIELD r_volvo .
    PARAMETERS : r_volvo RADIOBUTTON GROUP rgb2 .
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 20(10)  FOR FIELD r_merced .
    PARAMETERS : r_merced RADIOBUTTON GROUP rgb2  DEFAULT 'X'.
    SELECTION-SCREEN END OF LINE.
    AT SELECTION-SCREEN OUTPUT.  " AT SELECTION-SCREEN OUTPUT
      IF r_cars = 'X'.                                 " If R_CURS radiobutton is selected
        LOOP AT SCREEN .                       " Looping at screen
          IF screen-name CS 'R_VOLVO' OR
             screen-name CS 'R_MERCED'.
            screen-active = 0.                     " Hiding the R_VOLVO and R_MERCED
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSE.
        LOOP AT SCREEN .
          IF screen-name CS 'R_TOYOTA' OR
             screen-name CS 'R_FORD'.
            screen-active = 0.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF. }

  • LOOP AT SCREEN

    HI experts!!
    I have a screen 9100 which displays an ALV Grid for the table SFLIGHT and contains two buttons: NEW and MODIFY.
    The two buttons both CALL SCREEN 9200 containing all the fields of SFLIGHT..
    I want when i click the NEW button, all fields are enabled in the screen 9200 and data can be inserted and when i click the MODIFY button after selecting a row in the ALV, the screen 9200 appear with Key fields are disabled and the remaining fields can me modified.
    On screen 9200 there is are buttons SAVE and CANCEL.
    Waiting for your solutions....
    Thank you in aniticipation..
    Regards,
    Yahsaar

    Hi,
    If i understand your problem correctly then you dont need LOOP AT SCREEN.
    as the element on the Screen is the container.
    the ALV is being displayed in that container.
    so you will have to code  the al TO make it editable by checking SY-UCOMM.
    check the below links for the same
    [http://wiki.sdn.sap.com/wiki/display/Snippets/ALV-Editingandsavingtheeditedvaluesin+Database(OOPS)]
    [Re: Get Selected Rows in OOPS ALV;

  • At selection-screen problem: triggering an error message...

    Hello experts,
    I have 3 radiobuttons and 1 parameter in my selection screen. it works in such a way that whenever the user clicks on the 3rd radiobutton the parameter will be inputtable. Now, what I want to do is that whenever the 3rd radiobutton is clicked and the user forgot to put a value in the paramater an error message will be triggered saying 'please put a value'.
    Now, creating a code for that is easy but here is the problem: whenever I click on any of the radiobuttons the message triggers. Anyway, below is my code:
    SELECTION-SCREEN BEGIN OF BLOCK box1 WITH FRAME TITLE text-001.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pr_upld RADIOBUTTON GROUP grp MODIF ID id3
                                              USER-COMMAND ucomm.
    SELECTION-SCREEN COMMENT 2(20) text-007 FOR FIELD pr_upld.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 03(15) text-a11 FOR FIELD p_flnme MODIF ID id3.
    PARAMETERS: p_flnme LIKE rlgrap-filename DEFAULT 'C:\' MODIF ID id3.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 1(22) text-002 FOR FIELD p_dcode MODIF ID id1.
    PARAMETERS: p_dcode LIKE vbak-kunnr MODIF ID id1,
                p_name1 LIKE kna1-name1 MODIF ID id1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pr_list RADIOBUTTON GROUP grp MODIF ID id4.
    SELECTION-SCREEN COMMENT 2(7) text-003 FOR FIELD pr_list MODIF ID id4.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pr_add  RADIOBUTTON GROUP grp MODIF ID id2.
    SELECTION-SCREEN COMMENT 2(3) text-005 FOR FIELD pr_add MODIF ID id2.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: pr_edit RADIOBUTTON GROUP grp MODIF ID id5.
    SELECTION-SCREEN COMMENT 2(4) text-006 FOR FIELD pr_edit MODIF ID id5.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    SELECTION-SCREEN COMMENT 03(20) text-a12 FOR FIELD p_code MODIF ID id2.
    *PARAMETERS: p_kunnr LIKE zts0001-kunnr.
    PARAMETERS: p_code LIKE zts0001-cdseq MODIF ID id6.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK box1.
    AT SELECTION-SCREEN OUTPUT.
    IF v_compflag EQ space.
        LOOP AT SCREEN.
          IF screen-group1      = 'ID1'.
            screen-input        = '0'.
            screen-output       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID2'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID3'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID4'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID5'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID6'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ELSEIF v_compflag NE space.
        LOOP AT SCREEN.
          IF screen-group1      = 'ID1'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID2'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID3'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID4'.
            screen-active       = '1'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID5'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ELSEIF screen-group1  = 'ID6'.
            screen-active       = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    *for users that are not controllers
      LOOP AT SCREEN.
        IF screen-name   = 'P_CODE'.
          screen-input   =  '0'.
        ENDIF.
        MODIFY SCREEN.
      ENDLOOP.
      IF pr_list = 'X' OR
         pr_add  = 'X'  OR
         pr_upld = 'X'.
        LOOP AT SCREEN.
          IF screen-group1   =  'ID6'.
            screen-input     =  '0'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ELSEIF pr_edit  =  'X'.
        LOOP AT SCREEN.
          IF screen-group1   =  'ID6'.
            screen-input     =  '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    *for controllers
      IF pr_upld = 'X'.
        LOOP AT SCREEN.
          IF screen-name      = 'P_FLNME'.
            screen-input     = '1'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ELSEIF pr_list = 'X'.
        LOOP AT SCREEN.
          IF screen-name      = 'P_FLNME'.
            screen-input     = '0'.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.
      ENDIF.
    AT SELECTION-SCREEN.
      IF pr_edit = 'X' AND p_code IS INITIAL.
        MESSAGE e008 WITH 'Please specify Code.'.
      ENDIF.
    Again, thank you guys and have a nice day!

    Hi viraylab,
    1. Such validations can be handled in the event
       START-OF-SELECTION.
    2. We should them and other such validations,
       using this logic
    START-OF-SELECTION.
    IF ERRORCONDIDTION.
    <b>MESSAGE 'PLEASE ENTER ' TYPE 'S'
    LEAVE LIST-PROCESSING.</b>
    ENDIF.
      WRITE :/ 'ABC'.
    3.
    The most important statements are
    A) message should be of type I, or S, or W
       (and not error E)
    b) LEAVE LIST-PROCESSING
      (it discontinues the further list showing,
       and again, re-displays, the selection screen)
    regards,
    amit m.

  • SELECTION-SCREEN problem

    [Background:]
    (1)There are two parameters in a radio button group.
        One is P_SCREEN,it means display report on screen
       and another is P_FILE,it means output report into a file.
    (2)There is a parameter P_NTFILE, use it to indicate output file path.
    [Target:]
    (1)After the selection-screen built,
       If the P_FILE is checked,P_NTFILE should be enable.
       If the P_SCREEN is checked,P_NTFILE should be disable.
    [Code:]
    Parameter in Block2
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS: P_SCREEN RADIOBUTTON GROUP R1. " Screen output
    SELECTION-SCREEN COMMENT 04(21) TEXT-001.
    SELECTION-SCREEN POSITION 32.
    PARAMETERS: P_FILE RADIOBUTTON GROUP R1. " NTFILE output
    SELECTION-SCREEN COMMENT 35(17) TEXT-002.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK B2.
    Parameter in Block3
    SELECTION-SCREEN BEGIN OF BLOCK B3 WITH FRAME.
    PARAMETERS: P_NTFILE(45) TYPE C LOWER CASE OBLIGATORY MODIF ID SC1.
    P_PCFILE      LIKE RLGRAP-FILENAME OBLIGATORY.
    SELECTION-SCREEN END   OF BLOCK B3.
    *&      AT SELECTION-SCREE
    AT SELECTION-SCREEN.
      IF P_SCREEN = 'X'.
        FLAG = 0.
      ENDIF.
      IF P_FILE = 'X'.
        FLAG = 1.
      ENDIF.
    *&      AT SELECTION-SCREE ON <FIELD>
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP R1.
      IF P_SCREEN = 'X'.
        LOOP AT SCREEN.
          IF SCREEN-GROUP1 = 'SC1'.
            SCREEN-INPUT = FLAG.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
      IF P_FILE = 'X'.
        LOOP AT SCREEN.
          IF SCREEN-GROUP1 = 'SC1'.
            SCREEN-INPUT = FLAG.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    [Problem:]
    P_NTFILE can not refresh between enable and disable status.
    Anyone can help me?

    *& Report  Z_JAGANOBJECT                                               *
    REPORT  Z_JAGANOBJECT line-count 0(1)                          .
    Tables sscrfields.
    *--parameters--
            SELECTION-SCREEN BEGIN OF BLOCK RB1 WITH FRAME TITLE new.
            selection-screen :skip 2.
                PARAMETERS : cmp_name(10) type c,
                             imp_code(5) type n,
                             exp_cmp(10) TYPE c,
                             Exp_mtrl(10) TYPE c.
    ------------------------radi button---------------------
               SELECTION-SCREEN BEGIN OF BLOCK RB WITH FRAME TITLE text.
               selection-screen: skip 1.
                 PARAMETERS : Import RADIOBUTTON GROUP RB user-command usr,
                              Export RADIOBUTTON GROUP RB DEFAULT 'X'.
               SELECTION-SCREEN END OF BLOCK RB.
               SELECTION-SCREEN END OF BLOCK RB1.
    *--push button--
    SELECTION-SCREEN PUSHBUTTON /40(20) SAVE USER-COMMAND STORE.
    DATA : FLAG TYPE I.
    *--internal tables--
    data :    begin of itab occurs 0,
                 cmp_name(10) type c,
                 imp_code(5) type n,
              end of itab.
    data :    begin of itab1 occurs 0,
                 exp_cmp(10) TYPE c,
                 Exp_mtrl(10) TYPE c,
              end of itab1.
    *--initalisaton--
    INITIALIZATION.
    save = 'store'.
    text = ' Type '.
    new = ' Import- Export details'.
    *--selection screen--
    AT SELECTION-SCREEN.
          case SSCRFIELDS-ucomm.
               when 'STORE'.
               FLAG = '1'.
                    if import = 'X'.
                       itab-cmp_name = cmp_name.
                       itab-imp_code = imp_code.
                append itab.
                clear itab.
                endif.
                    if export = 'X'.
                       itab1-exp_cmp = exp_cmp.
                       itab1-Exp_mtrl = Exp_mtrl.
               append itab1.
               clear itab1.
               endif.
               ENDcase.
    *--selection screen output--
    AT SELECTION-SCREEN OUTPUT.
      IF export = 'X'.
       LOOP AT SCREEN.
          IF SCREEN-NAME = 'CMP_NAME' OR  SCREEN-NAME = 'IMP_CODE'.
            SCREEN-INPUT = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
       elseIF import  = 'X'.
        LOOP AT SCREEN.
          IF SCREEN-NAME = 'EXP_CMP' OR SCREEN-NAME = 'EXP_MTRL'.
            SCREEN-INPUT = '0'.
            MODIFY SCREEN.
          ENDIF.
        ENDLOOP.
      ENDIF.
    end-of-selection.
    LOOP AT ITAB.
    WRITE : /10 itab-cmp_name, 30 itab-imp_code.
    ENDLOOP.
    LOOP AT ITAB1.
    WRITE : /10 itab1-exp_cmp,50 itab1-exp_mtrl.
    ENDLOOP.
    hope its useful,
    reward points if its useful
    regards
    vijay

  • How to How to install ATI Radeon HD2600 driver on bootcamp 3.0 windows 7 partition w/black screen problem

    Ok....so i've posted this question in a different way, and i gotten several "scratch the surface" answers from people just saying to install "Ati catalyst", or insert the os x dvd and run set up.exe, and update  to boot camp 3.1 or 3.2...while these all seem like great suggestions, I am finding myself needing more specific direction or "hand holding" so to speak.....here is the MAIN problem...
    The Background/history
    I used boot camp (3.0, and i found updates for 3.1 for imac and for windows, but can't find for mac pro, AND they all are ".exe" files which run on windows..which as you'll see is the big part of my problem...So I recently updated my mac pro (with the ATI Radeon HD2600 graphic PCIe card with 10.6.7 from 10.5.8.  I created a single partitioned drive to install windows 7 professional 64 bit.  The download software function didn't work (Thanks, APPLE for that poor level of support) so have to select the option that i have already downloaded, or have other media with the drivers already on it....i restarted with the windows 7 disk in.... 
    The installation of Windows 7 Pro 64-bit
    So the installation of windows 7 seemed to go flawlessly, was able to use my existing 23" hd apple cinema display (so somehow it has drivers that work with the graphics card, or maybe the motherboard's on board video components) and i select english, and install now, custom, blah, blah, blah...installation causes a few reboots, then restarts ultimately back in os x since that is the default boot os i use on this desk top and have to do the "opt" button to select booting in windows....so when i try restarting in windows, now using the actual boot drive on which i am installing it, it ran through another reboot or two, but then after that, my display goes black....  in the communities, the solution sounds super simple... "go download the ATI catalyst for the black screen problem....windows 7 doesn't have device drivers that work with the ATI radeon hd2600...no problem, just go download and install...."
    The problem, re-emphasized :  I cannot even finish the install for windows, because of this driver problem....i cannot see anything....I have tried to reboot in safe mode, and that then seems to invoke whatever basic drivers that do work, likely through the motherboards onboard video vs the actual graphic card, and the screen works and says that it's wanting to complete the installation, so i'm thinking awesome this is gonna work....and then.. "windows installation was not completed and cannot be completed in SAFE MODE, need to restart, blah, blah, blah" pops up...and forces reboot...so Safe Mode allows me to see, but won't allow me to finish the install of windows 7...and without completing the install i can't run (ranther I DONT KNOW HOW TO) any of the various .exe files everyone is telling me are the solutions to my problem...like update 3.1 and 3.2 bootcamp...they're all .exe files?  not sure why, because bootcamp runs in 10.6.7 i thought, but whatever...it needs running Windows to execute...then the ATI radeon hd2600 driver for windows 7 that i downloaded from the site has an installation program that is an .exe file, which needs windows to run...  Does this make sense, why i can't just use these fixes, that seem to be the only fixes out there....so can someone school me step by step here (not just the highlights) of how to update bootcamp, and how to install the ati radeon driver  without having been able to complete the windows 7 installation because the monitor goes and stays black????
    This is so very frustrating for the record...and any substantial help "not just go download this..." would be immensely appreciated.
    Some other things i've been told to try that i've tried and nothing seems to happen as i'm told it will....
    ---I've been told to install the osx dvd and run "setup.exe"  - AGAIN...it's an exe file...and 2 - when i put in the os x file it just wants to re install 10.6...so need more help if this is even a real solution to understand how to make it work...
    ---I've been told to update boot camp to 3.1 and/or 3.2 from 3.0, using Apple Software Update....Well, my software update is saying everything is up to date and there is nothing new to download at all, and when i reverify the bootcamp version it is still only 3.0.2...and again downloading the updates from www.apple.com/support/  for 3.1 and 3.2...all of those are .exe files...need windows to run them...again, refer to the problem described in detail above...
    ---I've been referred to the black screen on imac early 2011 thread saying it should fix my problem...and reading it it SEEMED like the most promising resolution...it involves creating a boot flash drive for windows 7 and an xml file that sets the imac drivers to auto install during the windows installation..and it got me farther than anything else..but still ultimately ended up in the darned black screen...my assumption is that it's because it's for imac and not mac pro so not ati-radeon specific drivers....ok....that's enough..please...anyone who thinks they can help...your help is desperately needed...thanks so much in advance!

    hey Hatter, thanks so much for getting back...so just to be super clear...is there no way to install the drivers using an exe file given my current state? no way to do it with command prompt or something?  if can make work with existing card, i'd prefer it...now when you say it's 'toast' how do you mean?  it works well with the os x partitions and always has...so i'm not sure i follow, just want to be clear...
    Now to your point of starting with only the one drive installed...so i would put that bootcamp drive in bay 1 and disconnect the rest...i'm not totally sure what you're suggesting the effect should be of doing this?  just that i'm just installing windows without the bootcamp deal...but if windows 7 doesn't support the ati radeon hd2600, it still will go black screen no? or you're saying it will run video through the motherboard if it's the only bootdrive, and will run all the way through the windows install without trying to switch over to the hd2600?  (slrry flr these questions..just really want to make sure i understand what you're telling me..thanks so much for your patience and help by the way...it's very greatly appreciated...your support is priceless!
    So now, assuming none of the above is possible...referring now to the ati 5770 that you referred to...you mention it works with 10.6 well, and that windows 7 supports it ...2 questions on that
         1) Windows 7 supports" meaning, out of the box windows 7 supports it? or will i have to install drivers still through some update, because again, if that's how i have to do it, then won't work, cuz can't start windows to see anything to install any drivers or run any thing at all...so it would have to just work with initial installation.
         2)hardware wise for my Mac Pro 3,1...intel dual quad core xeon, blah blah....will this card work? it's a PCIe and should fit on my board no prob, etc?

  • Trying to update OS to fix White Screen problem.

    Hello, I have had my Blackberry 8520 on a Virgin contract for about a year and a half now. Recently it has started randomly just changing to a black white screen that won't allow me to turn it off or perform any functions. The way I temporarily fix this is to plug it into the charger which acts like a reboot and brings it back to normal (pulling the battery to reboot it just restores the white screen after loading). In trying to find the resolve to this problem, which I haven't yet, I rang the Virgin helpline who told me to update my OS. I currently have the version 5.0 Bundle 1096 and I am trying to update it to the 5.0 Bundle 1168. I have been having increasing problems with trying to do this. I updated my desktop software for Blackberry but updating through this software always brings up the message at the install stage (after backing up my data) - "An error has occured while downloading software for your device. Please verify your internet connection or try again later, if the problem persists." My internet is working fine and I have tried many times to update through this way. I have also tried updating through the blackberry website "web based updates area" that brings up the same message. Looking through over message boards, I tried the attempt at updating through the LOADER.EXE way. However after trying to download the OS manually to my computer, which my internet explorer thought was dangerous, it came up after with another error message - "Error 1335. The cabinet file 'Data1.cab' required for installation is corrupt and cannot be used. This could indicate a network error, an error from reading from the CD-ROM, or a problem with this package.' I am now out of ways to try and update my Blackberry and have no idea how to solve the white screen problem. Any help would be much appreciated. Karen x

    Just to specify the final type of the updating I tried was following the instructions on this links - http://us.blackberry.com/support/apps-and-software/desktop-and-device-download-sites.html I choose Europe, Virgin Media, Blackberry curve 8520. I got the software on to my computer and the error message that came up, appeared after choosing language and agreeing to the terms and conditions and starting the installation. Sorry about the big clump of writing; the post removed all of my paragraphs when I posted it. New to this! And need help! Thanks x

  • Doubt in loop at screen

    i am using two dates in the selection screen one is ERDAT and another is BNDDT.
    these two fileds are obligatory.
    i am using radiobutton to enable these field. look at my coding
      IF p0 = 'X'.
        LOOP AT SCREEN.
          IF screen-name = 'S_BNDAT-LOW' OR
             screen-name = 'S_BNDAT-HIGH' OR
             screen-group1 = 'SC1'.
             screen-input = '0'.
            MODIFY SCREEN.
            CLEAR screen.
          ENDIF.
        ENDLOOP.
      ENDIF.
      IF p1 = 'X'.
        LOOP AT SCREEN.
          IF screen-name = 'S_ERDAT-LOW' OR
             screen-name = 'S_ERDAT-HIGH' OR
             screen-group1 = 'SC1'.
            screen-active = '0'.
             MODIFY SCREEN.
            CLEAR screen.
          ENDIF.
        ENDLOOP.
      ENDIF.
    if i select p1 ,the screen displays error message like fill in all required entry.
    if the fileds are not obligatory its working fine.
    how to over come this.
    Regards,
    Bala
    Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 2:48 PM

    hi..
    step 1) just use "MODIFY ID "  for the field in your selection-screen to make it into one group.
    EX:
    select-options:   s_cajo  for  tcj_documents-cajo_number
                                   modif id cas.
    step2) in your at selection-screen .
    just loop the screen and make it required..as follows:
    EX:
        loop at screen.
          if screen-group1 = 'CAS'.
            screen-required = 1.
           screen-input     = 0.
            screen-active    = 1.
            endif.
          modify screen.
        endloop.
    I think it will helps you..
    UR's
    GSANA
    Code Formatted by: Alvaro Tejada Galindo on Jan 8, 2009 2:49 PM

  • Loop at screen in CJR2 layouts (or KPP1L management ) ?

    Hi to all,
    I need to make as input fields (and consquently,  to disable as input fields at some other conditions) the layouts on CJR2 transaction .
    In my case it is available an include custom (as a standard modification ) in which I can use "loop at screen" instruction. But in certain case I've seen that other programmers have used an internal table based on structure KPP1L to handle input/output fields on screen (but this solution in certain case doesn't work properly ). Any suggestion or ideas ?
    Which solution is better in your opinion ?
    Thanks in advance
    Andrew

    Hi to all,
    I need to make as input fields (and consquently,  to disable as input fields at some other conditions) the layouts on CJR2 transaction .
    In my case it is available an include custom (as a standard modification ) in which I can use "loop at screen" instruction. But in certain case I've seen that other programmers have used an internal table based on structure KPP1L to handle input/output fields on screen (but this solution in certain case doesn't work properly ). Any suggestion or ideas ?
    Which solution is better in your opinion ?
    Thanks in advance
    Andrew

  • Loop At Screen to change input field.

    Hello Experts,
    I have a screen which have a pf status on which there is a &change button as well as a save button. I want to loop at screen when the button is clicked to make the fields editable except the first field. When i click save button, the field goes back to uneditable.
    My codes:
    IN PAI:
    CASE OK_CODE.
        WHEN '&CHANGE'.
                  LOOP AT SCREEN.
                        screen-input = 1.
                        screen-output =0.
                  ENDLOOP.
    ENDCASE.
    Any help please?
    Moderator message: There is no point in continuing the discussion as same answer is getting repeated several times. Please search and read to understand the basics of Loop at Screen. Thread locked.
    Message was edited by: Manish Kumar

    Hi Hassim,
    In PBO section.
         LOOP AT SCREEN.
          IF ok_code(sy-ucomm)  = '&CHANGE' .
            IF SCREEN-NAME = 'Field1'.
              SCREEN-INPUT = '0'.
              SCREEN-OUTPUT= '1'.
             ELSE.
              SCREEN-INPUT = '1'.
              SCREEN-OUTPUT= '0'.
            ENDIF.
          ELSE.
              SCREEN-INPUT = '0'.
              SCREEN-OUTPUT= '1'.
            ENDIF.
          ENDIF.
          MODIFY SCREEN.
        ENDLOOP.

  • Maintenance View: Loop at screen!

    hi,
    I created a view maintenance on Ztable.
    This table contains 3 fields.
    I want to display one of this fields in "Display Mode" when the user Create/change the table in sm30.
    There is an event in maintenace view that allow me to do this?
    Thank you
    Joseph

    Hi,
    Generate a table maintenance for Z table you created in SE11->Utilities->Table Maintenance Generator.Give appropriate authorisation group while genearting table maintenance.
    Once it's get generated.Then click function group->Main program.
    Uncomment the PBO Include which appears as commented.Give it suitable name.
    Then in the PBO write the following.,
    module display.
    module display output.
    LOOP AT SCREEN.
      if screen-name = 'ZZZtable-FIELDNAME'.
          screen-input = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    endmodule.                
    Hope it helps.If so,reward points.Otherwise ,get back.

  • Screen problem making iPad unusable

    My iPad2 is 15 month old and has developed a strange screen problem. It seems to have developed a mind of its own, typing ahead with random characters, doing its own thing when scrolling and trying to select in apps. Two days ago Apple support said restore to factory settings which I did. Same problem came back. Yesterday Apple support said the same thing which again I did. Same problem came back Today Apple support say it's a hardware issue out of warranty. We had a polite discussion about EU legislation but to cut a long story short, they basically said "sorry about that, but there is nothing our policies will let us do, you're on your own"
    Not exactly the response I hoped for. So I've now got an iPad that is basically useless, unless I want to use it as a door stopper.
    My business made a strategic commitmnt to Apple in Mid 2011 and this iPad was part of our shift away from PC/Windows. It's the first time I have needed to deal with Apple Support, and while each of the people I have spoken to have been professional, understanding and helpful, they have been unable / not allowed to assist any further.
    Yes, we could have taken out Apple Care Agreements. We chose not to on the basis of 2 year statutory warranty and Apple's reputatiuon for reliability. Seems I made a big mistake here and am left wondering if we made the right decision in going down the Apple route. Our investment in Apple hardware and software is massive for an SME and our workflow depends on iPads.
    I'm left with a problem. Thanks Apple.
    I'm still a fan but my blinkers have been removed. No longer will you be giveen the benefit of the doubt when you screw up - Maps, WiFi etc - as you have had a direct and negative impact on my business and missed a chance to keep a very happy customer on board.
    Does it help to post this? Not really, but it's off my chest.

    And you are within your "rights" to post this. But you do realize that we are not Apple employees - correct? We are just other users like yourself. If you feel that you have been treated unjustly, move up the Apple chain of command. Politely demand to speak to the next higher up and go from there.

  • HR ABAP: LOOP AT SCREEN: Multiple Fields Disabling.

    Experts,
    Am a new member in the world of SAP ABAP!
    Need ur advice regarding.
    Have coded following for disabling a field in PBO based on subtypes.
        IF p9235-subty = GC_AICTD.
          IF screen-name = 'P9235-ZZ_RC_MDE'.
            screen-active = 0.
            MODIFY SCREEN.
          ENDIF.
        ENDIF.
    This disables the particular field mentioned in the screen name.
    If i want more than on field names to be disabled under single validation, then what should i do?
    Your help to this fresher would be appreciated!
    Points will be definitely rewarded for your help and time...
    Thank you.
    Sundar.

    *&      Module  display  OUTPUT
          text
    MODULE display OUTPUT.
    *break-point.
    loop at screen.
    if create = 'X'.
      if screen-group1 = 'XXX'.
      screen-input = 1.
      modify screen.
      endif.
    endif.
    if display = 'X'.
      if screen-group2 = 'YYY'.
    screen-input = 0.
      modify screen.
      endif.
    endif.
      endloop.
    ENDMODULE.                 " display  OUTPUT
    but declare the group!

  • Screen problems with photoshop elements 10

    I installed Photoshop Elements 10 and Premiere Elements.
    Premiere Elements works allright, but Photoshop E 10 gives screen problems.
    De menu's on the top roll out, but there is no text in them.
    The screen in Organiser is distorted.
    I reinstalled P E 10 but the same problem accurs.
    I dit a computer reset to an earlier date and installed Ph.E. 10 again but the same problem. No text in the topmenus and a distorted screen in Organiser.
    Letters become 6x larger than normal.
    All my other programms work fine. I never had screenproblems.
    I use Elements 8 now again and that works fine.
    I use: Windows 7
    Card: NVIDEA GeForce GT 220 resolution 1680x1050
    Do I have to remove Elements 8 before installing Ellements 10? Is that perhaps the problem?

    Ken, The problem is: The buttons don't work. So I cannot use Edit...
    But:
    I reïnstalled Adobe Elements 10 for the 4th time
    Cleaned my register again.
    restarted my computer
    Did a computer reset to an earlier date
    Installed Elements 10 again but .......not the try version of Premiere Elements.
    Now Elements 10 has a normal screen.
    This was a try and error sollution. I hope it will last.
    Jan

Maybe you are looking for

  • The firefox doesnt open because it has high memory usage

    I use firefox normally but have started seeing issues with the firefox version 3.6.13 and when i reopen the firefox it says " Firefox is already running " when i check the memory usage it is using most of the CPU usage and memory ~ 800 K or even more

  • Problem with combo box in a Matrix column

    hi every one, i  have a user form with a matrix(uid = 37) with some columns and one column is combo box. in that combo box i have to get values  from OSTC table (Code)...i have written this code ..i dont know how to access the combo box so that i can

  • Changing pages and uploading pictures.

    I am uploading my website to Godaddy. No .mobile me. I want members of my site to be able to upload pictures, change backgrounds, add music or videos. change the look of there page. I might be going out of my realm here, but if someone could guide me

  • Sub totals in ADOBE Forms

    Hi i have a requirement where i have to do total for a group of records based on the order number which are displayed in the table. Could you sugest how do i go ahead, as i have written the code for Sub total and it works extremely fine but the probl

  • Problem reading hidden fields

    We have a problem with OC4J. Our web application is working perfectly fine on other application servers, such as Tomcat, but when running it on OC4J we experience some weird behavior. We have a HttpServlet which handles the request and prints out the