HFM rule won't run against ECA

I have a very simple rule in HFM v11.1.2 that runs against ECA, but won't execute during normal consolidation, it will only execute by using a force calculate command.  Any suggestions to allow this to run during normal consolidation?  The data in the 1750_3P account is being populated by rules, not by a posted journal.
Here is the rule:
If pov_scenario = "ACT" and is_base = True and pov_value = "<Entity Curr Adjs>" Then
        HS.Clear "A#1750_3P"
End If 'pov_scenario
Thank you,

Hi HTM_Ptc,
What is is_base referring to ? This rule should be run during calculation. Or if it still unsuccessful, would you try using this :
IF strYEar = " " AND strPeriod = " " AND strScenario = " " Then
Select Case Hs.Value.Member
Case "<Entity Curr Adjs>"
...[your clear statement]
End Select
End IF
Thanks,
Anna

Similar Messages

  • Business Rules won't run

    in Essbase 9.3 on Enterprise View, Business Rules, Repository view, Projects NONE of my scripts will launch. i can sort of open and but they won't execute. i can copy but i can't run them. i'm dying here because i have got to copy a version to version
    so, question 1 is how to get the business rules to work?
    and question 2 is what's the code (i know it's really really simple) to copy one version to another
    help!

    Restarting services is always a good thing to try, Also I recommend logging into My Oracle Support and having a read of doc id - 763345.1
    It goes through different options for resolving business rules issues.
    One example to copy version is :-
    DATACOPY Working TO Final;
    You may want to put a FIX around it to restrict what you want to copy.
    More information on DATACOPY is available at :- http://download.oracle.com/docs/cd/E10530_01/doc/epm.931/html_esb_techref/calc/datacopy.htm
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Entourage rules won't run automatically

    I've crossed the divide and gone to Apple. I get a lot of email and on my pc I kept it all organized as it came in. Now though, with Entourage I can't seem to get the mail rules to run automatically. I have all the rules enabled but they only work if I go to <apply rules> and click on the specific rule. It does nothing if I click on <all rules>. Any suggestions?

    Have the rule run correctly in Entourage before and suddenly stopped working? Or, have they never run automatically?

  • Why won't Mail.app rules won't migrate, System Tiger to System Leopard?

    Hi,
    Mail.app rules won't migrate from System Tiger to System Leopard.
    Here's what I did:
    -- Clean install of System Leopard 10.5.6 onto a new Mac Pro.
    -- Used Migration Assistment to move files from System Tiger to System Leopard 10.5.6.
    -- Mail.app's rules failed to migrate.
    So, I manually finder-copied MessageRules.plist into the proper folder to replace the newly created and empty rules set in System Leopard's mail.app, and afterwards, the rules then showed up in mail's preferences.
    However, the "manually migrated" [finder copied] rules won't run.
    In order to narrow the scope of the problem, I moved the former System Tiger's mail.app rules to the desktop and allowed mail.app to re-create a new rules plist file, then I created a test rule and it worked.
    Questions:
    Why won't System Tiger's mail.app rules files migrate to System Leopard, and won't work upon manual migration?
    What is the remedy to "properly import" the rules to the new [System Leopard based] mail.app, or to make the manually moved rules plist file work?
    For what it's worth I did follow the procedures at
    http://discussions.apple.com/thread....9306&tstart=90
    in order to make the messages migrate, but that failed to affect the rules.
    Thanks much,
    Jack

    Here's the fix, along with recommendations for Apple programmers.
    http://www.macfixitforums.com/ubbthreads.php/topics/463491#Post463491

  • Class Not Found Exception - applet won't run anywhere outside of IDE

    I have an applet that runs perfectly in the netbeans IDE, but won't run from command prompt (I'm using windows) or from a browser. I've been banging my head against the wall for a few days on this one. Here's the HTML I'm using:
    <applet width="400" height="525" code="musicapplet.class" archive="crypticgraffiti.jar">
    <param name="bgcolor" value="ffffff"> <param name="fontcolor" value="000000">
    </param> </param> Your browser is not Java enabled. </applet>
    Here is the structure of the jar file's contents:
    META-INF/
    META-INF/MANIFEST.MF
    com/
    com/crypticgraffiti/
    com/crypticgraffiti/music/musicapplet
    com/crypticgraffiti/music/GetNotes.class
    com/crypticgraffiti/music/InstList.class
    com/crypticgraffiti/music/Mode.class
    com/crypticgraffiti/music/MusicCreator.class
    com/crypticgraffiti/music/OctaveTransformer.class
    com/crypticgraffiti/music/Phrase.class
    musicapplet/MusicApplet$playerThread.class
    musicapplet/MusicApplet.class
    (Musicapplet.class is the main class)
    When I attempt to run from command prompt, I get:
    "Error: Could not find or load main class crypticgraffiti.MusicApplet"
    When I attempt to load via html:
    "basic: load: class musicapplet.class not found.
    load: class musicapplet.class not found.
    java.lang.ClassNotFoundException: musicapplet.class
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassNotFoundException: musicapplet.class
    security: Accessing keys and certificate in Mozilla user profile: null"
    I have tried every possible variation for the 'code' element of the applet tag (package.mainclass.class, mainclass, mainclass.class, etc). I have also tried compiling with JDK 1.6 and this didn't change anything. I've tried clearing out the cache of temporary files using the java control panel settings, and have verified that my browser can run other applets using JRE 6 and 7.
    I've tried some different ways of distributing the applet, also: putting all the class files in the folder with the html file, putting the classes in a source folder in the same folder as the html file, and finally putting a jar in the same folder as the html file (which really seems the simplest).
    Any help at all would be most appreciated! This applet is a very cool and original music creating app that draws heavily on the JFugue API. It's a shame that I can't get it online for people to play with!

    Cryptic Graffiti wrote:
    Here is the structure of the jar file's contents:
    META-INF/
    META-INF/MANIFEST.MF
    com/
    com/crypticgraffiti/
    com/crypticgraffiti/music/musicapplet
    com/crypticgraffiti/music/GetNotes.class
    com/crypticgraffiti/music/InstList.class
    com/crypticgraffiti/music/Mode.class
    com/crypticgraffiti/music/MusicCreator.class
    com/crypticgraffiti/music/OctaveTransformer.class
    com/crypticgraffiti/music/Phrase.class
    musicapplet/MusicApplet$playerThread.class
    musicapplet/MusicApplet.class
    (Musicapplet.class is the main class)
    Please note that class names are case sensitive so "MusicApplet" is not same as "Musicapplet" or "musicapplet". Your applet tag should have fully qualified class name (without quotes) and should look like this:
    <applet width=400 height=525 code=musicapplet.MusicApplet archive="crypticgraffiti.jar">
    </applet>
    The JAR should be in the same directory as your HTML file. While launching from command line, you can also check if your JAR file is getting included in classpath.
    Thanks,
    Nitin

  • Compiling against developer database, running against production database??

    Hello :-)
    In our company we have a developer- , a test- and a production database, like most of us, I think... :-)
    In former times it was usual to compile forms against the database, that they are running against. But nowadays this is because of new security rules very difficult. Developers have all rights on the developer database, a few on test and nearly none on the production database and even our DBA is (officially) not allowed to use/know the sys password.
    The developer and the production database are very similar (both 10g Enterprise Edition Release 10.2.0.3.0 - 64bit, Linux), but not totally equal. Of course there are differences in database objects, because it's the developer database, there could be differences in installed patches, and the production database consists of 4 Clusters, the developer database not.
    Is it enough to compile the forms (6i and also 10g) against the developer database and run the compiled forms against the production database or should we compile the forms, that go in production, strictly against the production database, which is a bit difficult because of our security rules???
    Regards,
    Udo

    Hello, Francois!
    Thanks for your answer, but that was not exactly what I meant...
    What you describe is, how it should be :-)
    We develop, deliver the forms and scripts and "someone" compiles them against the production database.
    But our problem is that it would be a lot of "paperwork"(?) each time(!) to get the authorization to get the required rights on the production database to compile all objects.
    We have no "production team" that has all these rights and are not allowed to do so...
    So I just want to have your experiences, if it is enough to compile against the developer database???
    I have made the experience that probably 98-99% works fine, but sometimes there are strange things happening (like not passing variables from one form to another, when a form is compiled against the developer database and the attached library for example is compiled against the production database)...
    Regards,
    Udo

  • Class LED project won't run

    Hi Everyone,
     I am in an introductory electronics class in college and we had to draw a schematic of a simple LED board from a solder practice kit. I had already bought the student version of Multisim, so I thought I would use it to draw the circuit. I would like to simulate the circuit with the software, but do not understand why I can't make it operate like the physical board. I can't even get any of the LED's to light up on the simulation. I think that by the end of the next few semesters I will be able to figure it out, but right now I don't have a clue.
     There were a couple of parts that were slightly different, because the student version didn't have the components.
    The assembly instructions called for:
    (4) 100 ohm 1/4w Resistor
    (1) 1 K ohm 1/4w Resistor
    (1) 2.2 K ohm 1/4w Resistor
    (1) 10 K ohm 1/4w Resistor
    (1) 330 K ohm 1/4w Resistor
    (1)100 ohm 1/2w Resistor
    (1) 1 uF Capacitor
    (1) .01 uF Capacitor
    (1) 1N4001 Diode
    (1) 1N4735 Zener Diode
    (1) PN2222 Transistor
    (1) 555 IC
    (2) 74LS107 IC
    (1) 9 V batery
    (2) Green LED
    (2) Red LED
     A couple of things that I chose for components that were different were the 100 ohm resistor was suppose to be 1/2w instead of 1/4w, could not see any place to change that. I used a 555_Timer_Rated from the list of 555s. I used a 10 nF Capacitor instead of a .01 uF because it wasn't listed. Also instead of the 74LS107, I used a 74LS107D, which appeared to be a surface mount version from what I could make out from the data sheets I found on them. The one diode that I used was a 1N4001GP and the Zener that I used was a 1N4735A.
     The LEDs are suppose to flash in sequence and turn off in sequence. The physical board I used to draw this with worked fine.
     I don't have to show a working simulation for my class, I just want to know why it won't run. I retraced all of the connections, but I still might have messed up somewhere.
     Any help on this would be greatly appreciated.
    Thank you
    Attachments:
    AssemblyAndMeasureCurcuit1.ms10 ‏214 KB

    I have examined the circuit you submitted; A bit hard to understand since the circuit is draw in a none formal way; All the same I note the following:
    GND on IC1 is not connected; run electrical rule check to spot such problems;
    CLR lines on IC1 and IC2 are unconnected;
    In a practical circuit such pins take on a value of logic 1;
    In this case the simulation is taking a value of logic 0, I suspect.
    Connect manually to Vcc to put them on logical 1;
    IC1 pin 3 (1J) goes correcttly to IC2 pin 11 (2K);
    But pin 2 (~1Q) should go to IC2 pin 8 (2J);
    But you have taken yours from IC1 pin 7 (~2Q);
    Going by the previous stage connections i.e. for
    IC2: 2Q --> 1J; ~2Q --> 1K; 1Q --> 2J (IC1); ~1Q --> 2K (IC1); 
    For IC1: 2Q --> 1J; ~2Q --> 1K; it follows that 1Q (IC1)--> 2J (IC2); ~1Q (IC1) --> 2K (IC1);
    With the above changes the circuits seems to work i.e. flashing LED. I have cleaned up the circuit to remove a lot of lines and connected the GND on IC2 and CLR lines on IC1 and IC2. I have also put in an oscilloscope so that you can observe the waveform on LED4. The circuit is attached. Thanks.
    JSJD
    Attachments:
    AssemblyAndMeasureCurcuit2.ms10 ‏233 KB

  • Multiple OWSM Gateway's running against 1 Policy Server

    Is it a supported configuration to have multiple OWSM Gateways running against one policy server?
    Thanks,
    Michael

    It won't trash the applications (see http://java.sun.com/j2se/1.4.2/compatibility.html to get 100% proof). If you install a new version, this will be used by default (if you just use "java"). Of course you can still use other JREs / SDKs when you explicitely use the version ("c:\Programme\j2sdk1.4.2_04\bin\java").

  • Firefox won't run why not?

    Today is 9/8/10 this morning I used Firefox and it worked fine but later this evening no matter what I try Firefox won't run. I have yet to try deleting Firefox and re-installing it I would like to avoid this so I dont loose my history or my favorites

    A possible cause is security software (firewall) that blocks or restricts Firefox without informing you about that, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox.
    See [[Server not found]] and [[Firewalls]] and http://kb.mozillazine.org/Firewalls

  • Flashplayer installed and active but won't run

    Hi. I seem to be having the same problem as several others on here: I've got the latest version of Flash  installed and active on my Win8.1 system, and it shows as an active add-on in the latest version of Firefox, but it stalls on loading and won't run. This started immediately after the latest Flash update was released: I've tried uninstalling and re-installing.
    Thanks.

    You're more than welcome to file performance bugs at http://bugbase.adobe.com/.  I noticed that the page on adobe.com took a really long time to load for me as well on Chrome, but Adobe.com is super complex, and I think that has something to do with a poorly performing back-end service.  Since you're seeing the slow script dialog not loading on the watch page, it's pretty clear that Flash Player is installed and playing content under normal circumstances.  The interesting part is that one of those dialogs is talking about JavaScript running on the page, and the other is talking about Flash.  It's unclear without debugging the issue whether it's the browser or the plugin; however, as you've noticed, both work fine in Internet Explorer.
    It's important to point out that both Adobe and Microsoft made a tremendous effort in tuning the  Internet Explorer experience for Windows 8 and higher.  The latest versions of IE offer a fast, modern plug-in architecture that efficiently offers defense-in-depth protection against the modern generation of security threats (as opposed to the sandboxing approach that we retrofit to Firefox).  Similarly, Google Chrome provides a modern, secure plug-in architecture and invests heavily in making the Flash experience in the browser great.  I'm a Firefox fan as well, but the reality is that you might be more satisfied with your experience when using a different browser.
    For the crash, I'd be happy to take a look at the crash analysis to see if I can find anything useful.
    In Firefox, if you type about:crashes in the address bar, you should get a list of recent crashes.
    Click each link to submit it to the Mozilla crash reporting system.
    Copy the address from the resulting window into a reply here.

  • CS3 installs but won't run

    Ok - not sure if this goes in this section or not.. but it's a technical question.
    My b/f bought me a Dell Laptop last week. It has the recommended minimum of everything adobe says it needs for photoshop CS3 (see below for 1721 specs)
    When I installed it on the laptop - it was slow, but said it installed. But when I go to open up Photoshop, it opens the screen - and then just hangs. After about 5 minutes it says not responding and I close it. Any of the other programs that came with won't even get that far. I click on them and it gives the little "thinking" circle (as I call it.. lol) and then nothing.
    I have read that CS3 has issues with Vista - but their site says the home premium should work. I've also read about 64 bit issues.. but the OS is 32 bit - so it's capable of running 32bit systems... I guess.
    I called adobe yesterday after installing and reinstalling CS3 15+ times... with the same issue. I was on the phone for about 2 hours with them. Basically - they have NO CLUE what it would be since it installs fine and opens with no error messages. I checked the log files and there is nothing in there I see that says any kind of error.
    I have disable windows defender, uninstalled McAfee and google desktop (all are known to cause issues with CS3), I have ALL non MS startup services turned off.. I have turned off the MS users control.. all suggested by the adobe tech.
    I have installed using the run as administrator. Nothing. Created a new admin account and installed on that user and opened on reg admin account. Nothing. (again typical things that correct cs3 install issues)
    The last thing the guy said was that it might be a video issue. I checked and there aren't any issues mentioned and no driver updates listed.
    We tryed installing this on my b/f's laptop. He bought the exact one I have (except his is red.. mine blue.. lol) and it does the EXACT same thing...
    So today we called dell. they say it's a software issue and won't answer any questions for free. Apparently only hardware support is free... But they won't accept this is a hardware conflict with the software..
    errrrr
    Anybody have any clues on this?
    =======================================
    LAPTOP SPECS:
    Inspiron 1721 Notebook: AMD Turion 64 X2 Mobile Technology TL-56 (1MB/1.8GHz) Genuine Windows Vista Home Premium
    Operating System
    Genuine Windows Vista Home Premium
    Memory
    2 GB DDR2 SDRAM 677MHz (2 DIMMs)
    Hard Disk Drive
    120 GB SATA Hard Drive (5400 RPM)
    Video
    ATI RADEON Xpress1270 HyperMemory
    Media Bay
    8X DVD +/- RW w/dbl layer write capability
    Base
    Inspiron 1721 Notebook: AMD Turion 64 X2 Mobile Technology TL-56 (1MB/1.8GHz)
    Bluetooth Wireless
    Bluetooth Wireless Card 355
    Software Upgrade
    Microsoft Works 8.5
    Premium Pack - Advanced Photo+Music: Deluxe Pack + Paint Shop Pro XI
    NoteBook Screen
    17 inch WXGA+ TrueLife Glossy Notebook Screen
    Hardware Upgrade
    No Camera
    6 Cell Primary Battery
    90W AC Adapter
    Network Interface Card
    Dell 1505 Wireless-N

    Rob - thanks for taking a stab at this.
    I have tried installing from the DVD and also from the zip file. the zip file was extracted to the hard drive brfore I ran it - and I ran it as administrator.
    And when it stalls - it gives the (NOT RESPONDING) tag on the window - which usually means that even if I leave it (and I have for up to 20 minutes) - still nothing.
    Here's the update from my dealings with DEll today...
    Dell tech support guy told me that it was a know issue that CS3 WON'T run on Vista and that Adobe is working the issue
    Told them that I knew others that were running it on Vista and it worked fine. They had no answer.
    Then I waited for the Technical support manger to call. This is after expressing my displeasure to the technical supervisor about them trying to pawn this issue off on anyone else but themselves. Why can't they go grab a 1721 off the shelf and replicate the issue and try to figure it out from there?!?!?!
    I used to work on a network helpdesk.. if I tried to pull that crap answer without trying to replicate the issue and AT LEAST try to find an answer.. I wouldn't have lasted very long at all!!!!
    The Tech manager told me to call customer support and ask for an OS swap (from vista to XP) because they don't know what the problem is and so it muct be a Vista compatibility issue
    I call customer support. They say that they no longer will give out XP since it is a step backwards. And to install XP on the machine ourselves (even a liscensed copy) would void the warranty. They suggest I talk to sales about swapping the laptop out with a "more compatible" one. Which isn't a totally bad idea since I really do think it is an AMD/ATI conflict.
    They transfer me to Sales.. ohh - you used the Employee Purchase program.. you need to talk to them.. and they transfer me.
    The EPP people tell me.. ohhhh you didn't actually go through us since you bought it off the Dell Outlet store. So they transfer me.
    The dell outlet store says they will be more than happy to swap me out to an Intel based machine.
    Only catch is the Intels are more expensive. They don't have any for the price we paid for the amd's. Fot about $40 more I can get one with a slower processer, a gig less ram, no dvd writer, but with a 160gb hd. To get compatible to mine - would be about $150 more.
    And they only have silver in the low end, and black or brown in the higher. Not that I really give a s@!t what the color is.. but it brings up the main reason I am sooo pissed abput all of this....
    Why should I have to pay more money, settle on doing without option/features want/need.. just because THEY don't want to take the time to figure out what the real issue is?!?!?! Why isn't it them doing these calls and doing all this troubleshooting.. Why am I being peanilzed for THEM not wanting to do their jobs....
    Told the B/F that I am done with Dell. That I don't want the laptop anymore and I don't want any other one from them. He says he'll pay the extra and get me the other one.. but that isn't the point....
    Not sure what my next move is.

  • How do I install the FM10 licensing fix when Adobe Update Installer won't run?

    Adobe Update Installer won't run so can't install FM10 licensing fix
    This question is Not Answered.(Mark as assumed answered)
    Aug 9, 2013 12:09 PM
           Tags (edit): none (add)  
    Because FM10 began crashing with "fatal" errors whenever I tried to generate a TOC for a small (65 page) book, I researched workarounds and none of them worked. Now that I have delivered a crippled deliverable via Acrobat manipulations, I would like to fix FM. I uninstalled it and reinstalled it, got some updates, and then received the "licensing fix" error that popped up in January. I'm wondering why this fix was included not in the updates. That said, the licensing fix package, first, would not unzip so I downloaded it again. I unzipped it but I got a message that Adobe Updater Installer could not run and after several clicks I found that file. I reinstalled Adoble Update Installer but it still does not run.
    I am running Windows XP and have TCS 3.5.I uninstalled FM and RH but not Acrobat, Captivate, or Photoshop.
    So, now what? Listen to my supervisor who says never use FM again?
    P.S. Why do I have to enter a title for my question and then do it again when this page opens??

    Give Adobe Support a call or contact the TCS team at [email protected] - something in your environment is causing the installer to fail (I'd guess).

  • Action steps that won't run correctly in PSE 7/8/9 (but did in 4 and 6)

    I have a wonderful action that was written to work in PSE 3/4/6.  It won't run in PSE 7/8/9.  After fooling around for a while, I think I understand why.  Adobe changed the way Adjustment Layers are handled.  In earlier versions of Photoshop and Elements, Adjustment Layers threw up a modal dialog box.  That changed so that Adjustment Layers now appear in the Palette Bin as a palette.
    Here a sample of some of the action steps that won't work correctly:
    Make adjustment layer
    Using: adjustment layer
    Type: levels
    Set Selection
    To: none
    Set current layer
    To: layer
    Name:  “Adjustment 1”
    Set current layer
    To: layer
    Mode: luminosity
    Stop
    Message:  “Move gray slider left”
    With Continue
    Set current adjustment layer
    To: levels
    In earlier versions of PS and PSE, the way these steps would work is that a new adjustment layer would be created, the dialog box giving the instruction would open, it would be dismissed by clicking "Continue," and then the "Set current adjustment layer to: Levels" would generate a model adjustment layer dialog box would open up which would let one make the adjustment.
    In newer versions, since Adjustment Layers are handled in the Palette Bin, after dismissing the instructions, the action doesn't stop to allow the user to make change the sliders on the adjustment layer.
    The action runs perfectly in CS4 and CS5 and throws up the levels adjustment modal box as it did in PSE 4 and PSE 6, but the action doesn't throw the modal box in PSE 7/8/9
    Does anyone know of a way to alter the action steps to allow the action to stop to allow the adjustment and then to resume again?

    Adding a new levels adjustment layer on top of the Midtone contrast layer
    should work, just use a clipping mask to restrict the adjustments to the
    areas of the levels adjustment layer below. The histogram will be different, but
    actually testing the action is really the only way to know if that makes any difference.
    Replacing the levels adjustment layer is another option, though it requires a few more steps.
    The following assumes when the action gets to this point,
    the Midtone contrast adjustment layer is the active (selected) layer.
    To record this part of the action:
    1. Duplicate current channel (in the channels panel. drag the Midtone contrast mask
        down to the Create new channel icon at the bottom of the channels panel)
    2. Ctrl+click on the newly created channel (Midtone contrast mask copy)
        This loads the selection of that channel.
    3. Drag the new channel (midtone contrast mask copy) to the trash icon at the bottom
       of the channels panel.
    4. Back in the layers panel, delete the Midtone Contrast adjustment layer.
    5. Go to Layer>New Adjustment Layer>Levels
        This creates a new levels adjustment layer using the selection loaded from
        the duplicated channel and opens the levels dialog.
    To load the RGB (composite) as a selection, Ctrl+click on the rgb in the channels panel
    and the same is true for the red, green and blue channels.
    With layer masks, elements doesn't seem to want to load them as selections in actions,
    so that's the reason for the action steps above.
    MTSTUNER

  • CS2 won't run

    CS2 won't run, says activation code no longer usable. Been running win7 on this system 3 years. Adobe says it won't activate in win7. Well, it did, and ran just fine. what's up?

    I assume when you say "Adobe says it won't activate in win7" that you talked to customer support....
    A drive change could trigger the need for reactivation.  Did you tell them that you're running from a mirrored drive?
    It sounds to me that they're being aggressive about trying to get you to upgrade when they should still be supporting you with active maintenance of their activation database.
    But unfortunately if you can't get them to adjust their database you're out of luck.
    -Noel

  • I have a Windows 2003 Server 64-Bit, and when I upgraded to Firefox 4.0.1 now it won't run, it keeps saying to restart to complete the installation, but I've restarted theserver 4 times, and I still can't use it.

    I have a Windows 2003 Server 64-Bit, and when I upgraded to Firefox 4.0.1 now it won't run, it keeps saying to restart the computer to complete the installation, but I've restarted theserver 4 times, and I still can't use it.

    I ended up putting it in DFU mode.  It's kinda hard to tell it was in DFU mode because nothing showed on the screen, it was just black, but the sounds from the computer helped to tell me it was connected.
    Itunes still didn't recognize the device for whatever reason.
    So I used redsn0w.  I don't know if I can say that on these forums, but considering itunes was worthless at this point I am going to give credit where credit is due.
    Now I am giving itunes a second chance to upgrade to 5.1, if it doesn't work, well, back to redsnow and maybe I will even jailbreak it this time rather than just using the fecovery fix found under extras.

Maybe you are looking for

  • Using DBLINK in ABAP to retreive data from externam system

    Hi All, Please help me, if anyone knows the answer. The basis team has created a dblink 'DBL_TEST.YY.XXX.COM'. Now I have to fetch data from another non-sap external system using this dblink only. Cannot have any entry in DBCON. I know the procedure

  • ITV HELP!!!!

    Hello, Can Someone Help Me PLEASE!!! I just bought one of those monster cables from Apple to allow you to connect your Ipod to your TV so you can view it on TV when you want too! My question is, I would like to view it and be able to record my shows

  • How do I get rid of Registration Window preventing access to Acrobat?

    On removing Acrobat XI and re-installing Acrobat 11.0.0, entering my serial number, and updating to 11.0.08, I get a registration window ("Register Your Product") that (1) Pops up anew when you click on "Cancel", (2) Goes away if you click on the cor

  • Error code -50 when attempting to copy to G-drive

    I have a new G-Drive 4T bytes.  It works fine most of the time, but if let inactive for a few hours and I try to write to it in any way I get the message: The operation can't be completed because of an unexpected error occurred (error code -50).  Any

  • Swing class help needed

    hi, i just need some help to create a bar kind of object (like a bar of battery shown in mobile phones). the information i have is in percentage from 0-100%. and what i have planned is that: the bar will be split into four: from 0-25: one bar will be