Can somebody please guide me?

The driver program will have a selection screen with three radiobuttons and seven checkboxes. Based on the user selection, the report should display details.Let's say the user selected first radiobutton and one or more  checkboxes, and when exucute it..it should display corresponding ALV report(s). The report ouput should also have different expand/collapse icons ( in this case 7 expand/collapse icons) to display different reports for the selected radiobutton. That means if the user chooses to view details for seventh checkbox report, he can click on the expand button.( Just like ME23N screen, where you can view Item details).I don't know how to develop this program. Can you suggest me some ideas? or please send me any sample programs if any of you have which I can refer to. Any kind of help is really appreciated and rewarded.
Thanks,
Chandu

Ok, check out this program.  You will have to create screen 100.  Create two custom containers on that screen.  Also create two pushbuttons on that screen.  One PB for the first control, the second PB for the second control.  Make the function codes for the pushbuttons "T1" and "T2".   Make the names of the containers  "ALV_CONTAINER" and "ALV_CONTAINER2".  This program should give you some ideas.
report zrich_0002 .
tables: mara.
type-pools: slis, icon.
* Internal Tables
data: begin of ialv occurs 0,
      matnr type mara-matnr,
      maktx type makt-maktx,
      end of ialv .
data: begin of ialv2 occurs 0,
      matnr type mara-matnr,
      werks type marc-werks,
      end of ialv2 .
data: alv_container type ref to cl_gui_custom_container,
      alv_grid type ref to cl_gui_alv_grid,
      ok_code like sy-ucomm,
      fieldcat type lvc_t_fcat.
data: alv_container2 type ref to cl_gui_custom_container,
      alv_grid2 type ref to cl_gui_alv_grid,
      fieldcat2 type lvc_t_fcat.
data: alv1_flag type c,
      alv2_flag type c.
select-options: s_matnr for mara-matnr.
parameters: p_rad1 radiobutton group grp1,
           p_rad2 radiobutton group grp1,
           p_rad3 radiobutton group grp1,
           p_chk1 as checkbox,
           p_chk2 as checkbox.
start-of-selection.
  perform get_data.
  alv1_flag = p_chk1.
  alv2_flag = p_chk2.
  call screen 100.
*      Module  status_0100  OUTPUT
module status_0100 output.
  set pf-status '0100'.
  set titlebar '0100'.
  if alv_container is initial.
* Create Controls
    create object alv_container
           exporting container_name = 'ALV_CONTAINER'.
    create object alv_grid
           exporting  i_parent =  alv_container.
*  Populate Field Catalog
    perform get_fieldcatalog.
    call method alv_grid->set_table_for_first_display
        changing
             it_outtab       = ialv[]
             it_fieldcatalog = fieldcat[].
      if alv1_flag = 'X'.
        call method alv_container->set_visible( '1' ).
      else.
        call method alv_container->set_visible( '0' ).
      endif.
  endif.
  if  alv_container2 is initial.
* Create Controls
    create object alv_container2
           exporting container_name = 'ALV_CONTAINER2'.
    create object alv_grid2
           exporting  i_parent =  alv_container2.
*  Populate Field Catalog
    perform get_fieldcatalog2.
    call method alv_grid2->set_table_for_first_display
        changing
             it_outtab       = ialv2[]
             it_fieldcatalog = fieldcat2[].
      if alv2_flag = 'X'.
        call method alv_container2->set_visible( '1' ).
      else.
        call method alv_container2->set_visible( '0' ).
      endif.
  endif.
