Problem overclocking A64 x2 3800+ with K9A2 CF !

Hi there, I have an A64 x2 3800+ (windsor) on a MSI k9A2 CF (AMD 790X) with a pair of GeIL 1Gb DDR2 800 CL4 (4-4-4-12) and I'm trying to boost it up...
I've followed some guides and I was able to determine the maximum speed of each component.
With a 3x HTT multiplier and a memory divider set to the lowest one, the computer was stable at 260mhz x10 @ 1.45v (2600 mhz)
With a 3x HTT multiplier and a x9 CPU multiplier, the memory was very stable at 250mhz with a 1:2 divider (1000mhz) @ 1.95v.
I was able to run succcessfully the AMD Overdrive stability test, SUPER_PI and 2 instances of prime95 with the FSB at 250mhz x10, and DDR@1000mhz but the HTT set do 3x(750mhz), when I set it to 4x (4x250=1000HTT) I start getting this message at boot:"DQS Training failed on previous boot, revert to slower DRAM speed" and it sets the memory to the next highest divider (1:1.66 I think?!?).
Am I doing something wrong???
Thx and cheers to all

 No. For stability keep it below 1000. If it's at 1000 now at 4x then drop it to 3x
>> Read this <<
 Memory controller is in the CPU.
 Edit: Of course if I'm wrong with any of this I'm sure someone will jump in & say so.
  won't bother me me as long as you get what you need.

