Hyperion Admin. needed in Washington DC metro area

I am searching for a Hyperion Admin. to be the liaison between the IT and Finance department in a Washington DC company. HFM is preferred. The company has amazing benefits and salary. Capital Search Group specializes in placing accounting and finance professionals throughtout the Washington DC are. We are conducting this search because the admin. will report to the Finance division.
Scot Peterson
Search Consultant
Capital Search Group, LLC
KenRay Partners, LLC
1934 Old Gallows Rd, Suite 520
Vienna, VA 22182
www.capitalsearch.com
Office (703) 288-6614
Fax (703) 288-3644
[email protected]

Looks good. unfortunately I am in China. If you need outsourcing i will be interested in. My skill set is Essbase,Planning and HFM. : )

Similar Messages

  • Using AJAX to load city, state, metro area based on zip code

    I'm new to getting APEX to work with AJAX properly. I've been reading some tutorials and trying to apply what they do to my situation, but I'm running into a problem. I have a text field item for zip code. What I want to happen is that when someone enters in a zip code, I want to use AJAX to populate 3 different select lists (1 each for state, city, and metro area) and to populate a checkbox (of neighborhoods based on the zip code as well). I'm looking at the examples in:
    http://www.oraclealchemist.com/wp-content/uploads/2006/11/s281946.pdf
    and
    http://apex.oracle.com/pls/otn/f?p=11933:63
    But they all use examples where the value of a text field item is used to populate 1 select list. I can't figure out how to apply that methodology to populate 3 select lists and 1 checkbox item. I've got all my SELECT statements written to populate these fields based on the value of the zip code text field item, but don't know how to convert what I already have to use AJAX.
    Here are my SELECT statements:
    P2805_STATE lov:
    ===========================================================================================
    SELECT INITCAP(GEO_DATA_STATE.STATEFULLNAME) d,GEO_DATA_STATE.STATE v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP
    WHERE isPrimary = 'P' and
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY STATEFULLNAME
    P2805_CITY lov:
    ===========================================================================================
    SELECT UNIQUE (INITCAP(GEO_DATA_CITY.CITY)) d,GEO_DATA_CITY.CITY v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_CITY
    WHERE
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    trim(upper(GEO_DATA_ZIP.CITY)) = trim(upper(GEO_DATA_CITY.CITY)) and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY GEO_DATA_CITY.CITY
    P2805_METRO_AREA lov:
    ===========================================================================================
    SELECT UNIQUE (INITCAP(GEO_DATA_METRO.METRO_AREA)) d,GEO_DATA_METRO.CODE v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO
    WHERE
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY 1
    P2805_NEIGHBORHOOD lov:
    ===========================================================================================
    SELECT UNIQUE (INITCAP(GEO_DATA_HOOD.HOOD)) d,GEO_DATA_HOOD.HOOD v
    FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO, GEO_DATA_HOOD
    WHERE
    trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
    trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
    GEO_DATA_HOOD.METRO_CODE = GEO_DATA_METRO.CODE and
    GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
    ORDER BY 1Do all these statements need to go in 1 on-demand process? Where do I go from here?

    Andy, cool. This is starting to make more sense. THANKS A BUNCH! OK. I've gone ahead and modified the on demand process to suit my needs, so I have:
    begin
      owa_util.mime_header('text/xml', FALSE );
      htp.p('Cache-Control: no-cache');
      htp.p('Pragma: no-cache');
      owa_util.http_header_close;
      -- Building States list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT INITCAP(GEO_DATA_STATE.STATEFULLNAME) d, GEO_DATA_STATE.STATE v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP
        WHERE isPrimary = 'P' and
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY STATEFULLNAME
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
      -- Building Cities list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT UNIQUE (INITCAP(GEO_DATA_CITY.CITY)) d, GEO_DATA_CITY.CITY v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_CITY
        WHERE
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        trim(upper(GEO_DATA_ZIP.CITY)) = trim(upper(GEO_DATA_CITY.CITY)) and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY GEO_DATA_CITY.CITY
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
      -- Building Metro Area list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT UNIQUE (INITCAP(GEO_DATA_METRO.METRO_AREA)) d, GEO_DATA_METRO.CODE v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO
        WHERE
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY 1
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
      -- Building Neighborhood list
      htp.prn('<SELECT>');
      FOR i in (
        SELECT UNIQUE (INITCAP(GEO_DATA_HOOD.HOOD)) d, GEO_DATA_HOOD.HOOD v
        FROM GEO_DATA_STATE, GEO_DATA_ZIP, GEO_DATA_METRO, GEO_DATA_HOOD
        WHERE
        trim(upper(GEO_DATA_ZIP.STATE)) = trim(upper(GEO_DATA_STATE.STATE)) and
        trim(upper(GEO_DATA_ZIP.METROCODE)) = trim(upper(GEO_DATA_METRO.CODE)) and
        GEO_DATA_HOOD.METRO_CODE = GEO_DATA_METRO.CODE and
        GEO_DATA_ZIP.ZIPCODE = :P2805_ZIPCODE
        ORDER BY 1
      LOOP
        htp.prn('<OPTION VALUE=''' || i.v || '''>' || i.d || '</OPTION>');
      END LOOP;
      htp.prn('</SELECT>');
    end;It doesn't look like I would have to modify the appendToSelect function at all, correct? Is the checkbox that I need to populate handled the same way as these select lists? And it seems like I only need to make the 2 changes that you mentioned to get_AJAX_SELECT_XML function, right? So my javascript function should be like:
    <script language="JavaScript1.1" type="text/javascript">
    function get_AJAX_SELECT_XML(pThis,pSelect1,pSelect2,pSelect3,pSelect4){
    if  (document.getElementById('P2805_ZIPCODE').value.length == 5)
         var l_Return = null;
         var l_Select1 = $x(pSelect1);
         var l_Select2 = $x(pSelect2);
         var l_Select3 = $x(pSelect3);
         var l_Select4 = $x(pSelect4);
         var get = new htmldb_Get(null,$x('pFlowId').value,'APPLICATION_PROCESS=otn_Select_XML',0);
         get.add('TEMPORARY_ITEM',pThis.value);
         gReturn = get.get('XML');
         var sels = gReturn.getElementsByTagName("select");
         if(gReturn && l_Select1){
              var l_Count = sels[0].getElementsByTagName("option").length;
              l_Select1.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[0].getElementsByTagName("option");
                   appendToSelect(l_Select1, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         if(gReturn && l_Select2){
              var l_Count = sels[1].getElementsByTagName("option").length;
              l_Select2.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[1].getElementsByTagName("option")[i];
                   appendToSelect(l_Select2, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         if(gReturn && l_Select3){
              var l_Count = sels[2].getElementsByTagName("option").length;
              l_Select3.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[2].getElementsByTagName("option")[i];
                   appendToSelect(l_Select3, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         if(gReturn && l_Select4){
              var l_Count = sels[3].getElementsByTagName("option").length;
              l_Select4.length = 0;
              for(var i=0;i<l_Count;i++){
                   var l_Opt_Xml = sels[3].getElementsByTagName("option")[i];
                   appendToSelect(l_Select4, l_Opt_Xml.getAttribute('value'), l_Opt_Xml.firstChild.nodeValue)
         get = null;
    &lt;/script&gt;
    And then since all 4 items (3 select lists and 1 checkbox item) are populated based on the value inputted in the text field item, I would only need to add the following to the html form element attribute of my text field item, right?
    onKeyUp="javascript:get_AJAX_SELECT_XML(this,'P2805_STATE','P2805_CITY','P2805_METRO_AREA','P2805_NEIGHBORHOOD');"Denes, thanks for the example. It seems like what I need to do is somewhere inbetween what you have and what's in the example on http://apex.oracle.com/pls/otn/f?p=11933:37. I have 3 select lists and 1 checkbox item that should all be populate depending on the value entered for the text item. Do I still need to split everything up then into a function and an on demand process for each select list and checkbox?

  • Files that used to be visible are now hidden in Mavericks. How can I change the setting to view the same files as before? I do not need the hidden files that are typically invisible.

    Files that used to be visible are now hidden in Mavericks 10.9.1. How can I change the setting to view the same files as before? I do not need the hidden files that are typically invisible.
    I am having trouble locating such files as PDF's INDD, AI etc. When I view all hidden files and try to open it in the program..it looks like it is really not on the drive. Has anyone come across a solution?

    You may need to rebuild permissions on your user account. To do this,boot to your Recovery partition (holding down the Command and R keys while booting) and open Terminal from the Utilities menu. In Terminal, type:  ‘resetpassword’ (without the ’s), hit return, and select the admin user. You are not going to reset your password. Click on the icon for your Macs hard drive at the top. From the drop down below it select the user account which is having issues. At the bottom of the window, you'll see an area labeled Restore Home Directory Permissions and ACLs. Click the reset button there. The process takes a few minutes. When complete, restart.   
    Repair User Permissions

  • Success with 150+/ Verizon Packages in the DC Metro area?

    Has anyone had any luck getting a 150+ package in the DC metro area?
    I just went through 3 days of pain trying to upgrade my 75/75 to 150/150 and finally had to cancel the order.  Now I'm waiting to see how bad my billing gets screwed up.
    Tuesday I had the ONT port switched to copper/Router to copper.  Still get 75/75 (85/85 really) download speeds.  Onsite tech said it wasn't turned on to 150 yet, and give it an hour and left.  Nice guy, left his personal number and such if I needed help.  My Services still showed 75/75 online.  That made sense with what Herb told me.
    Tuesday night phone support they said it would speed up at 10pm when the billing system updated to 150/150.  Ok no big deal.
    Wednesday it didn't update in My Services, nor did my speeds improve.  Networking support all say that I'm fully setup at 150, verified.  Told me wait 24 hours for billing to catch up.  My Services section of Verizon.com said I was still at 75/75 by the end of the night.
    The Wednesday support guys insisted I run the optimizer tool on my system, which ended up breaking my Direct Access connectivity for work and screwing me for about 2 hours while I figured out what it broke.  (sidenote:  run "netsh interface tcp reset" to un-screw what it does).  I had to uncable half my house to prove that gigabit directly off the router still showed the same speeds.  (i have cisco grade networking equipment throughout my home that they can't trust, understandable for troubleshooting, no complaints there).
    Today, it now says I have 150/150 AND 75/75 in My Services.  And now they want to send another tech to my house on Sunday. 
    I gave up and just canceled the order and went back to my 75/75.  I'm thinking they just can't handle it in my neighborhood, or that reminiscence of 75/75 still in my account was messing something up.  Either way, too tired to keep trying. 
    To make things even worse, the automated phone system kept calling me trying to verify the system was fixed.  Press 1 to close the ticket, press 2 to talk to technicians again.  I naturally pressed 2 everytime it called so that they wouldn't ignore the problem and close my ticket. This happened 3-4 times a day throughout the whole process, starting around 830am or so, and stopping around 6-7pm i think.
    Anyways, just curious if anyone actually got this working.
    -Jim

    123home123 wrote:
    Is it possible that Universal Sports is carried on Ch. 460 under the name "NBC Plus" [WRC]? That channel range is devoted to secondary stations of the local network stations. The other stations have weather stations. Last fall, NBC discontinued their Weather Plus service and changed it to Universal Sports in most markets. I don't have Verizon FiOS yet and one of the main reasons was the absence of Universal Sports. If NBC Plus is indeed Universal Sports under a difference name, then I'd be much more likely to sign up for FiOS.
     NBC Weatherplus is still on in the DC area on channel 460. I read on another forum that Universal Sports will begin on March 23 in the DC area on Channel 464

  • Employment for Hyperion Admin/Devloper (Boston)

    Hyperion Admin and Hyperion Developer positions available in the Boston Area.Pay in the $70's. Interested candidates please send resume to [email protected]

  • Adobe Captivate has encountered a problem and needs to close.  We are sorry for the inconvenience.

    I am trying to use Adobe Captivate 5 and I am receiving this message when trying to open the application,
    "Adobe® Captivate® has encountered a problem and needs to close. We are sorry for the inconvenience."
    Can you explain how this issue can be resolve!?

    Hi there,
    On which operating system are you using Adobe Captivate?
    Please recreate the preferences of Captivate, following is the location of Captivate Preferences:
    Windows 7: C:\Users\[user name]\AppData (hidden folder)\Local\Adobe\Adobe Captivate 5 folder
               Windows XP:  C:\Documents and Settings\[user name]\Local Settings\Application Data\Adobe\Adobe Captivate 5 folder
               Mac:  /Users/[user name]/Library/Preferences/Adobe Captivate 5 folder
    rename Captivate 5 to Captivate 5_old
    and then try to launch Captivate 5
    Thanks.

  • Adobe Photo Downloader has encountered a problem and needs to close. We are sorry for the inconvenience.  Error Code: c0000005  Address: 76f73ac3     I clicked on the OK button and the downloader closed.     I then tried to download from the organizer. I

    Photoshop Elements 12
    Adobe Photo Downloader has encountered a problem and needs to close. We are sorry for the inconvenience.
    Error Code: c0000005
    Address: 75e32f71
    I clicked on the OK button and the downloader closed.
    I did a search on this error code (c0000005) and there seems to be a workaround but no solutions, why is this? I ask that because this problem seems to be years and years old, going back to at least 2005 (do the math that is 10 years).
    I don't even have the Camera hooked up and I get this error on download.  I redownloaded everything and reinstalled.  I allso saw the AVI issues reported with this proble so i updated Quicktime though without the camera being hooked up when I get this error I didn't expect that to work.  I tried support and they wouldn't help because I bought it in March this year.  Pretty frustrating as I have re-purchased Elements about every 2 years.  I think I might need a new CODEC?   I had this problem on an Earlier version And I seem to remember that being the Fix but this may be something completely different

    I finally found that it was missing a picture so the Catalog was "corrupted".  I just deleted the picture and it started working.
    I hate Adobe and their total lack of support - thanks for nothing Adobe .  Also get this - they offered me to upgrade to 13.0 ( My 12.0 is only 6 months old  but they still don't support it on errors.  Only install errors!
    I have upgrade and repurchase this product 4 times now.  I will find something else next time!

  • Adobe Flash Player Update Service 11.3 r300 has encountered a problem and needs to close.  We are

    I get following message:
      Adobe® Flash® Player Update Service 11.3 r300 has encountered a problem and needs to close. We are sorry for the inconvenience.
    How can I solve this?

    People,
    Listen. This service is, has been and seemingly will be: FREE. So while emotions are running on the hot side of the guage, let's remember; it is FREE. Adobe owes no one anything. Now who's to blame, really? We, the people are to blame. Why? Because everyone has been ok with the fact that one company essentially designed and released a technology for streaming from the net. One company. And almost all of us are using this one company's technology to stream; for FREE.
    But now we are not ok with it when, after we are prompted to update, we have the issue of it not working? We all never saw the ridiculously high potential for this one company to screw things up, intentionally or otherwise? What the ramifications, that we are now experiencing, might be? Nah, we just took it for granted that we would continue to be served. Well the serve came, everyone. Mistake or otherwise.
    It's like this country [US], up until four-years ago. Everyone was either running around with snow shovels and hefty garbage bags to gather all the money they were making or sailing the seas of expectation and an, 'I am out there to get mine' attitude, and then the sh*t hits the fan and now people are complaining? About the very system until four years ago was spoon feeding them poolside with mai-tai's? While it was crushing everyone else in the known world?
    No doubt it seems incredulous that a multi-billion dollar company has an IT department that would include in an update, for their own software, that would be inconducive to working. No doubt. But keep in mind: we are all either using browsers by Apple or MS. Anything happens to these browsers, including a virus or anything else that threatens our use of them and...?
    So climb off the haughty, 'I deserve' crap and walk on the solid ground of trying to resolve this issue here at Adobe and around the net. If we were to band together, as the 99%, we could solve this, no problem. But then that holds true with resolving this fictitious economic downturn nonsense, that we solidly take for truth at face value, because our mainstream media says so. But no other species on this rock flying through space would know what the f*ck we were talking about.

  • Adobe Reader 8.0 has encountered a problem and needs to close. We are sorry for the inconvenience

    Ver 8 installed fine but can't get it to launch from any application. Have tried going back to earlier versions (6.1,6.2,7) but the same problem occurs.
    Same error message each time:
    "Adobe Reader 8.0 has encountered a problem and needs to close. We are sorry for the inconvenience"
    AppName: acrord32.exe AppVer: 8.0.0.456 ModName: acrord32.dll
    ModVer: 8.0.0.456 Offset: 00020916
    Tried every troubleshooting tip in the Support Knowledgebase to no avail.
    Have been using Reader for years with never any problems and now I can't seem to get this fixed after numerous hours.
    Any suggestions would be appreciated. Is there a free support line I can call or is it paid support only?
    Thanks,
    Dee

    Like others my problem was Adobe Reader 8.1.2 died terribly and with a buggy stench with the following error:
    AppName: acrord32.exe AppVer: 8.1.0.137 ModName: msvcr70.dll
    ModVer: 7.0.9466.0 Offset: 000013d6
    RESOLUTION ON XP SP2
    1. Control Panel, Users
    2. Create a new user account NewUser (for example)
    3. Start, Log Off
    4. Switch Users to the NewUser
    5. Wait the mini eternity for new user to be set up.
    6. Start Adobe Acrobat 8.1.2 and you will see a red splash screen along with some license updating things.
    7. Adobe 8.1.2 now starts fine under NewUser
    8. Switch back to your regular user name. Start, Log off, Switch Users
    Now a note to Adobe. Do you folks really have to make this such a frickin pain to get working? Do you at Acrobat have any idea of how much time we users blow and how much of our lives pass by while we try to re-download and work with this product? You are directly responsible for a small slow down in the world economy by this. Get the hint.... create an 8.1.3 that omits the secret code steps above.
    The only thing that kept my sanity during this were nice songs on channel 86 on SIRIUS. Thank you SIRIUS.
    Thanks,
    Jim

  • Firefox.exe has encountered a problem and needs to close. We are sorry for the inconvenience. I have been using firefox for years. I installed the latest version of Firefox. It worked fine for several days. Now I get the above message each time I try to s

    firefox.exe has encountered a problem and needs to close. We are sorry for the inconvenience.
    I have been using firefox for years. I installed the latest version of Firefox. It worked fine for several days. Now I get the above message each time I try to start Firefox, even in safe mode. i have checked with latest antivirus softwere also.. i didn't find any thing suspicious.
    == This happened ==
    Every time Firefox opened
    == after loading firefox 3.6.6 ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.99 Safari/533.4

    I was having this problem few days ago,and I have fixed.Try this steps-If you have AVG antivirus so go on firefox>Tools>Add On and Disable AVG safe search and AVG tool bars too.Then restart computer.

  • ITunes has encountered a problem and needs to close.  We are sorry for ....

    Since updating my iTune with the new version (10.2.1.1) I can't open my iTune!
    I get the following every time I tried to open iTune:
    "iTunes has encountered a problem and needs to close. We are sorry for the inconvenience"
    The error report contains the following:
    Event Type: BEX P1: iTunes.exe P2: 10.2.1.1 P3: 4d756476
    P4: icuuc40.dll P5: 4.0.0.3207 P6: 4d3b6a8e P7: 00073335
    P8: c0000409 P9: 00000000
    Error Report Contents:
    C:\DOCUME~1\BERLEW~1\LOCALS~1\Temp\WERb334.dir00\iTunes.exe.mdmp
    C:\DOCUME~1\BERLEW~1\LOCALS~1\Temp\WERb334.dir00\appcompat.txt
    Can anyone here help me please??
    I want my iTune back
    Miguel

    The problem is with the current version of icuuc40.dll .
    Download the zip folder and extract icuuc40.dll from it.
    When you open the zip folder the file is in icu\bin.
    You need to replace your old version of icuuc40.dll with this one.
    The file is in Program Files\Common Files\Apple\Apple Application support.
    Message was edited by: polydorus

  • "iTunes has encountered a problem and needs to close. We are sorry for the inconvenience."

    please... help. i can't to sync my tones to my ip5s. i don't know why....
    "iTunes has encountered a problem and needs to close. We are sorry for the inconvenience."
    "Please tell Microsoft about this problem."
    And bla bla bla... Already send error report, but everytime i want to sync tone to my phone that toolbox will appear.
    So frustrated.
    So please help me....T____T

    hi David!
    okay, it's time to check if you have a weird registry problem. (the problem i'm thinking about produces the same error message.)
    we diagnose that by creating a new user account (with full administrative privileges). you can do that in your "user accounts" control panel. there's help documentation on it to the left of the screen. while you're in there, also switch off "fast user switching" in your logging-on preferences.
    now log on to the new user account. can you successfully launch itunes from inside there?
    keep us posted on your progress.
    love, b

  • "iTunes has encountered a problem and needs to close. We are sorry for the

    HI all
    I've got know this problem:
    ""iTunes has encountered a problem and needs to close. We are sorry for the inconvenience." With the option to send error report or don't send.
    and the error signature is:AppName: itunes.exe AppVer: 7.0.2.16 ModName: unknown
    ModVer: 0.0.0.0 Offset: 01a21040
    Does anyone know what should i do?
    Thanks
    Wouiners

    I had the same issue. I found a solution under a different thread posted by scubastevee32. It worked for me. I copied pasted his solution below.
    after countless hours of dead ends.... I found this to fix the problem(thank you "b noir")
    hat one could be being caused by a problem with your QuickTime. (itunes uses QuickTime for audio and video playback.)
    so let's try swapping out your QuickTime.
    head into your Add/Remove programs. uninstall QuickTime.
    Next, we’ll manually remove any leftover program files and folders.
    1. On the Start menu, click My Computer (or double-click My Computer on the Desktop).
    2. In My Computer, open Local Disk.
    3. Open Program Files.
    4. Right-click on the QuickTime folder and click Delete from the shortcut menu.
    5. Navigate to C:\Windows\system32\.
    6. Remove the files QuickTime.qts and QuicktimeVR.qtx.
    7. Restart your computer.
    next, we'll get a fresh copy of QuickTime into your PC by doing a repair install of itunes.
    switch off antivirus and antispyware applications prior to the repair install.
    go into Add/Remove and select itunes. click "Change" and then click "Repair".
    if the repair install goes through okay, restart the PC and try launching itunes again. does it launch properly now?
    HP Pavilion   Windows XP Pro  

  • Crw32.exe has encountered a problem and needs to close.  We are sorry for t

    crw32.exe has encountered a problem and needs to close.  We are sorry for the inconvenience.
    AppName: crw32.exe      AppVer: 12.0.0.683      ModName: msjet40.dll
    ModVer: 4.0.9511.0      Offset: 000cdb4b
    I am using a MS Access 2003 DB.  I get the above error when I try to open a New Report with the current instance of the DB; if I use a backup from 2 weeks ago it works with no problems. Is there any insights; I would prefer not to restore from the backup??

    Update from my earlier message:
    tried to install on a win7 32 bits. and I get the same error message.
    Restarted the Win7 64 which was working and now I get the same error message too
    so 3 different machines three diffferent operating systems and 3 times CR crashes on opening MDB files....
    here is the error message
    Log Name:      Application
    Source:        Application Error
    Date:          5/19/2010 7:43:13 PM
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Faulting application name: crw32.exe, version: 12.0.0.683, time stamp: 0x47c8be9a
    Faulting module name: MSJET40.DLL, version: 4.0.9756.0, time stamp: 0x49246e48
    Exception code: 0xc0000005
    Fault offset: 0x00021b27
    Faulting process id: 0x708
    Faulting application start time: 0x01caf7aca12f0b2b
    Faulting application path: c:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\crw32.exe
    Faulting module path: C:\Windows\system32\MSJET40.DLL
    Report Id: 498c39ee-63a0-11df-b1fe-00508dbcaa0b
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
        <Provider Name="Application Error" />
        <EventID Qualifiers="0">1000</EventID>
        <Level>2</Level>
        <Task>100</Task>
        <Keywords>0x80000000000000</Keywords>
        <TimeCreated SystemTime="2010-05-19T23:43:13.000000000Z" />
        <EventRecordID>4412</EventRecordID>
        <Channel>Application</Channel>
        <Security />
      </System>
      <EventData>
        <Data>crw32.exe</Data>
        <Data>12.0.0.683</Data>
        <Data>47c8be9a</Data>
        <Data>MSJET40.DLL</Data>
        <Data>4.0.9756.0</Data>
        <Data>49246e48</Data>
        <Data>c0000005</Data>
        <Data>00021b27</Data>
        <Data>708</Data>
        <Data>01caf7aca12f0b2b</Data>
        <Data>c:\Program Files (x86)\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\crw32.exe</Data>
        <Data>C:\Windows\system32\MSJET40.DLL</Data>
        <Data>498c39ee-63a0-11df-b1fe-00508dbcaa0b</Data>
      </EventData>
    </Event>

  • "(program).exe has encountered a problem and needs to close. We are sorry for the inconvenience."

    Hi, I was using Tweetdeck for the past few months without any problems. Recently, the application still works fine.. it opens as normal, all posts I am following appear etc., but when I try to send a tweet the application closes and I get the error
    "tweetdeck.exe has encountered a problem and needs to close. We are sorry for the inconvenience."
    I uninstalled tweetdeck and reinstalled it many times. Sometimes it would work for twenty minutes, other times not at all. I got fed up trying, so uninstalled it and downloaded Seesmic. This new application opened perfectly, all users I am following and their tweets updated perfectly, until again I went to post a tweet and it closes and I get the error
    "seesmic desktop.exe has encountered a problem and needs to close. We are sorry for the inconvenience."
    As these are the only two applications I have used that give me this error, and are also the only two applications I have used that are related to Adobe AIR, I can only assume the problem is connected somehow?
    I was wondering if any of you might have any suggestions on how I could fix this? I am not the most tech saavy guy, so any help would be greatly appreciated as I am starting to lose patience with it!
    Thanks in advance.

    You might try uninstalling the AIR runtime and re-installing it. You might also try contacting the developers of these applications to find out whether the problem is related to issues they already know about.

Maybe you are looking for

  • Connection Questions

    Ok so I have been thinking of buying a new mac mini and a standard HDTV LCD display to use as a TV using basic cable, computer, and media center. My question is can or how would I switch from cable TV to my mac mini display?

  • I can't see all my page's apps on itunes,only show me 5 pages

    I have 8 "pages" of apps showing on my iPhone 3G . In using iTunes 9 on Snow Leopard but only show me 5 pages. In a PC its works ok,but i need to fix in my principal mac.i've restored iphone,reinstall itunes but don't work...

  • New McBkPro: Best Firewire audio + HD setup?

    I am thinking about getting a new MacBook Pro Core 2 Duo notebook instead of upgrading my PowerMac to a Mac Pro desktop. I have a M-Audio Firewire Solo interface and a Lacie external FW800 hard drive for recording audio. I do pop music with many laye

  • Command executing on Terminal startup

    whenever i open Terminal, something is causing it to run a command: /Applications/GravSim; exit which invariably runs the command and exits, making the only way for me to actually get into a shell to be using the "New Command" option under "File". I'

  • Access an object in a arraycollection set as dataprovider

    Hi, I'm having trouble accessing an object, which is inside an arraycollection and that arraycollection is bound to a datagrid dataprovider. One item in the arraycollection looks like this for example: (string) value1="foo" (string) value2="bar" (obj