endmodule.
*      Module  USER_COMMAND_0100  INPUT
module user_command_0100 input.
  case ok_code.
    when 'BACK' or 'CANCEL'.
      clear ok_code.
      perform free_containers.
      if sy-subrc = 0.
        set screen 0.
        leave screen.
      else.
        leave program.
      endif.
    when 'EXIT'.
      clear ok_code.
      perform free_containers.
      leave program.
    when 'T1'.         " Toggle expand/collapse
      clear ok_code.
      if alv1_flag = 'X'.
        alv1_flag = space.
      else.
        alv1_flag = 'X'.
      endif.
     if alv1_flag = 'X'.
        call method alv_container->set_visible( '1' ).
      else.
        call method alv_container->set_visible( '0' ).
      endif.
    when 'T2'.         " Toggle expand/collapse
      clear ok_code.
      if alv2_flag = 'X'.
        alv2_flag = space.
      else.
        alv2_flag = 'X'.
      endif.
     if alv2_flag = 'X'.
        call method alv_container2->set_visible( '1' ).
      else.
        call method alv_container2->set_visible( '0' ).
      endif.
  endcase.
endmodule.
*       FORM GET_DATA.
form get_data.
  select mara~matnr makt~maktx
             into corresponding fields of table ialv
                 from mara
                      inner join makt
                         on mara~matnr = makt~matnr
                                where mara~matnr in s_matnr
                                  and makt~spras = sy-langu.
  sort ialv ascending by matnr.
  select mara~matnr marc~werks
             into corresponding fields of table ialv2
                 from mara
                      inner join marc
                         on mara~matnr = marc~matnr
                                where mara~matnr in s_matnr.
  sort ialv2 ascending by matnr werks.
endform.
*      Form  FREE_CONTAINERS
form free_containers.
  if not alv_container is initial.
    call method alv_container->free.
    clear: alv_container.
    free : alv_container.
  endif.
  if not alv_container2 is initial.
    call method alv_container2->free.
    clear: alv_container2.
    free : alv_container2.
  endif.
endform.
*      Form  Get_Fieldcatalog - Set Up Columns/Headers
form get_fieldcatalog.
  data: ls_fcat type lvc_s_fcat.
  data: columnno(3) type n value '0'.
  refresh: fieldcat.
  clear: ls_fcat.
  ls_fcat-reptext    = 'Material Number'.
  ls_fcat-coltext    = 'Material Number'.
  ls_fcat-fieldname  = 'MATNR'.
  ls_fcat-ref_table  = 'IALV'.
  ls_fcat-outputlen  = '18'.
  ls_fcat-col_pos    = 1.
  append ls_fcat to fieldcat.
  clear: ls_fcat.
  ls_fcat-reptext    = 'Material Description'.
  ls_fcat-coltext    = 'Material Description'.
  ls_fcat-fieldname  = 'MATKX'.
  ls_fcat-ref_table  = 'IALV'.
  ls_fcat-outputlen  = '40'.
  ls_fcat-col_pos    = 2.
  append ls_fcat to fieldcat.
endform.
*      Form  Get_Fieldcatalog2 - Set Up Columns/Headers
form get_fieldcatalog2.
  data: ls_fcat type lvc_s_fcat.
  data: columnno(3) type n value '0'.
  refresh: fieldcat2.
  clear: ls_fcat.
  ls_fcat-reptext    = 'Material Number'.
  ls_fcat-coltext    = 'Material Number'.
  ls_fcat-fieldname  = 'MATNR'.
  ls_fcat-ref_table  = 'IALV2'.
  ls_fcat-outputlen  = '18'.
  ls_fcat-col_pos    = 1.
  append ls_fcat to fieldcat2.
  clear: ls_fcat.
  ls_fcat-reptext    = 'Plant'.
  ls_fcat-coltext    = 'Plant'.
  ls_fcat-fieldname  = 'WERKS'.
  ls_fcat-ref_table  = 'IALV2'.
  ls_fcat-outputlen  = '4'.
  ls_fcat-col_pos    = 2.
  append ls_fcat to fieldcat2.
endform.
Regards,
Rich Heilman