Similar Messages

  • How to overclock my x2 3800+ with K9N Ultra

    My current rig as below:-
    AMD X2 3800+ AM2 stock fan
    MSI K9N Ultra (MS-7250 v2.0 but on board stated v2.1) bios upgraded from 3.2 to 3.5
    1G DDR2 667 Kingston Value Ram x 2
    MSI 8600GT-Overclock edition
    Lite-on 20X Sata DVD-Ram
    Seagate Sata2 320GB
    WD Pata 120GB
    Cooler Master 500W Extreme
    Cooler Master Centurion 5
    As I'd seen in many forums that a lots of people are able to archieve 2.4G~2.6GB easily but I don't know why I can only able to archieve highest at 2.3G only.
    My current setting is as below:-
    Multiplier - 10
    HT - 230
    HTT - 5X
    FSB - 287.5
    Ram divider - 533
    Clock speed at 2300mHz stock vcore & vdimm 1.95
    But the moment I try to increase the HT to 240 or higher it tends to be unstable even I increase the vcore and vdimm.
    Can someone advise me on this matter.

    Quote from: BOSSKILLER on 10-May-07, 12:03:37
    "Besides that I'd also tried to set HTT to 3x and loosen the ram timing to 5-5-5-15-20 2T. vcore at 1.45 vdimm 2.0 and HT set to 240 but it won't boot."
    try with lesser steps. give CPU vcore only when need. what is your actual memory frequency at latest good OCed settings?
    "Btw I'd not seen the function "DOT & aggressive memory timings" where am I suppose to disable it?"
    aggressive memory timings option doesn't exist in your BIOS, DOT(Dynamic Overclocking) its Disabled by default, but ensure it.(located in Cell Menu).
    "My PCI-E has set to 104Mhz. Coz I'd seen some forum advise to set to 104Mhz. So actually 103Mhz or 104Mhz will be more stable?"
    nop will be the same.
    provide screenshots from CPU-Z with your last good known OCed settings.
    I'd set to disable on dynamic overclock all the time. btw I'd upload the link CPU-Z validation but I don't know how to put attachment thats why I upload the link.

  • In my i phone 4s all the notification sounds come first.after 4-5 seconds the msg,facebook notifications etc.seems to appear on the screen.But earlier the problem was not there.Earlier with instant sound the notifications were there on the screen.how to S

    in my i phone 4s all the notification sounds come first.after 4-5 seconds the msg,facebook notifications etc.seems to appear on the screen.But earlier the problem was not there.Earlier with instant sound the notifications were there on the screen.how to Sort out the Problem?

    No, sounds like when you dropped it an cracked the screen it may have also damaged the logic board or the repair person damaged a cable.

  • My apple tv mirroring is slow.  So slow it shuts off.  Any thoughts on cause?  I use this device in my office for presentations without a problem.  In my home with a stronger wifi router, I'm having issues.

    My apple tv mirroring is slow.  So slow it shuts off.  Any thoughts on cause?  I use this device in my office for presentations without a problem.  In my home with a stronger wifi router, I'm having issues.

    Welcome to the Apple Community.
    Intermittent problems are often a result of interference. Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • ORA-00600 problem when create XMLType table with registerd schema

    Hi,
    I am using Oracle9i Enterprise Edition Release 9.2.0.4.0 on RedHat Linux 7.2
    I found a problem when I create table with registered schema with follow content:
         <xs:element name="body">
              <xs:complexType>
                   <xs:sequence>
                   </xs:sequence>
                   <xs:attribute name="id" type="xs:ID"/>
                   <xs:attribute name="class" type="xs:NMTOKENS"/>
                   <xs:attribute name="style" type="xs:string"/>
              </xs:complexType>
         </xs:element>
         <xs:element name="body.content">
              <xs:complexType>
                   <xs:choice minOccurs="0" maxOccurs="unbounded">
                        <xs:element ref="p"/>
                        <xs:element ref="hl2"/>
                        <xs:element ref="nitf-table"/>
                        <xs:element ref="ol"/>
                   </xs:choice>
                   <xs:attribute name="id" type="xs:ID"/>
              </xs:complexType>
         </xs:element>
    Does Oracle not support element reference to other element with dot?
    For instance, body -> body.content
    Thanks for your attention.

    Sorry, amendment on the schema
         <xs:element name="body">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element ref="body.head" minOccurs="0"/>
                        <xs:element ref="body.content" minOccurs="0" maxOccurs="unbounded"/>
                        <xs:element ref="body.end" minOccurs="0"/>
                   </xs:sequence>
                   <xs:attribute name="id" type="xs:ID"/>
                   <xs:attribute name="class" type="xs:NMTOKENS"/>
                   <xs:attribute name="style" type="xs:string"/>
              </xs:complexType>
         </xs:element>

  • Problem in stock maintenance--% wise ---with variants-----urgent

    hi gurus,
    I have created material using t.code [MM01]
    Industry sector: steels and mining
    Material type: configurable material steels and mines
    Basic data 1:
    Item category group:  0002-configuration
    Classification:
    Class: IRON_GRADES
    Characteristics: IRON ORE GRADES BASD ON %
                                                                      GRADE A = ABOVE 65%
                                                                      GRADE B = 62% TO LES THAN 65%
                                                                      GRADE C = 40% TO LES THAN 62%
    PROBLEM:
    Based on the grades or percentage of the iron ore the lease (customer) is going charged royalty
    And System is picking the royalty according to the % of iron ore at the time of sales order using the t.code [VA01].
    While I am delivering and issuing the goods using the same sales order using the t.code [VL01N]
    System giving the following error message 
    If we analyze the error,
    0 materials is available
    There is no stock available for this material and according to % wise
    So what is the procedure used to maintain the stock of configurable material in respective plant and storage location using the t.code [MB1C]
    here i should not maintain the stock based on the sales order
    from over all stock with % system has to pick the ordering quantity
    how can i maintain the stock using the variants
    How can I solve this problem?
    Kindly help me
    with regards
    munichandrababu

    Dear Guys,
                    Regards.Even we are stuck up with the same above issue for quite sometime..Would be great if someone could throw light on this...........if possible...
    Manythanks
    arun

  • Blue screen problem on Satellite A350D-20E with Windows 7 - PART 2

    My laptop came back from guarantee problem solving with a new VGA card.
    All the same after a couple of weeks it started to crash all over again. I suppose it is a software problem.
    Error message: Bluescreen
    The computer starts to have graphic problems, some points on the screen become black, for example around the mouse arrow, and then the black points extend, the computer crashes and starts again automatically. It happens now 2-3 times a day. The computer trys and look for a solution on microsoft website but it cannot find it.
    Some days ago I re-installed the drivers of the ATI Mobility Radeon HD 3650. Looks like there is no new version than 8.634.1.0. But all the same I re-installed it. The driver was on this Toshiba website. Unfortunately the problem was not solved. After 2 days without problems, the problems started again to present with the same frequency (and violence).
    Can somebody help? Maybe is there an higher version of ATI mobility Radeon? But on the website of ATI mobility radeon supplier looks like there is no compatible version.
    Anyone any other idea?
    I can provide the following information
    Probleemhandtekening (problem signature):
    Gebeurtenisnaam van probleem (name of the happening): BlueScreen
    Versie van besturingssysteem (version of control system): 6.1.7601.2.1.0.768.3
    Land-id: 1043
    Aanvullende informatie over dit probleem (complementary information about this problem):
    BCCode: 116
    BCP1: 86729008
    BCP2: 92A44B86
    BCP3: 00000000
    BCP4: 00000002
    OS Version: 6_1_7601
    Service Pack: 1_0
    Product: 768_1
    Bestanden die helpen bij het beschrijven van het probleem (files that help to describe the problem):
    C:\Windows\Minidump\011712-18236-01.dmp
    C:\Users\....\AppData\Local\Temp\WER-52697-0.sysdata.xml
    Taurinella

    Here the dmp file with the debugger.
    I am afraid is an internal cable brake.
    Error message when the computer crash:
    PXE E61 media test failure check cable
    The crashes are more and more. I do not have crashes in safe mode with internet possibility.
    Anyone an idea? Otherwise I have to send the laptop back to the Toshiba warrantee assistance. The only think is that they need 6 weeks. I cannot wait 6 weeks!
    Taurinella
    Microsoft (R) Windows Debugger Version 6.12.0002.633 X86
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [E:\tijdelijk tv series\bluescreen problem\013012-20685-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: SRV*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (2 procs) Free x86 compatible
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 7601.17713.x86fre.win7sp1_gdr.111025-1505
    Machine Name:
    Kernel base = 0x83456000 PsLoadedModuleList = 0x8359f4d0
    Debug session time: Mon Jan 30 13:47:39.724 2012 (UTC + 1:00)
    System Uptime: 0 days 0:34:20.737
    Loading Kernel Symbols
    .................................................. ...Unable to load image Unknown_Module_00000000, Win32 error 0n2
    *** WARNING: Unable to verify timestamp for Unknown_Module_00000000
    Unable to add module at 00000000
    Loading User Symbols
    Loading unloaded module list
    ......Missing image name, possible paged-out or corrupt data.
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck 116, {8656c510, 91c24b86, 0, 2}
    Probably caused by : Unknown_Image ( ANALYSIS_INCONCLUSIVE )
    Followup: MachineOwner
    0: kd> !analyze -v
    * Bugcheck Analysis *
    VIDEO_TDR_FAILURE (116)
    Attempt to reset the display driver and recover from timeout failed.
    Arguments:
    Arg1: 8656c510, Optional pointer to internal TDR recovery context (TDR_RECOVERY_CONTEXT).
    Arg2: 91c24b86, The pointer into responsible device driver module (e.g. owner tag).
    Arg3: 00000000, Optional error code (NTSTATUS) of the last failed operation.
    Arg4: 00000002, Optional internal context dependent data.
    Debugging Details:
    FAULTING_IP:
    +61d02faf00deddc4
    91c24b86 ?? ???
    DEFAULT_BUCKET_ID: GRAPHICS_DRIVER_TDR_FAULT
    CUSTOMER_CRASH_COUNT: 1
    BUGCHECK_STR: 0x116
    PROCESS_NAME: System
    CURRENT_IRQL: 0
    STACK_TEXT:
    WARNING: Frame IP not in any known module. Following frames may be wrong.
    8357dc98 834d637f 8a45a768 8358a380 83580c00 0x90bda3f6
    8357dd20 834cde0d 00000000 0000000e 00000000 nt!PoIdle+0x524
    8357dd24 00000000 0000000e 00000000 00000000 nt!KiIdleLoop+0xd
    STACK_COMMAND: kb
    SYMBOL_NAME: ANALYSIS_INCONCLUSIVE
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: Unknown_Module
    IMAGE_NAME: Unknown_Image
    DEBUG_FLR_IMAGE_TIMESTAMP: 0
    FAILURE_BUCKET_ID: 0x116_ANALYSIS_INCONCLUSIVE
    BUCKET_ID: 0x116_ANALYSIS_INCONCLUSIVE
    Followup: MachineOwner

  • Since i got the new Iphone 4s it constantly drops calls. Apple have replaced the phone with another new iphone 4s but i am still having the same problem. I have checked with vodapohe that there is no issue from there end, given a new sim, still drops out

    Since i got the new Iphone 4s it constantly drops calls. Apple have replaced the phone with another new iphone 4s but i am still having the same problem. I have checked with vodapohe that there is no issue from there end, given a new sim, still drops out

    Have a look at this it might help
    http://support.apple.com/kb/TS4148

  • I contacted Apple support.UK on 22nd December 2011-12-23. I informed about  the problem was likely to be with the apparatur.However  I tried my father's Ipad2 last night.software is the same my Ipad2's IOS 5.0.1 (9A405), to my surprise it worked properly.

    Hi! My name is Nazım . I live in North Cyprus. I’ve got Apple Ipad 2 and  Iphone 4. My ıpad2 is iPad 2 Wi-Fi + 3G:  Serial number: DQTFFVC1DFJ3., IOS 5.0.1 (9A405), model MC775LL .my itunes is last version. I bought my ipad  from America.
    I’ve recently bought Philips DC390 from  Apple Store in Oxford Street. Althouh Philips dock 1 seemed  to work properly (charged and player). The second dock isnot compatible with my ipad2. It didn’t work(play),It charges though.
    I sended e-mailed to Philips.uk for assistance. They recomend met o reset my  ipad2 to see if this clears any issue, but it does indicate a fault with the unit. It didn’t work either.s(everal time Ireset my Ipad2)
    In addition to this, I contacted Apple support.UK on 22nd December 2011-12-23. I informed about  the problem was likely to be with the apparatur.However  I tried my father’s Ipad2 last night.software is the same my Ipad2’s IOS 5.0.1 (9A405), to my surprise it worked properly. I’ve already reset my ipad2 several times but it didn’work.
    I would be grateful if you could make me some recommendations to sort out the refered my problem.

    Hi Nazim
    This is a user to user group.  There is no-one from Apple here.
    Use this link to contact Apple directly.

  • Problem in aligning dynamic UI with the static UI

    Hi All,
    I have problem in aligning dynamic UI with the static UI, I am using Matrix layout.
    Static fields are spread over 2 colums and 3 rows:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    Now when a value is selected in C, than E becomes visible, and depending on the values selected in E, there are dynamic UI generated, i.e dynamic lables and depending on some validation it will be either a dropdowns or input fiels or both.
    at run time screen is like this:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    dynaSPACEdropdown
    dynbSPACEinput field
    if I change my selection in E than layout looks like:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    dynaSPACESPACEdropdown
    dynbSPACESPACEinput field
    Requirment: I need all the lables as well as dropdown/ input fiels in line with the static fields irrespective of my selection in E.
    Something like this:
    lableA SPACE input field SPACESPACE lable B SPACE input field
    lableC SPACE dropdown SPACESPACElableD SPACE dropdown
    lableE SPACE dropdown SPACESPACElableF SPACE dropdown
    dyna   SPACEdropdown
    dynbSPACESinput field
    dyncSPACESdropdown
    All this elements are in a group and that group has 2 transparent containers, 1 for static and for holding dynamic UI.
    I tried playing with the container properties, and also tried fixing width of dynamic UI but still the alignment issue is encountered.
    Can U guys plz give in ur valuable inputs as i need to fix this urgently.
    Regards,
    JJ

    Hi Armin,
    Can you please elaborate your solution ?, I do not have an idea of InvisibleElement & IWDView.resetView() ,
    If you can give me the exact pointer than it would be great and a good learning exp. for me.
    Thanks for the action assignment part, it worked.
    if (wdContext.nodeMaterialClass().size() > 0 && wdContext.currentContextElement().getActionMatCls()) {
         if (wdContext.currentMaterialClassElement().getMaterialClass_Description() != null || !wdContext.currentMaterialClassElement ().getMaterialClass_Description().equalsIgnoreCase(" ")) {
               IWDGroup Searchgroup = (IWDGroup) view.getElement("DynGroup");
    Searchgroup.destroyAllChildren();
    view.getContext().reset(false);
                                                      for (int i = 0; i < wdContext.nodeMaterialCharateristcs().size(); i++) {
                                  //this for label
         IWDLabel CharLabel = (IWDLabel) view.createElement(IWDLabel.class, "label" + i);
         CharLabel.setText(wdContext.nodeMaterialCharateristcs().getMaterialCharateristcsElementAt(i).getDescr_Char());
         CharLabel.setDesign(WDLabelDesign.EMPHASIZED);
         CharLabel.createLayoutData(MatrixHeadData.class);                              CharLabel.setWidth("154px");                              Searchgroup.addChild(CharLabel);
                 further there are conditions to create either dropdown or input field
    Can you please point where and how to apply your solution.
    Regards,
    JJ

  • Problems after transfering Cost centers with LSMW

    Hi,
    I have a problem after transfering Cost Centers with LSMW.
    The first Batch input run created all cost centers in one CC Group erroneously - cause they should be placed in different CC groups.
    I changed LSMW settings and made another batch input run - now the Cost centers were created in proper groups. I think that I deleted all CC's created in previous batch input run, but now I am not too sure, because there is a problem...
    Cost centers exist both in their proper groups and in the one group mentioned by me before. So there is such situation that Cost center appears in Standar hierarchy twice at the same time.
    When I delete cost centers - they are removed from their proper groups but the CC entry remains in that one group - all CC are there inactive.
    How can I get rid of them. I tried deleting them - but it's impossible - the system doesn't see them.
    When I run the batch input again - the same cost centers appear in proper groups and at the same time they become active in the one group. The standard hierarchy group is not UNIQE.
    Please advice me how to delete these entries from standard hierachy.
    Best wishes,
    Karol

    Hi,
    Always recommended before loading into live system: upload in test system and check. check again just to make sure all is correct before real load.
    In your case you probably would have been best to do a group change after incorrect upload.
    Do Ambiguity check in stadnard hierarchy to explore all incorrect entries. Depending on your version yo ucan change in that function (ECC6) ore need to run a report. Before running the report check that CC master records have correct entry. The report is RKCORRH1
    Again, try in QA first and run in Test Run
    Good luck
    Hein

  • Frequent problems in Apple PPC Mac with OSX Leopard 10.5.8

    Hi,
    Frequent problems in Apple PPC computers with OSX Leopard10.5.8
    I have a Imac 17icnh G5 2Ghz  512 ram (Standard not the isight)  it had a clean install of OSX 10.5
    But after running a update to 10.5.8 with update if Itunesand security etc it was about 6 updates all together.
    Now the Imac uses to much CPU for small tasks and uses84-90MB of ram for a Kernal Task.
    When I try check permissions in disk utility the CPU goes toabout 80% in something called InstallerB and wont finnsh because there is no CPU power left
    and will over heat if I left it for too long. 
    The Exact symptoms of the 10.5.8 with update my differ alittle but I have had this same problem on  about 5 PPC apple computers and in the end I sometimes
    Just down grade to the flawless Tiger 10.4.11.
    So my question is > how do I fix this problem ? Which of the Updates dose this to PPC mac’s ?  (is it itunes or securtiy)
    Is Leopard 10.5.8 just a peace of JUnk just like windows Vista was and I should alwasy use Tiger for PPC and Snow leopard for Intel.
    Sam

    Hi Sam,
    Leo uses 2 to 4 times the resources of Tiger, & while 512MB is the minimum for Leo, that really crimps the OS, it isn't all that great for Tiger, though 10.4 does better with only 512MB, I'd put 2GB in it for decent performance, (if an IntelMac I'd say 4GB for the same OS).
    http://eshop.macsales.com/item/Other%20World%20Computing/3200DDR2GBP/
    Also, open Console in Utilities, look for repeating messages, you may have some 10.04 things running that fail in 10.5.
    I think you should get Applejack...
    http://www.macupdate.com/info.php/id/15667/applejack
    After installing, reboot holding down CMD+s, (+s), then when the DOS like prompt shows, type in...
    applejack AUTO
    Then let it do all 6 of it's things.
    At least it'll eliminate some questions if it doesn't fix it.
    The 6 things it does are...
    Correct any Disk problems.
    Repair Permissions.
    Clear out Cache Files.
    Repair/check several plist files.
    Dump the VM files for a fresh start.
    Trash old Log files.
    First reboot will be slower, sometimes 2 or 3 restarts will be required for full benefit... my guess is files relying upon other files relying upon other files! :-)
    Disconnect the USB cable from any Uninterruptible Power Supply so the system doesn't shut down in the middle of the process.
    Is Leopard 10.5.8 just a peace of JUnk just like windows Vista was and I should alwasy use Tiger for PPC and Snow leopard for Intel.
    In my opinion, OSX is headed towards Windows®, & aimed at users that only know how to Twit.
    If Tiger does everything you need, like you don't need iDevices & know how to protect yourself on the Internet without the added Security of 10.5 & associated Apps, then by all means stick with 10.4.11.
    If you want/need 10.5... max out the RAM for sure.

  • I have a problem in my iphone 4 with wi-fi after update to IOS6 please can help my how can solve this problem?

    I have a problem in my iphone 4 with wi-fi after update to IOS6 please can help my how can solve this problem?

    Nope
    One needs to press the home and sleep / wake keys together for the phone to reset
    The other thing I could recommend
    Let the battery run out and the phone completely "die"
    It may take a day or two with it not being used
    Then plug it in to charge and see if there is any change in behavior
    If you cannot get this to work - you may need to bring it to an Apple store

  • I can't print using airprint from my iPhone 4.  Everything with the phone and the printer and router are up to date.  I can print from my iPad 2 with no problems.  What's wrong with the iPhone 4?

    I can't print using airprint from my iPhone 4.  Everything with the phone and the printer and router are up to date.  I can print from my iPad 2 with no problems.  What's wrong with the iPhone 4?

    I just wanted to leave a note that it's working now. I'm not sure if it was the latest iTunes update that got it working or that i decided to start a new library instead of using the one i had backed up on Windows 8 (it didn't occur to me to check using the old library when i re-installed iTunes). But if anyone is having this problem, it might be worth trying again with a new installation of iTunes to see if the latest update works for you, and if not, try using a fresh library instead of a backup (by fresh library i mean discard your old library completely and start a new library, not just restore as new iPhone, a whole new library).

  • I am having problem while using ms word with anjal( OS X Lion 10.7.5 (11G63))

    i am having problem while using ms word with anjal  is not working properly but its working in facebook and other areas.i need and  its very important to using tamil fonts for my job.can anyone help me out from this problem.
    thanking you
    by
    moses

    Those who are knowledgable in this area (myself not among them) say that Word's support for Asian languages is faulty. The best word processor for that use is "Mellel."

Maybe you are looking for

  • Ghost email account can't be deleted???

    Just migrated from a Time Machine Back (computer stolen)  to a new Machine with Mavericks installed.  There is an email account from .mac days that I would like to delete but I get an error saying that there a missing UID and to go to System Preferen

  • Error while running  BAPI_INCOMINGINVOICE_CREATE

    hi, i am executing  the following bapi: BAPI_INCOMINGINVOICE_CREATE but i am getting the following error:             "Price too high (tolerance limit of 10.00 INR exceeded)" my input details to bapi are as follows: HEADER level details: INVOIC PO_NU

  • Java code problem

    Hi ! I have a little problem. My program has 4 classes: Book, Library, View and controller. Class Book{    Private String bName, author;           Book(bName, author){} // methods   public String toString(){} class Library{     Book[] bok;     int nb

  • How to better improve the playback efficiency of HD videos on Premiere Pro CC for low-end computers?

    Title explains it all really! The playback of selected files on the upper left and right box are glitchy and slow when playing back, which makes it near impossible (or just really frustrating) to properly sync with other video clips and audio. On low

  • Iphone ringtones

    I just got a new iphone and i was wondering how do I get ringtones on to my iphone from itunes