Big problems with my graphic card and 865neo2

i am using
msi865pe neo2(no lan)
p4 2.8 800mhz
2X512mb kinstom ram
sapphire radeon graphic card
sound blaster exdigy
msi dvd
msi cdrw 52m
there is a very weird problem tt i am facing now,the latest radeon catalyst is 3.8,but when i use this driver,my computer always shut down suddenly when i play games,but when i use catalyst 3.2,there is no problem and everything works well(from 3.2~3.8 all with errors)
does it relate to agp8x setting? cos radeon9600pro is running on 0.8v right,but why i can only set the votage upto 1.5v?
anyone knows why?

Actually there'll be something like this:
+3.3v -> 28A
+5v -> 32A
+12v -> 22A
-5v -> 0.5A
-12v -> 0.5A
Please check again.

Similar Messages

  • Problem with discrete graphic card and DirectX 11

    If I try any application to launch with discrete graphic card (nvidia geforce 740m) that using directx 11 it always crashes.
    There no problems with directx 9 on on this graphic card.
    There are no problems with integrated graphic card whether application using directx 9 or 11. Problem occurs only with discrete graphic card and directx 11.
    The things that i did:
    - Reinstall Windows
    - Install latest driver updates (I also tried to uninstall latest and install recomended driver downloaded from the oficial HP support 'driver download' web page)
    - different options on nvidia control panel 3d settings page
    I also tried microsoft 'Direct3D Tutorial Win32 Sample' source code to build and debug. It is failed in function IDXGISwapChain:resent with code DXGI_ERROR_DEVICE_REMOVED and ID3D10Device::GetDeviceRemovedReason returns DXGI_ERROR_DRIVER INTERNAL_ERROR.
    Is there any chance that is not hardware malfunction?
    Model Envy 15-j175er
    OS Windows 8.1 64

    @Enegue ,
    Hello and thank you for posting on the HP support forum.  In your situation I would consider keeping with Directx 9.  The reason I say this is your notebook is not a performance gaming machine.  It is designed to be fore general use.
    Some cards will notice issues when upgrading to direct 11 from a lower level.  
    Not to mention with your notebook you will want to stick with the drivers only provided from the HP support site.  They are proprietary for the notebook and could be the reason why the directx 11 is not working.
    Here is the link to your systems supported drivers.
    HP ENVY 15-j175er Notebook PC (ENERGY STAR)
    Thank you again for posting and have a great day.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    D5GR
    I work on behalf of HP

  • Problems with the graphic card and adobe photoshop cs5

    hello,
    i installed adobe photoshop cs5 for my sisters computer:
    specifications:
    Prozessor: AMD Phenom™ II X6 1090T Six-Core Prozessor(3,2GHz, 9MB Cache)
    Festplatte: 2x 1 TB SATA II
    Arbeitsspeicher: 8 GB DDR3
    Grafikkarten: VGA PCI-Express ATI Radeon™ HD5870 1GB GDDR5 (2x DVI, HDMI, DisplayPort) x 2 (2 von der sorte)
    Sound: 7.1 support
    Netzwerk: Gbit LAN
    Software: Windows® 7 Home Premium,
    Schnittstellen/Anschlüsse: Gehäuse-Front: Mic., Audio, 2xUSB 2.0, Front MCR, 1x Firewire, 1x eSATA Gehäuse-Rückseite: 8x USB 2.0, 2x USB3.0, 2x
    Firewire, 2x eSATA, 2x DVI, 1x HDMI, 1x Gbit LAN, 2x SPDIF, 6x Audio
    Besonderheiten: 80 Watt Netzteil
    as you can see, absolute new hardware...
    now photoshop tells her that her graphic card wouldnt fit the requirements, and allways switches to "software-sides" rendering.
    this can't be true, this mashine is running hardchore grafic apps, and has the newest ATI Raedon Gra-Card (2 of them) which even now has a native support for open GL.
    the computer has all latest drivers (no newer versions available)
    so what to do?
    i can't even tell photoshop manually in the settings to enable open GL...
    i defenitally reached the end of my knowledge here.. i tried everything, also changing (as suggested by photoshop) the open GL settings of the graphic card card. no changes ...
    need help with this one..
    thank you already for your time and hopefully help
    chris congrejo

    This forum is for suite specific issues only. Please post in the Photoshop forum.
    Bob

  • Very big problem with JSF about FORM and "id=" for HTML form's elements and

    I have discovered a very big problem with JSF about FORM and "id=" for HTML form's elements and java instruction "request.getParameterNames()".
    Suppose you have something like this, to render some datas form a Java Beans :
    <h:dataTable value="#{TablesDb2Bean.myDataDb2ListSelection}" var="current" border="2" width="50%" cellpadding="2" cellspacing="2" style="text-align: center">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Name"/>
    </f:facet>
    <h:outputText id="nameTableDb2" value="#{current.db2_name_table}"/>
    </h:column>
    </h:dataTable>
    Everything works fine...
    Suppose you want to get the name/value pairs for id="nameTableDb2" and #{current.db2_name_table} to process them in a servlet. Here is the HTML generated :
    <td><span <span class="attribute-name">id=<span class="attribute-value">"j_id_jsp_1715189495_22:0:nameTableDb2">my-table-db2-xxxxx</span></td>
    You think you can use the java instructions :
    Enumeration NamesParam = request.getParameterNames();
    while (NomsParam.hasMoreElements()) {
    String NameParam = (String) NamesParam.nextElement();
    out.println("<h4>"++NameParam+ "+</h4>);
    YOU ARE WRONG : request.getParameterNames() wants the syntax *name="nameTableDb2" but JSF must use id="nameTableDb2" for "<h:outputText"... So, you can't process datas in a FORM generated with JSF in a Servlet ! Perhaps I have made an error, but really, I wonder which ?
    Edited by: ungars on Jul 18, 2010 12:43 AM
    Edited by: ungars on Jul 18, 2010 12:45 AM

    While I certainly appreciate ejb's helpful responses, this thread shows up a difference in perspective between how I read the forum and how others do. Author ejb is correct in advising you to stay inside JSF for form processing if form processing is what you want to do.
    However, I detect another aspect to this post which reminds me of something Marc Andreesen once said when he was trying to get Netscape off the ground: "there's no such thing as bad HTML."
    In this case, I interpret ungar's request as a new feature request. Can I phrase it like this?
    "Wouldn't it be nice if I could render my nice form with JSF but, in certain cases, when I REALLY know what I'm doing" just post out to a separate servlet? I know that in this case I'll be missing out on all the nice validation, conversion, l10n, i18n, ajax, portlet and other features provided by JSF".
    If this is the case, because it really misses the point of JSF, we don't allow it, but we do have an issue filed for it
    https://javaserverfaces-spec-public.dev.java.net/issues/show_bug.cgi?id=127
    If you can't wait for it to be fixed, you could decorate the FormRenderer to fix what you want.
    I have an example in my JSF book that shows how to do this decoration. http://bit.ly/edburnsjsf2
    Ed

  • Is it possible to get a T61 with discrete Graphic card and NO OS?

    Hi
    Thank you for reading my post.
    I am looking to know whether I can get aT61 with discrete Graphic card and NO OS?
    I dont like to pay for the OS as I will install Ubuntu.
    Thanks 
    Solved!
    Go to Solution.

    No you can't, unless you're a corporate customer ordering (at least) several hundred pieces.
    Cheers,
    George
    In daily use: R60F, R500F, T61, T410
    Collecting dust: T60
    Enjoying retirement: A31p, T42p,
    Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
    Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

  • !!! Problem with 2nd graphic card !!!

    Hi I have a big problem with my laptop.
    I have an HP TouchSmart tm2-2000el Notebook, with Windows 7 64-bit.
    2nd Graphic card is ATI RADEON HD Series 5450.
    When I activate this hardware from Control Panel desktop goes black but every function are ok (sounds, illumination and all cmds).
    So I must restart my computer in Safe Mode disactivate ATI Radeon HD 5450 and restart it.
    Laptop run but only with Intel graphic card.
    I tried to search update drivers on Amd/ATI site: amd online software reveals Ati radeon HD 5000 Series but after download Ati software tell me that is impossible to install drivers because there isn't an ATI Radeon HD 5000 Series.
    So I have low graphics and CPU with 69°C because intel graphic card runs over...
    I haven't found any driver for my model of laptop on HP Assistance.
    Touchsmart spec
    How can I do now?
    Thanks
    Alberto

    This is the right driver for switchable graphics...do not also install the Intel only driver, you do not need both.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-90545-1&cc=us&dlc=en&lc=en&...

  • Problem with nvidia graphic card, nvlddmkm.s​ys

    I have a HP m9000 , originally it had Vista, it started to fail and display the error nvlddmkm.sys (on a blue screen od death), i intalled Windows 8 in hope the problem get resolve. but the problem still persist. At the beginning on W8 it looks like working fine, but suddenly it started to display "controller not responding", and then it is displayin "Something goes wrong with your graphic card".
    I found on internet a fix; expanding the nvlddmkm.sy_ and replace the file in system32. i made it but right now after the windows logon screen the monitor starts to blink between black screen and off screen.
    The grapghic card is a NVIDIA 8500 GT. I tested the graphic card in other computer, and at the begining it worked fine, but after the dirver installation it started to fail in the same way.
    Ad far i could read on intetrnet it is a failure with NVIDIA.
    Is there any solution for this problem? Or i should change the graphic video card? (Maybe for an ATI)

    Hi,
    I have used many different NVIDIA cards (including a 8600) on different PCs and never had your issue.
    As for drivers, you can always use the original drivers that came with your PC and then do an update if necessary.
    HP DV9700, t9300, Nvidia 8600, 4GB, Crucial C300 128GB SSD
    HP Photosmart Premium C309G, HP Photosmart 6520
    HP Touchpad, HP Chromebook 11
    Custom i7-4770k,Z-87, 8GB, Vertex 3 SSD, Samsung EVO SSD, Corsair HX650,GTX 760
    Custom i7-4790k,Z-97, 16GB, Vertex 3 SSD, Plextor M.2 SSD, Samsung EVO SSD, Corsair HX650, GTX 660TI
    Windows 7/8 UEFI/Legacy mode, MBR/GPT

  • Serious problems with 2 graphics cards...

    Hi,
    I'm using 4x3GHz MacPro with X1900 (2x30") and GF7300 (23").
    When all 3 monitors are connected I see weird dostortion on the viewer.
    It looks like the whole picture is divided to many rows, each offseted by 2-3 pixels to the left looking from the top of the monitor. It looks awful and of course you can't work.
    When I disconnect one of the monitors everything looks ok... I don't need to remove second card GF7300 from computer...
    It seems having 2 graphic cards is very unfortunate on this computers.
    I get problems with previews on some QuickTime videos, turning deinterlace renders screen black etc... Probably it related also to QT 7.2
    Many troubles... to many as for Apple branded computers...
    regards
    ARTI

    I, too, found out that aperture will NOT WORK with a Mac Pro with two video cards installed.  I called tech support and was advised to remove one of the cards and the program would work.  I tried just removing all but one monitor (I, like you, have three monitors) but the problem still occurred so I removed one of the cards from the machine.  Aperture worked fine then.  I need my three monitors so I put the card back in.  I was told that apple was well aware of this problem with the Mac Pro and would fix it soon.  This incident I am relating occurred about 6 to 8 months ago and still nothing from apple to fix the problem.  I have found out since that there are other Pro applications that will not work with the Mac Pro with multiple cards. Because of this problem, I have not used any of apple's graphic programs for anything and have relied of other programs to do my work. It should be noted that I gave a "one star" rating for this program on the on-line store about 3 weeks ago citing this problem. Apple has not posted it to the on-line store reviews. Now that tells me that they have no intention of fixing this problem.
    I hope that someone out there can come up with a "fix" for this. It's a shame because Apple usually produces superior products.

  • Problem with Mac graphics card (radeon 5750) and PP?

    I've had Apple try to solve the sluggish scrubbing and editing problem in Premiere Pro CS6 on my iMac (i7 2.93GH with 12 GB RAM). They have replaced the internal disk, the logic board, and 5750 processor, all with no solution. What's the solution?
    Is there an unsolvable problem with this processor and Premiere Pro?
    dmingo

    Welcome to the forums, and congratulations on your excellent English usage and grammar.
    The usual cause of video problems in these iMacs is something called the PAV board. The graphics cards themselves are seldom an issue. The board can be replaced as a unit, and is usually available on eBay as a iMac PAV board or Down Converter.
    It's not a normal user replacable item. Although some posters here do it regularly, I don't. I find it more efficient to buy another unit off eBay. Often the used iMacs are nearly the same price as the PAV boards.
    Takeapart for swapping drives - slot load is a series of pictures that will help if you need to open the machine.
    David

  • My macbook pro 2.2ghz, i7 , early 2011 having problem with the graphic card

    hi, just need clarification, that i was made to understand that the NVDIA graphic card installed in Macbook Pro, has a warranty of 3 years, eventough without Apple Protection Plan. Can someone clarify this , as i m having problem with it now.

    No, the GPU does not have a seperate 'three year warranty'... unless you purchased the extended AppleCare Protection Plan.
    If you feel that you're having problems with your GPU, take your machine to your local Apple Store or an AASP and have them run a free diagnostic test. If the card is faulty, and you don't have a APP, you'll have to pay to have the entire logic board replaced.
    Clinton

  • Problem with new graphic card Geforce GT 610 installed in HP Pavilion a6710in

    I have recently installed the nVidia GeForce GT 610 graphic card. The problem faced by me is especially during playing games, the screen goes black and PC restarts but it works fine with rest of the things. I have disabled the integrated video card as would be if new video card is installed. The problem is still unclear... so please if anyone can help me out with this...

    The GT 610 requires a minimum of a 300 watt system power supply and your computer came from the factory with a 250 watt power supply. When playing games, it is very possible that the card draws more current than the 250 watt PSU can supply. This would cause the computer to crash, go blank, and/or reboot. Please upgrade the power to at least 300 watts.
    If you have any further questions, please don't hesitate to ask.
    Please click the white KUDOS star to show your appreciation
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • Satellite U500-1DZ DPC latency problem with the graphic card geforce 310M

    Hello
    I have a problem with de DPC latency cause by the nvdia card driver.
    I use my computer for audio and it's really not possible to work.
    graph with geforce abled :
    http://nsm04.casimages.com/img/2010/09/22/100922123519210586795529.png
    when i disable the graphic card :
    http://nsm04.casimages.com/img/2010/09/22/100922123519210586795528.png
    Please give me an answer.
    My computer is a Toshiba satellite U500-1DZ, intel i5
    Thank you

    Hi, thank you for your answers.
    I have updated the last nvdia driver, the new bios and everything I found on this website, but It doesn't change anything...
    Apparently I'm not the only one to have this problem, but I don't know if it comes from Toshiba or from Nvdia.
    Do you know if it's normal to have four times "NVDIA High definition Audio" in the audio/video/games controllers ?
    When I seactivated it it's a litlle bit less worth (but still not good)...
    I'm using a preinstalled windows 7 64 bit version
    Thank you !
    Fred
    Message was edited by: fredo0411

  • Windows 7 has a problem with the graphics card of Presario M2000

    i installed Windows 7 with my Presario M2000 and i have just noticed with the drivers. the sound has been correctly installed but the sound quality is not good. the main concern of my M2000 is the graphics card driver. it is not compatible with Windows 7. ive tried updating my graphics card driver but still didnt detect it right.. i hope HP will find a solution for the compatibility of the Graphics card with Windows 7. looking forward for the solution.. Thanks

    Hi, I'm also have the same problem, and can't install any driver. LAN only working, Sound, Wi-Fi, ect,... not working. hp really update the new driver, please slove this problem.

  • Problem with upgrading Graphics Card from GTX 635 to GTX 960

    Greetings,
    I'm new to upgrading hardware in computers but have decided that I wanted to upgrade my graphics card in my HP Envy 700 - 329 (Nvidia GTX 635) to an Nvidia GTX 635. The only problem is I have never opened a computer and have no idea what cable to put where or how to take my old Graphics Card out to put my new one in, and I'm very worried because I might mess up.  Is there any video tutorial/ guide out there that is convinient to my desktop for me to upgrade?
    Thanks,
    Marwan
    P.S. Is the space in the Envy 700-329 large enough for the GTX 960?

    Hi there 
    Welcome to the HP Support Forums! It is a great place to find the help you need, both from other users, HP experts and other support personnel. I understand that you are looking at upgrading your internal video adapter from a Nvidia GTX 635 to a Nvidia GTX 690. I am happy to help with this. FIrst thing, you must be aware of before you buy any video adapter upgrade, is the power requirements of the card, the recommended minimum output for the computer's power supply,  the size of the card, the required expansion slot type, and the type of power connectors that must be available for the card from your system power supply. Starting with a comparison of the card you have with the one you are thinking to install:GeForce GT 635 (OEM) Specifications - www.geforce.comBus Support - PCI-E 3.0 Height 2.731 inchesLength 5.70 inchesslotWidth SingleMaximum Graphics Card Power (W)  35W GeForce GTX 690 Specifications - www.geforce.comBus Support - PCI Express 3.0Height 4.776 inchesLength 11.0 inchesslotWidth Dual-slotMaximum Graphics Card Power (W)               300WMinimum System Power Requirement (W) 650WSupplementary Power Connectors                Two 8-pin Your computer has the following:
    Power Supply Internal Total wattage: 460W  - too lowDimensions: 150mm x 140mm x 86mm (5.9 x 5.5 x 3.4 inches) I have highlighted the items you will need to be aware of in red, before trying to install this card. Because the stock power supply is 460W, it will also need to be replaced, because the card requires that your power supply meet a minimum output of 650W, and that power supply needs to also have two 8-pin supplementary power connectors. I included the dimensions of your current power supply so you have a guide to the type of space you have and form of the power supply to help with finding something that will fit in that space. Also I highlighted the fact that the card you are looking at is significantly larger in all dimensions, so you can make sure it will fit inside the case or have an idea of what cabling may need to be moved, and because it is a dual-slot width, it may block another slot on your main board. Because of all of these issues you may want to consider talking to a local computer tech or a tech savvy friend to help you with this, and maybe save some money as well. I did not include the instructions on how to replace the card itself, because of the other issues, which you will need to check on first. I hope this helps, or does not confuse the matter more, but reading your post I realized you were probably not aware of these little roadblocks.

  • Genius needs to help! problems with my video card and system

    Hey guys! I'm going to post my specs first so that you get a good idea of what I'm running on:
    MSI Neo2 LS 865PE.....MAT=Slow
    Pentium4 2.4C.....FSB=233=2.8C hyperthreading enabled ~>1.55V
    Corsair TwinX 1gig PC3700.....memory on "AUTO" in BIOS with timings at 3,4,4,8 ~> 2.7V
    Radeon 9700NP.....stock speeds ~>1.7V
    AlienX case with 2 fan400 watt power supply and 6 case fans
    Zalman Alum/Copper heatsink fan
    1:I've had this motherboard for a few months now. I upgraded my video card from a nVidia Ti4200(128meg) to a Radeon 9800 a month ago, but I couldn't get it working at 8X AGP, no matter what voltages I threw at it. I returned it for a Radeon 9700NP hoping that it would work, but it still won't.
    I'm using BIOS 1.9 and since there is no option to select your AGP speed, I could only try using ATI's drivers. Once booted into Windows, there is a slider you can move to select you AGP speed. On my machine It says that It has performed some tests and has concluded that AGP 4x is the best for my system....but my system supports AGP 8X!
    I've moved the slider over to 8x (which requires a reboot) at least 5 times with each card but the slider refuses to move past 4xAGP after the reboot.
    2: My second problem: I had an old stick of KingMax PC3200 and decided to buy 3 more sticks. Unfortunatly, the 3 I bought did not match the one I had, so I only put 2 of the new sticks I bought into my system. Immediatly, My system would crash, lock up, files were corrupt, and I got PLENTY of blue screens of death with a long message containing: 0x0000007  with all these other numbers and "0"s. I did a search online and found out I had a hardware incompatibility problem. I never got this with my old stick of ram.
    I returned the 3 sticks of Ram and replaced them with the Corsair. Put my new Radeon 9700 in, formatted my hard drive....and within 24 hours, my system locked up 3 times, rebooted itself 5 times, and gave me the same BSOD as mentioned above with the same long message.  
    I didn't change anything except for the memory and the video card. I've been wanting to overclock, (thats why i bought the faster memory   ) but I'm not sure what to do at this point.
         I have my FSB at 233 but I'm scared to go any higher because of previous system instability at stock speeds. My RAM was running on 400 and MAT=Turbo with the most relaxed timings at 3,4,4,8.
    I've given myself hours of sleepless nights formatting when my system wouldnt boot into windows; overclocking....etc. I NEED HELP. PLEASE. PLEASE. Anything could work at this point.  
         I'm trying to get more info on how to run my system at a 5:4 ratio, also.  
    If anyone has problems like me or knows what could be the problem with my system, please reply to this post, it would help me a lot. I've been trying to fix these problems for a few months now so anything is greatly appreciated.  

    Thanks a lot to you guys that responded. I brought my computer home this past holiday and I want to let you know where I stand as of now. I guess this thread is like my blog for my computer. I want to clear some things before my first post makes everyone confused.
    1- I have only 2 sticks of memory in my system: the Corsair PC3700 TwinX 512x2
    I returned the 3 KingMax I bought, and still keep my old stick just in case.
    2- I am using the 400 watt power supply that came with the case. I read some reviews of the case and I know the reviewer did not have problems with the power supply. In my BIOS, there are some voltages it is weak on. Lets say: it it should be 5.00+, my power supply will be feeding it 4.96v or something like that, but I dont know, or think, that is a major problem...
    3- My computer will refuse to boot if memory speeds are set at anything below 400. SO....if I want to use a 5:4 ratio and have to set my memory speeds to "333" in BIOS, my system refuses to boot.
    4- This morning, I did manage to overclock my FSB to 250. Specs are as follow:
    Memory Timing @3,4,4,8,4.....speed set at "AUTO".....MAT at "SLOW"
    MY 2.4C's FSB was raised to 250 = 3.0gig  
    AGP/PCI frequency: 67.xx/3x.xx (cant go any lower)
    CPU voltage: 1.5500
    Memory voltage: 2.75
    Video Card voltage: 1.7
         Everything was fine for the whole day until I heard something click in my computer around midnight, and then seconds later, my computer froze and made a continuous beeeeeeeeeeeeeeeeeep. (you can imagine)
         This "click" and system crash has been plaguing me for months now. I dont know whay it happens. I was just using AIM when I heard the click and my heart stopped.
    My memory speeds have been set to "AUTO" even at the FSB of 250. But I don't know if this still means my system is at a 1:1 ratio. I know the BIOS then adjusts the memory to work at 500 if my FSB is 250...so I assume it is?    I love 3gig, but somehow I feel that 2.8 is faster, since the FSB=233 running parallel to my memory, also at 233
    A FSB of 250 is good enough for me, that's what I've been waiting 6 months for. If anyone knows how to set other ratios to achieve a FSB of 250+, please let me know, but as I said, my memory won't boot if its set at "333"

Maybe you are looking for

  • Convert a number value to a date

    Post Author: Jeremiah CA Forum: Formula I'm using Crystal Reports XI. I'm coming across a problem trying to convert a number value to a date.  I'm using formula below: if not isnull({qryStoreCheckIn.CHECKINDATE})  or {qryStoreCheckIn.CHECKINDATE}="0"

  • RFC to XI Question

    Hello everyone, I am looking to configure an RFC to XML scenario via XI, wherein I use the function module: BAPI_SALESORDER_CREATEFROMDAT2 to send data from R/3 to XI. I understand I have to create an RFC Destination (SM59) with type - TCP/IP in SM59

  • Initial Compression of a Cube - Suggesions/Experience needed

    <b>Q: What experience have you have compressing an InfoCube with a large dataset on MSSQL?</b> I am looking into compressing an InfoCube for the first time. I ran it via PC in Dev, and I ended up having to kill the process b/c my transaction log fill

  • I want to delete all the data

    I have to sale my MacBook and before delivery I want to delete all the data. Howwwwwwwwwww ?..

  • Oracle Listener not starting.

    Hi I have installed NW2004s ABAP only on 2003 server with oraccle database. I have installed two instances with SID's DEV & PRD. I have one loop-back adapter and 2 Listeners(OraclePRD102TNSListener and OracleDEV102TNSListener). Initially both the lis