Similar Messages

  • I am unable to update, uninstall, or reinstall iTunes on my laptop.  Windows 7 Ultimate 32 bits.  Error code is 2330.  Can somebody please help me?

    I am unable to update, uninstall, or reinstall iTunes on my laptop.  Everything was working fine until recently when there was an update available for iTunes, and when I tried to update this, I got the message, "The installer has encountered an unexpected error installing this package.  This may indicate a problem with this package. Error code is 2330."  Can somebody please help me?
    System configuration:
    Windows 7 Ultimate 32 bits.
    Version:  6.1.7601 Service Pack 1 Build 7601
    System Directory:  C:\Windows\system32
    RAM:  1.00 GB.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • I have a new hp windows 7 64bit computer and I can't download itunes at all.  It will get to 6%, 78% etc and just freeze! Can somebody please help me?

    I have a new hp windows 7 64bit computer and I can't download itunes. It gets to 11%, 63% etc. and just freezes! Can somebody please help???

    Try using Migration Assistant following this guide:
    http://support.apple.com/kb/HT4413#3
    There is advice in this document for using Migration Assistant from Time Machine or other hard drive.

  • When i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    when i open iphoto i see my photo's for 1 second and then they are gone .The photo's are still there but i can see them only on the bottom or top of my screen when i try to open them i get a sign that it is not possible.Can somebody please  help me?

    Have you upgraded to iPhoto 9.6 for compatibility with Yosemite? If not, try that first.
    It looks like iPhoto has lost the connection between the thumbnails and the original image files.
    This can be caused by a corrupted iPhoto library, or the originals have been deleted or moved.
    Try first to rebuild your iPhoto Library:
    If you do not have a current backup of the iPhoto library, make a copy of the library, but do not overwrite any previous backup.
    Launch iPhoto with the ⌥⌘-key combination (option-command) held down.
    Select "rebuild" from the first aid panel.  This may take a while for a large library.
    Can you now see your photos again?
    If not, rebuild the library with iPhoto Library manager as described by Old Toad:            Re: iphoto crashed

  • Can somebody please tell me how to fix this. when i try to install appleworks this pops up  so please help me i need to get this on my mac

    can somebody please tell me how to fix this. when i try to install appleworks this pops up
    so please help me i need to get this on my mac

    AppleWorks is a very old application and requires Rosetta to run under recent systems.
    Lion does not include Rosetta.
    If you browse this forum you will find many posts on this issue.

  • I just want to know that if I buy an iphone 4S here in melbourne can i use it in china? i don`t know whether it`s locked or not and i don`t know what`s the network in china as well. Can somebody please help?I am really in a hurry to know it. Thanks a lot.

    I just want to know that if I buy an iphone 4S here in melbourne can i use it in china?
    i don`t know whether it`s locked or not and i don`t know what`s the network in china as well.
    Can somebody please help?
    I am really in a hurry to know it.
    Thanks a lot.
    P.S: For the iphone 4S. is there any difference for the one from online shop or the actual store?

    iPhones purchased from the online Apple Store in Australia will be unlocked. To the best of my knowledge, unlocked iPhone are not available from the physical Apple Stores at this time, though you can call the Apple Store in Melbourne and inquire.
    Note that the warranty on iPhones is not international, so if you purchase an iPhone in Australia and it needs service, you would have to ship the iPhone to someone in Australia to take or send to Apple for service and then ship it back to you.
    Regards.
    (Note for any readers: this is an old thread and I posted before noticing the date, but decided to leave my reply in case anyone else finds the thread and has the same question).

  • I need some help with my java game using applets, CAN SOMEBODY PLEASE HELP

    Hi,
    I am in the process of creating a RPG program using Java. I am not very experienced with java, however the problem i am currently facing is something i can't seem to figure out. I would like to draw a simple grid where a character (indicated by a filled circle) moves around this grid collecting items (indicated by a red rectangle). When the character moves on top of the grid with the item, i would like it to disappear. Right now i am not worrying about the fact that the item will reappear after the character moves away again, because sometimes, when the character moves over the item, nothing happens/another item disappears. i have been at this for 4 days and still cannot figure out what is goign on. can somebody please help me? it would be most appreciated.
    Thanks
    PS if i needed to send you my code, how do i do it?

    Thank you for replying.
    The thing is, I am taking java as a course, and it is necessary for me to start off this way (this is for my summative evaluation). i agree with you on the fact, however, that i should go in small steps. i have been doing that until this point, and my frustration caused me to jump around randomly for an answer. I also think that it may just be a bug, but i have no clue as to how to fix it, as i need to show my teacher at least a part of what i was doing by sometime next week. Here is my code for anybody willing to go through it:
    // The "Keys3" class.
    import java.applet.*;
    import java.awt.*;
    import java.awt.Event;
    import java.awt.Font;
    import java.awt.Color;
    import java.applet.AudioClip;
    public class Keys3 extends java.applet.Applet
        char currkey;
        int currx, curry, yint, xint;
        int itmval [] = new int [5],
            locval [] = new int [5],
            tempx [] = new int [5], tempy [] = new int [5],
            tot = 0, score = 0;
        boolean check = true;
        AudioClip bgSound, bgSound2;
        AudioClip hit;
        private Image offscreenImage;
        private Graphics offscreen;     //initializing variables for double buffering
        public void init ()  //DONE
            bgSound = getAudioClip (getCodeBase (), "sound2_works.au");
            hit = getAudioClip (getCodeBase (), "ah_works.au");
            if (bgSound != null)
                bgSound.loop ();
            currx = 162;
            curry = 68;
            setBackground (Color.white);
            for (int count = 0 ; count < 5 ; count++)
                itmval [count] = (int) (Math.random () * 5) + 1;
                locval [count] = (int) (Math.random () * 25) + 1;
            requestFocus ();
        public void paint (Graphics g)  //DONE
            resize (350, 270);
            drawgrid (g);
            if (check = true)
                pickitems (g);
                drawitems (g);
            g.setColor (Color.darkGray);
            g.fillOval (currx, curry, 25, 25);
            if (currkey != 0)
                g.setColor (Color.darkGray);
                g.fillOval (currx, curry, 25, 25);
            if (collcheck () != true)
                collision (g);
            else
                drawitems (g);
        } // paint method
        public void update (Graphics g)  //uses the double buffering method to overwrite the original
                                         //screen with another copy to reduce flickering
            if (offscreenImage == null)
                offscreenImage = createImage (this.getSize ().width, this.getSize ().height);
                offscreen = offscreenImage.getGraphics ();
            } //what to do if there is no offscreenImage copy of the original screen
            //draws the backgroudn colour of the offscreen
            offscreen.setColor (getBackground ());
            offscreen.fillRect (0, 0, this.getSize ().width, this.getSize ().height);
            //draws the foreground colour of the offscreen
            offscreen.setColor (getForeground ());
            paint (offscreen);
            //draws the offscreen image onto the main screen
            g.drawImage (offscreenImage, 0, 0, this);
        public boolean keyDown (Event evt, int key)  //DONE
            switch (key)
                case Event.DOWN:
                    curry += 46;
                    if (curry >= 252)
                        curry -= 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.UP:
                    curry -= 46;
                    if (curry <= 0)
                        curry += 46;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.LEFT:
                    currx -= 66;
                    if (currx <= 0)
                        currx += 66;
                        if (hit != null)
                            hit.play ();
                    break;
                case Event.RIGHT:
                    currx += 66;
                    if (currx >= 360)
                        currx -= 66;
                        if (hit != null)
                            hit.play ();
                    break;
                default:
                    currkey = (char) key;
            repaint ();
            return true;
        public boolean collcheck ()  //DONE
            if (((currx == tempx [0]) && (curry == tempy [0])) || ((currx == tempx [1]) && (curry == tempy [1])) || ((currx == tempx [2]) && (curry == tempy [2])) || ((currx == tempx [3]) && (curry == tempy [3])) || ((currx == tempx [4]) && (curry == tempy [4])))
                return false;
            else
                return true;
        public void collision (Graphics g)
            drawgrid (g);
            for (int count = 0 ; count < 5 ; count++)
                if ((currx == tempx [count]) && (curry == tempy [count]))
                    g.setColor (Color.darkGray);
                    g.fillOval (currx, curry, 25, 25);
                else if ((currx != tempx [count]) && (curry != tempy [count]))
                    g.setColor (Color.red);
                    g.fillRect (tempx [count], tempy [count], 25, 25);
        public void drawitems (Graphics g)
            for (int count = 0 ; count < 5 ; count++)
                g.setColor (Color.red);
                g.fillRect (tempx [count], tempy [count], 25, 25);
        public void pickitems (Graphics g)
            check = false;
            for (int count = 0 ; count < 5 ; count++)
                if (locval [count] <= 5)
                    tempy [count] = 22;
                else if (locval [count] <= 10)
                    tempy [count] = 68;
                else if (locval [count] <= 15)
                    tempy [count] = 114;
                else if (locval [count] <= 20)
                    tempy [count] = 160;
                else if (locval [count] <= 25)
                    tempy [count] = 206; //this determines the y-position of the item to be placed
                if (locval [count] % 5 == 0)
                    tempx [count] = 294;
                else if ((locval [count] == 1) || (locval [count] == 6) || (locval [count] == 11) || (locval [count] == 16) || (locval [count] == 21))
                    tempx [count] = 30;
                else if ((locval [count] == 2) || (locval [count] == 7) || (locval [count] == 12) || (locval [count] == 17) || (locval [count] == 22))
                    tempx [count] = 96;
                else if ((locval [count] == 3) || (locval [count] == 8) || (locval [count] == 13) || (locval [count] == 18) || (locval [count] == 23))
                    tempx [count] = 162;
                else if ((locval [count] == 4) || (locval [count] == 9) || (locval [count] == 14) || (locval [count] == 19) || (locval [count] == 24))
                    tempx [count] = 228;
        public void drawgrid (Graphics g)  //DONE
            g.drawRect (10, 10, 330, 230); //draws the outer rectangular border
            int wi = 10; //width of one square on the board
            int hi = 10; //height of one square on the board
            for (int height = 1 ; height <= 5 ; height++)
                for (int row = 1 ; row <= 5 ; row++)
                    if (((height % 2 == 1) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))
                        g.setColor (Color.gray);
                        g.fillRect (wi, hi, 66, 46);
                    else /*if (((height % 2 == 0) && (row % 2 == 1)) || ((height % 2 == 0) && (row % 2 == 0)))*/
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46);
                        g.setColor (Color.lightGray);
                        g.drawRect (wi, hi, 66, 46); //drawn twice to make a shadow effect
                    wi += 66;
                wi = 10;
                hi += 46;
            } //this draws the basic outline of the game screen
    } // Keys3 class

  • Can somebody please advise urgently... I backed up my entire hard-drive of my macbook pro - just prior to installing osx mountain lion. I put everything into a folder on my desktop - then backed it up onto an external drive. Once this was done - i deleted

    Can somebody please advise urgently...
    I backed up my entire hard-drive of my macbook pro - just prior to installing osx mountain lion.
    I put everything into a folder on my desktop - then backed it up onto an external drive. Once this was done - i deleted the folder off my desktop - and  following this - things started to go all weird...pages hanging, the coloured 'wheel of death' appeared for ages. So i had to employ a 'hard-boot' restart - as i had not other options.
    I'm pretty sure i made copies of of files/apps/folders etc - however not so sure now as i cant even start up my laptop!!!
    Can somebosy please help me urgently??!!!

    Got the exact same problem, and I also did this operation many times before, from 500Gb to 750Gb, and then from 750Gb to 1 Gb. Not My HD got a little such complaining about bad sectors when in windows bootcamp, but still runs fine though.
    So I bought a new 1Gb drive exactly same drive as the one thats getting sick. I did the clone thing, with super duper, CCC, DU, but no matter it will not boot when i move the new drive inside the macbook…….**** thing exuse me, but wasted so much time.
    Now I get this strange feeling that something must have changed in the macbook itself. Just wondering if this could be a EFI "mac bios" prevention thing, they made just to sell more new computers, when you can't improve or fix your old one.
    If so, then its pretty scary. If not then I simply can't figure out why this suddenly becomes a problem for so many people, as I see so many posts about this!!
    BR Pete

  • I want to uninstall the new iOS update. can somebody please help?

    I have a son that is disabled and he LOVES youtube. He has learned a lot navigating through the app. The new iOS update does not support that app. Why?? i dont know but I wish I never updated. I have no idea how to uninstall the update. Can somebody PLEASE help me??!!! Thank you so much!!

    Just go to YouTube.com in safari and view the content that way. Create a shortcut on the home screen so you do not bleed to type in the address.

  • HT204053 Need A Solution With An iCloud Problem So Can Somebody Please Help Me?

    Can somebody please help me find a solution to my problem? 
    When I enter my username and password and hit enter I get this message, "The Apple ID is valid but is not an iCloud account" is the error message I receive implying that I do not have an iCloud account. I have searched and looked at the troubleshooting contents and I haven't found anything even close to this issue so I have come here for help. I appreciate any tips or tricks to fix my problem.    Thank you for reading and look forward to hearing your answers. 
    Thank You,
    Lisa W. 

    Hey Lisa_AW!
    If you want to make this Apple ID an iCloud account, try referencing the information here:
    Creating an iCloud account: Frequently Asked Questions
    http://support.apple.com/kb/ht4436
    Thanks for using the Apple Support Communities. Have a good one!
    -Braden

  • HT4211 I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I really do not think it is the iPad or your network connection. Other users have reported this very same issue. Try this and see if it works for you - it may not work - but it's easy to try - harmless - and it has worked in the past for others.
    Try signing out of your account and restart your iPad.
    Go to Settings>Store>Apple ID and tap the ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. Go back to Settings>Store> Apple ID and sign in again.

  • HT203167 My pre ordered music is now available, just received confirmation of payment, but now I do not know how to download it. Can somebody please help me. I am on my iPad.

    Can somebody please let me know how to download my preorder. I have received payment confirmation and its available as of today but cannot work out how to download it. Thankyou

    Tap Settings > iTunes app then tap More at the bottom of the display in the menu then tap Purchased.

  • Hi can somebody please help me to get Apple phone support stop calling me to tell me that i NOT awnsering the phone!!!!

    Hi can somebody please help me to get Apple phone support stop calling me to tell me that i NOT awnsering the phone!!!!

    The battery capacity on a 5S is a little better but be sure to read the special notes on conserving battery power on these phones.   Here are two in particular.
    17 Tips to Extend iPhone Battery Life (Updated for iOS 7)
    How to improve iPhone battery life, what to do if your iPhone battery is running low - How to - Macworld UK
    Regards,  71

  • Can somebody please fix the mess that is iBooks?

    can somebody please fix the mess that is iBooks? lousy metadata, lousy usability, and now fails to read my library until I delete it from the filesystem then rebuild it. reboot, and it's screwed again. do you need someone to run the iBooks development program? please let me know.

    For Apple to see your message, best repeat it at
    http://www.apple.com/feedback

  • I have a ram problem, can somebody please help me?

    Hello
    This is the first time I've put a computer together from scratch (I got some help from a friend though). What I wonder is if there is a manual for the MSI mothercards somewhere on the net because I didn't get any good description  in the package, and I can't find the spot for audi and USB inputs. I also would like to know how many memorysticks i can use, because if i put in 3 of them the computer starts to beep. Can somebody please help me?
    My specs are:
    Q-tec midi Tower
    MSI K8N Neo2-FX, nForce3
    AMD Athlon 64 3200+ 2.0GHz socket 939
    Zalman P4 CNPS-7700-CU
    XFX Geforce FX5500 128MB DDR
    Samsung Spinpoint P120 200GB
    Sony DVD burner DL
    Sony floppydisk
    Cosair Value S. PC3200 DDR-dimm 512MB unbuffered non-Parity, 64Meg x 64, CL2.5
    (I have 3 of these but I can only have 2 at a time or the computer wont work)
    // TheGamecritic

    Quote from: TheGamecritic on 15-September-05, 18:42:56
    Hello
    This is the first time I've put a computer together from scratch (I got some help from a friend though). What I wonder is if there is a manual for the MSI mothercards somewhere on the net because I didn't get any good description  in the package, and I can't find the spot for audi and USB inputs. I also would like to know how many memorysticks i can use, because if i put in 3 of them the computer starts to beep. Can somebody please help me? 
    My specs are:
    Q-tec midi Tower
    MSI K8N Neo2-FX, nForce3
    AMD Athlon 64 3200+ 2.0GHz socket 939
    Zalman P4 CNPS-7700-CU
    XFX Geforce FX5500 128MB DDR
    Samsung Spinpoint P120 200GB
    Sony DVD burner DL
    Sony floppydisk
    Cosair Value S. PC3200 DDR-dimm 512MB unbuffered non-Parity, 64Meg x 64, CL2.5
    (I have 3 of these but I can only have 2 at a time or the computer wont work)
    // TheGamecritic
    Congrats on 'Rolling your Own' for the first time.  I'm certainly no expert although I have sucessfully built a few.  Actually, my specs are almost identical except I'm using Kingston Value Ram instead of Cosair.  As far as your first question, I assume you mean the internal USB/MB connectors and the MB audio connector(s).  The information is in the MSI Neo2 Plat manual although you have to look closely and move back and forth between the MB schemaic and the section(s) describing the connections to get a clear fix.  The MB USB connectors are on the side of the MB furthest from the RAM slots and about in the center, (JUSB1 or JUSB2).  The audio connector (JAUD1 is located on the same side of the MB as the USB connectors only near the rear panel end, (close to the orange PCI slot).  As you, I found that that I could not use three ram sticks as I could in my old K7 board and when I bought two sets of matched ram I found that it didn't like 4 sticks either.  Three:  Would'nt post  Four:  Instability and an initial  hit in performance;  although I was able to finally coax it to 200mhz Dual Channel it wasn't worth it because of the random crashes n Windows I was getting. I have also discovered the hard way that for some reason my board at least is hypersensitive to IDE  cables, (Would not recognize any secondary IDE device on Channel 1 until I found the right cable) and it does not like Sound Blaster audio cards prior to Audigy 2 ZS.  Actually, it only tolerates a ZS and I had problems and it didn't like my new X-Fi at all until I moved it to the PCI slot closest to my video card.  I was getting random BSODS and crashes, (one that took out my OS).  Since I move the card things appear to be more stable, so far.  Anyway good luck.

Maybe you are looking for

  • HOW TO DELETE APPLE SUPPORT COMMUNITY ACCOUNT - Discussion mail with in 10 mnts -250?

    Fellows, It is a night mare. I don't know how to controll the email notification from the apple support community. with in 10 mnts my mail box has 230 mails from the diffrent area. or How can I delete my apple support community account. Thanks JBTSA

  • Budget Check by Internal Order

    Dear all, My settings for budget checking is working fine for year 2007 (current). Once budget is created for year 2008, there will be no budget checking for year 2007. Is budget checking only applied to either 2007 or 2008? More information on budge

  • HT201272 You've already purchased this In-App Purchase

    I'm trying to make a purchase inside of a game I'm playing on my iphone 5.  I've done this many times already, but yesterday I tried to make a purchase and I received the message "You've already purchased this In-App Purchase but it hasn't been downl

  • Can We Maintain External E-mail id in Organization Structure ??

    Hi All,           Can We Maintain External E-mail id in Organization Structure created  in transaction PPOMW ??

  • IMac desktop freeze

    I have an older iMac (first version with the Intel processor) that is having desktop problems. It appears that if there is too much movement on the screen i.e. a video, several windows being moved, etc. the screen will first not draw images completel