Work Around on Datasource 0GLACCEXT

Hi Gurus,
I'm currently implementing a BW project for FI Balance Sheet. But I encountered a problem regarding the Datasource. Since the R3 we are connecting is version 4.6b and the patches are not updated, the datasource 0GLACCEXT is missing. Is there any work around that i might be able to implement w/o applying any plugins or patches. Thank you.
- Kit

Hi,
Do you have the below document for 0GLACCEXT?
http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2f6d9790-0201-0010-dcbc-e099c7c049a2?quicklink=index&overridelayout=true
It might give some idea .
Thanks.

Similar Messages

  • Work around for Application.cfc

    I have an Application.cfc file that outputs a header and footer page for every request.  That works wonderful but if I try to open a page that is doing a <cfgrid> using a CFC file than I get an error of "Error invoking CFC /GATS/CFC/purchaseOrder.cfc : Internal Server Error [Enable debugging by adding 'cfdebug' to your URL parameters to see more information]" when opening the page.
    Commenting out the header/footer include in the Application.cfc file lets the <cfgrid> populate with the CFC file.  Is there a fix or work around for this?
    Application.cfc file
    <cfcomponent output="false">
    <cffunction name="onRequestStart" returnType="boolean" output="true">
          <cfargument name="thePage" type="string" required="yes">
         <cfset PageName = GetFileFromPath(thePage)>
        <cfif not IsDefined("session.user.isAuthenticated") or
              session.user.isAuthenticated equal session.no>
          <cfif FindNoCase('index.cfm', PageName) is not 0>
            <cfelse>
              <cfset session.messages[1] = "Authentication required.">
              <cflocation url="#application.WebAddress#" addtoken="no">
          </cfif>
        </cfif>
        <cfif FindNoCase('index.cfm', PageName) is not 0>
          <cfset request.PageNavigation = "">
          <cfset request.Screen = "Login">
        </cfif>
        <cfif FindNoCase('mainMenu.cfm', PageName) is not 0>
          <cfset request.PageNavigation = "Home">
          <cfset request.Screen = "">
        </cfif>
        <cfif FindNoCase('purchaseOrder.cfm', PageName) is not 0>
          <cfset request.PageNavigation = '<a href="mainMenu.cfm">Home</a> &##8226; New Purchase Order'>
          <cfset request.Screen = "">
        </cfif>
        <cfif FindNoCase('logout.cfm', PageName) is not 0>
          <cfelse>
            <cfinclude template="includes/header.cfm">
        </cfif>
        <cfreturn true>
      </cffunction>
    <cffunction name="onRequestEnd" returnType="void" output="true">
          <cfargument name="thePage" type="string" required="yes">
        <cfset PageName = GetFileFromPath(thePage)>
        <cfif FindNoCase('logout.cfm', PageName) is not 0>
          <cfelse>
            <cfinclude template="includes/footer.cfm">
        </cfif>
      </cffunction>
    </cfcomponent>
    purchaseOrder.cfm
    <cfgrid name="AccountGrid" format="html" bind="cfc:GATS.CFC.purchaseOrder.GetQuantities({cfgridpage},{cfgridpagesize}, {cfgridsortcolumn}, {cfgridsortdirection})">
      <cfgridcolumn name="ID" header="ID" display="yes">
      <cfgridcolumn name="vendor_name" header="Name" display="yes">
    </cfgrid>
    I found this on the web:
    That error is due to our application.cfm having a single HTML comment at the
    start of the file. Apparently if your Application.cfm or Application.cfc file
    outputs ANYTHING, binds to CFCs with AJAX (via HTML CFGRID or CFAJAXPROXY, for
    example) do not work. The CFC will be called, but the data from it will never
    "flow" into the CFGRID. Removing the comment from the Application.cfm file took
    care of our CFGRID issue.
    This there a way to have an Application.cfc file that displays a header and footer for every page and have and
    have a page have a <cfgrid> in it?

    BKBK,
    I created the examples you posted and commenting out the header/footer lines in my Application.cfc displayed the cfgrid results (updating the query to a table I had).  Running the same example code with the header/footer included in the Application.cfc would not show the cfgrid results.
    I attached the Application.cfc file for review.
    Couldn't attach the file.
    Application.cfc
    <cfcomponent output="yes">
      <cfset this.name = "GATS">
      <cfset this.clientmanagement = "true">
      <cfset this.applicationtimeout = CreateTimeSpan("0","0","20","0")>
      <cfset this.sessionmanagement = "true">
      <cfset this.sessiontimeout = CreateTimeSpan("0","0","20","0")>
      <cfset this.scriptProtect = "true">
      <cfparam name="session.yes" default="Yes">
      <cfparam name="session.no" default="No">
      <cffunction name="onApplicationStart" returnType="boolean" output="no">
        <cfset application.Directory = "/GATS/">
        <cfset application.Datasource = "IA-webapplications">
        <cfset application.DatasourceGATS = "SBS-GATS">
        <cfreturn true>
      </cffunction>
      <cffunction name="onApplicationEnd" returntype="void" output="no">
        <cfargument name="ApplicationScope" required="yes" />
      </cffunction>
      <cffunction name="onSessionStart" returntype="void" output="no">
        <cflock scope="session" timeout="5" type="exclusive">
          <cfset session.no = "No">
          <cfset session.yes = "Yes">
          <cfset session.new = "New">
          <cfset session.user = StructNew()>
          <cfset session.user.isAuthenticated = session.no>
          <cfset session.user.emplid = ""> 
          <cfset session.user.userSSOId = "">
          <cfset session.user.firstName = "">
          <cfset session.user.lastName = "">
          <cfset session.user.name = "">
          <cfset session.messages = ArrayNew(1)>
          <cfset session.savedInputValues = ArrayNew(1)>
          <cfset session.filesTransferred = "">
        </cflock>
      </cffunction>
      <cffunction name="onSessionEnd" returntype="void" output="no">
        <cfargument name="SessionScope" required="yes">
        <cflock scope="session" timeout="5" type="exclusive">
          <cfset Arguments.SessionScope.user.isAuthenticated = session.no>
          <cfset Arguments.SessionScope.users.emplid = ""> 
          <cfset Arguments.SessionScope.user.userSSOId = "">
          <cfset Arguments.SessionScope.user.firstName = "">
          <cfset Arguments.SessionScope.user.lastName = "">
          <cfset Arguments.SessionScope.user.name = "">
        </cflock>
      </cffunction>
      <cffunction name="onRequestStart" returntype="void" output="yes">
        <cfargument type="String" name="TargetPage" required="yes">
        <cfset PageName = GetFileFromPath(TargetPage)>
        <cfif not IsDefined("session.user.isAuthenticated") or
              session.user.isAuthenticated equal session.no>
          <cfif FindNoCase('index.cfm', PageName) is not 0>
            <cfelse>
              <cfset session.messages[1] = "Authentication required.">
              <cflocation url="#application.WebAddress#" addtoken="no">
          </cfif>
        </cfif>
        <cfif FindNoCase('index.cfm', PageName) is not 0>
          <cfset request.PageNavigation = "">
          <cfset request.Screen = "Login">
        </cfif>
        <cfif FindNoCase('mainMenu.cfm', PageName) is not 0>
          <cfset request.PageNavigation = "Home">
          <cfset request.Screen = "">
        </cfif>
        <cfif FindNoCase('purchaseOrder.cfm', PageName) is not 0>
          <cfset request.PageNavigation = '<a href="mainMenu.cfm">Home</a> &##8226; New Purchase Order'>
          <cfset request.Screen = "">
        </cfif>
        <cfif FindNoCase('logout.cfm', PageName) is not 0>
          <cfelse>
            <cfinclude template="includes/header.cfm">
        </cfif>
      </cffunction>
      <cffunction name="onRequestEnd" returntype="void" output="yes">
        <cfargument type="String" name="TargetPage" required="yes">
        <cfset PageName = GetFileFromPath(TargetPage)>
        <cfif FindNoCase('logout.cfm', PageName) is not 0>
          <cfelse>
            <cfinclude template="includes/footer.cfm">
        </cfif>
        <cfif FindNoCase('sessionTerminated.cfm', PageName) is not 0>
          <cfinvoke method="onSessionEnd">
            <cfinvokeargument name="SessionScope" value="#session#">
          </cfinvoke>
        </cfif>
      </cffunction>
      <cffunction name="onError" returnType="void" output="no">
        <cfargument name="exception" required="true">
        <cfargument name="eventName" type="string" required="true">
        <cfthrow object="#arguments.exception#">       
      </cffunction>
    </cfcomponent>

  • I have an Iad2 and ever since ios6-there are issues.I get occasional lock-ups and have to reboot. The WSJ app freezes when running their videos to the end. The only work-around is to stop the video before it's over. Worse than windows me !!!!!

    My Ipad2 worked perfectly before ios6 upgrade. It now freezes occasionally and I have to reboot to get it to work. Also the WSJ app will now freeze if I try and run one of their videos that is imbedded in the article. My only work-around is to stop (press done) before the end of the video or I have to do a total reboot. The problems remind me of Windows ME . Will Apple resolve these issues or become more like Microsoft. Hopefully there will be a restore button in the future like Microsoft was forced to do because a lot of upgrades are just terrible. Am I crazy or are there other people having the same issues with ios6, or could this just be a coincidence and my ipad2 is starting to fail just when ios6 arrives ?

    I know this will not help but, the bluetooth headset I purchased for my wife works great and it pairs with our car and our sound bar in the livingroom (Motorola Droid Razr) 98.72.16.XT912.Verizon.en.US
    However I did not upgrade over the air but from a android web site and placed it on my external sd card. I believe this made the difference in why we had no issues and upgraded functionality has been great.
    Please note when I mention these bluetooth devices I mean the Razr connects with no problems.
    It also had no internet issues and none of the problems others have complained about in other threads.
    unfortunately when you say thousands have these issues I cannot say that is accurate. The hope is when large numbers of owners have updated to the Jelly Bean and are complaining inmase then Motorola will issue a patch to verizon to get out to the affected users.
    Of course now that Google owns Motorola Mobility and has laid off loads of workers it may never issue an os patch.

  • Does anyone know of a work around for this problem? : iphone 5 will not work on Chryslers uconnect.  I found out that they are working on it but have no ETA.   However, they will not help you if your vehicle is older thatn 2008.

    Do not get an iphone 5 if you want to use it with a Chrysler product.  The Chrysler Uconnect system might pair with your phone but the uconnect system will usually abend and become unusable after a few telephone conversations.  I have been to the dealer twice.  They have reset the uconnect system twice and I find it works for about 2 to 3 phone calls then it abends and uconnect becomes useless.  They had me call Chrysler at 1-800-247-9753.  I was told that the iphone five is not compatable at this time with any chrysler uconnect phone through the dash system, even the new vehicles.  He had me get on this web site: www.uconnectphone.com as a place to monitor as when it would be compatable.  They told me that Samsung seems to be working harder to make it compatible than apple is and they had no idea when it would begin to work.  In effect Chrysler was telling me dump the iphone and get a Samsung if you want it to work in a Chrysler.  Also, the site would only give you information for Chrysler that were 2008 or newer, they gave the following number to call if your vehicle was older.    I called that number and they told me that Chrysler and Uconnect had no plans at all to make the iphone 5 work, in the future, on any Chrysler older than 2008.  So.......If you have a Chrysler or Dodge that is older than 2008 you will NEVER  be able to use an iphone5 on the uconnect through the dash system.   Do not buy an iphone if you have an older vehicle.  It will never be supported for the $1,000 you paid for this uconnect system on your car.  My car is a 2005 Town and Country.  I asked both Chrysler and uconnect if their was some sort of work around so I could use my phone.  They both told me their was not and that they had no plans to resolve this situation for my vehicle.  This means that I need to either get rid of my $42,000 vehicle with low milage or get rid of my Iphone 5.  Niether are really good options. 
    I was also givne the following places to send formal complaints, even though I was told that neither Chrysler, Dodge or Apple were going to do anything to correct my problem: 
    for email:   [email protected]   or Mail:  Chrysler customer Assistance  P.O. Box 218004, Auburn Hills, Michigan  48321
    If anyone hears of a work around to be able to use an Iphone 5 in a Chrysler or Dodge product, please let me know. 

    This response is a little late as I just read about your problem. I have a 2012 Dodge Charger and a 2012 Chrysler Town and Country and both worked flawlessly with the iPhone 5s my wife and I had. However, we just upgraded to the iPhone 6 and Uconnect will receive calls but you cannot answer them. You can callout successfully, however. the annoyance being the inability to answer incoming calls in the HandsFree mode.

  • Security settings changing. Is there a work around?

    Hello,
    I work for a "Company" that has ten's of thousands computers loaded with the latest version of Adobe Reader X. Unfortunately when we create a form in Adobe  Acrobat 9 Pro it cannot be signed by anyone using Adobe Reader X. Some how the security settings are changing when the form is open in Reader X. When the form is opened using Acrobat 9 Standard the form can be signed...the security settings have remain the same as when we built it in Pro. Is there a work around or something I have missed? This is a rather urgent issue as it will be effecting our whole "Company" and in the meantime we have been told to use another product until a solution is found. Your input is greatly appreciated!

    The usage rights must be enabled in Acrobat Pro.

  • Is there a work around for my Akai Pro EIE Pro interface to work with mountain lion

    Does anyone have a work around for the Akai EIE Pro Audio interface that just stopped working after the mountain lion upgrade. Akai has no response currently.

    Yep,
    They say they're working on it.
    It ***** though
    effo

  • Is there a work around to use two Apple IDs across and iPhone and a MB Pro?

    iPhone 5 and Macbook Pro Retina late 2013.  iOS 8.1 and Yosemite. 
    It's a company iPhone and a personal MBP.  Phone has an Apple ID associated with company credit card and MBP personal Apple ID with personal credit card.
    There is a cross platform issue as you cannot use two Apple IDs in Facetime and Messages.  Therefore my iPhone and MBP do not interoperate correctly, for example, a text message in messages on the iPhone will not appear in Messages on the MBP.  Similar situation for FaceTime.  When you try to enter the second email associated with the second Apple ID on either platform you get "cannot verify because email is already in use".
    Any work arounds?
    This is something Apple should have really anticipated as iPhones become more widespread in corporate use.

    Thank you for your continued interest and research on my behalf on this situation. I was on the phone with Apple support (at no charge) for over an hour yesterday. Becasue I have what they cal a "vintage computer"(7 1/2 years old), there are some additional issues.  We thought it was solved at teh end of the phone call but aparently it was not. I am going to call them now and see what else can be done. I will keep you posted.
    Thanks again.

  • Is there a work around to connect an archos 80 g9 to a-digital editions?

    My tablet is not listed in the supported devices list for adobe digital editions - but I am hoping there is some work-around/app that will enable me to read content vial ADE from our local library.
    Works fine with a different tablet that my wife has - but the ADE software somehow does not "see" the archos 80 g9 even though the PC has correctly identified it and loaded drivers etc.
    Gratefull for any tips...?

    My tablet is not listed in the supported devices list for adobe digital editions - but I am hoping there is some work-around/app that will enable me to read content vial ADE from our local library.
    Works fine with a different tablet that my wife has - but the ADE software somehow does not "see" the archos 80 g9 even though the PC has correctly identified it and loaded drivers etc.
    Gratefull for any tips...?

  • Insane XML Import, Huge Project, Duplicate file names work around...

    I planned on kicking off my journey attempting to edit a massive multi year documentary on FCPX with a nice introduction of the blog I'm going to keep about the experience, but I've run into a bit of a roadblock, or maybe major speed bump at least before even getting to that point. I wanted to share what is working as a work around for me and you guys can tell me how I'm doing it wrong.
    Ok, I will try to explain this as succinctly as possible. I'll write in somewhat stream of consciousness just to try and get through it quicker... Basically, after discovering the work around below, I am now utterly confused on how FCPX handles the relationship between its own database of where media is stored, and the actual media itself. I have plenty experience on FCPX now, probably done 30-40 pro commercial jobs on it over the last year since XML became doable as I'm also a Resolve Colorist and all the FCPX projects where hardcore coloring product spots. For commercial work, I never needed to worry about splitting up footage up over multiple Events. Everything, all in one, FCPX handled it no problem. (well the occasional beach ball, but that seems to be a thing with FCPX in general)
    This will be my 10th feature documentary as an Editor. Every one before it was either on Avid's many flavors over the last 12 years or FCP Studio. When this new film came along, I made the decision a few months ago to use FCPX for a few reasons, but mostly because I'm insane and I like to try to mix it up for myself in a career that can get stale quick if you aren't willing to be that way. The film was shot over 2+ years, every shoot was multi cam 5D (yes i know, looks great, but please kill me), I haven't done the math on length, but there is over 10,000 clips of video (this is actually medium in size compared to what I've dealt with before). Its 5D, so theres external audio for everything. FCPX's syncing is great, but I've learned that theres an unsaid window of heads and tales clips must fall within to sync properly with the nearby clips, if they are too far apart FCPX gives up. One shoot day could have 3 cams, 50 clips each, and 2 audio files to sync to, FCPX simply cannot handle this, so off to Plural eyes they went, no problems.
    Ok, all this is relevant eventually I swear! Again, in the past, all in one event, no problem. I tried for fun to bring all media into one Event on this film. It worked, but there is a 10+ second spinning beach ball for every single move you make, so thats no good. Ok, I'll separate the Events out to, lets say, each shoot month. Well that's dumb, in verite documentary, any shot could be the first, any shot could be the last, you need a command over all searchable footage at all times. Shift selecting all events to search *****, and it actually takes longer for FCP to reload each event each time than it does to just have the one massive one. So no go there. Next hair brained idea... What if make a new Event that is just Compound Clips of all the other Event's contents and do more with Markers and Favorites in logging that I was planning to parse it all out. That way I'm working with and FCPX is dealing with 50-60 clips instead of 10,000+ Quick test, Cmd-A, Opt-G, boom, boom, boom, move all to dedicated to Event, hide huge Event, BEHOLD, that works! FCPX chokes a little bit on the insane length of some of the clips, but searching, and general performance is back on par!
    So your saying to yourself "Ok *********, sounds like you figured it out, what's the problem." Well to you I say, "Not so fast!" Remember, that was just a quick test using the media I had imported into the massive 10,000+ clip Event. To do this project proper, I am having to import Multicam sync'd XMLs from Plural Eyes. And this is where it all starts to fall apart. A little foreshadowing for your eager eyes. 10,000+ files all shot with multiple 5D's over the course of years. What does that mean? many, many duplicate file names!
    FCPX as well all know irritatingly imports XML's as new Events, not into existing ones. This obviously takes a lot of burden off media management because with a new Event comes a new database referencing its own version of the raw media. All well and good, and I'm betting its starting to click for some if you advanced users where I'm finally going with this. So I have 50 or so XMLs to bring in, all done no problem. Now I want to replicate that singular Event like I did with the Compound Clip test and have it all in one place to be my master as extensive logging begins for easy searching once editing begins. Highlight the Events, click Merge Events. NOPE. I get a new "Kill Yourself Now" error (a term I coined for Out of Memory and General Error messages in FCP Legacy meaning there ain't much you can do about it): "Two or more files have the same name. Change the names and try again, because I don't know what the **** to do with them." Ok I made up that last part but that's basically what it's saying. Just take the variable out of the equation, this happens with every which way you could try to get the clips together. Merge Events, dragging events on top of each other, dragging just the Multicam clip alone, nothing gets passed that message. What's worse is that while Batch Renaming seems like a solution, the renames do not populate inside the created clips and there is no way to Batch Rename those. Renaming everything at the finder level isn't so great because then I'd have to resync and theres an offline/online thing going here where the film has to be reconformed eventually.
    Basically, I've found that FCPX handles media management in completely different ways depending on whether you are importing into one Event yourself or doing essentially what is a new import with FCPX moving or merging Events. If you bring in all the media to one Event, on a macro level FCPX goes through file by file making aliases referencing the master file. If it hits a duplicate, it makes a parenthesis counter, and keeps going. And with the genius of FCPX metadata, that file name doesn't even matter, you can change it at the Finder level and FCPX will keep the link intact. BUT for some reason if you try to do this outside the realm of a single Event and combine files after the fact a different process takes over in creating this database system and can't handle the duplicates. I can't totally figure the reason other than it probably is scared to change the originally referenced alias to something else (which it shouldn't be scared of since Merge Events deletes the original anyway).
    This is where it gets INSANE and where I lose all understanding of what is going on, and believe me it was a delicate understanding to begin with. It comes in to play with the work around I figured out. I make the master Event with the 10,000+ clips. Then I import all the XMLs as dedicated Events. Now, I then drag the Multicam clips into the master Event, it WORKS! just takes it, no "Kill Yourself Now" error. Stranger still, now with the switched referenced Event, it even takes into account which aliased duplicate file name it's referencing in the Original Media folder. Somehow, it's taking into account the original file path and saying "Ok, I see 5 instances of MVI_5834.mov. Based on the original file path or maybe creation date or god knows what, it must be MVI_5834 (fcp3).mov." It connects perfectly. I can even remove the old XML imported Event with no problem. Crazier yet, I can now move those again to the dedicated Event I wanted originally that only contains those Multicam or Compound Clips.
    So instead of going straight from A to C, going from A to B to C works even though that actually seems way more complicated. Why can't FCPX handle Merge Events and dragging clips the same way it handles media imported into a single Event. And weirder still, why can't FCPX handle the (fcp1,2,3...) appending in the same scenario. But if the appended links are already there, No Problem. And for the love of god, it'd be nice to important XML's into existing Events and make the correct referencing happen right from the get go, which is really the source of all the above headache. I'd have no problem helping FCPX with a little manual pointing in the right direction just like any other NLE needs.
    Ok, having said all of that crap above, my question is, have I missed something completely simple I should have done instead? Now that I have everything in place how I originally envisioned, I think I will still play around a little bit more to make sure FCPX is really going to be able to handle this project. I'm at a stage right now where going another direction is still an option, although the dare devil in me wants to make this work. Media management aside, once you start editing on a FCPX timeline, its hard to go back to anything else. Apple is going to have to figure out some way not to access to everything at all times to work fluidly or big projects like this are never going to be practical in FCPX.
    Sorry for the long confusing post....

    I'm having the exact same problem, but I know nothing of ruby scripts. I've exhausted my resources with tech support, and after literally hours of work with them it seems I now am faced with either re-rating each individual song, or pointing iTunes to each song that it can't locate. Is yours a solution that could help me? How can I find out more about Ruby Scripts? Thanks for your help, hellolylo (or anyone else who might also be able to help...)
    Kenn

  • The App Store asks to "verify" my personal information, For my name, state, credit card, etc. I don't even live in the US and I don't have a CC, nor do I want to give away my personal information. I just want to download free apps. Any work-arounds?

    Title says it all.
    I'm really getting sick of websites getting more and more into your business. Google forcing you to get a G+ account and asking for your identifying information, for example (like your phone number).
    It's extremely irritating, and I'm opting out of everything that enforces the such. If Apple begins pushing like this, I will just close my relationship with the company and obtain apps by using third-party software to force them onto the phone.
    But before going that far, I'd like to find work arounds.
    First of all, I don't even know why it asks me for my "state". I don't even live in the USA anymore, as I moved to China (though I won't use the Chinese store as I don't speak or understand the local language, which is Chinese).
    All I want... is to continue using the English App Store to get free apps from here in my home in China, without getting stopped by Apple asking for more info on me. I don't want to share my name, I don't want to share my address, and I can't even complete the form as I no longer have a "state" and don't have any credit info.
    So that's just that. If there's no way around it I'll find another way to install apps without the App Store.
    Sorry for the message tone, I'm just really irritated with the way the internet is getting.
    Thanks in advance!
    - Alex

    The living issue is complex in my case. Legally speaking, I have no personal residence globally. I just live wherever my father goes, which is everywhere. I'm an expat and it seems that these sites aren't really expat-friendly. They seem to be built for localization and assume everyone stays in the same place.
    I don't know what I'd be considered. I'm a US passport holder and live in China, but I only speak some Chinese and I can't read it (it using non-latin characters is just too much for my mind's memory to handle). Besides that, I'm not interested in popular Chinese apps. They tend to just be annoying and kooky and generic and put together badly, often full adware and spyware (speaking for most Chinese software, in fact). In fact, a lot of apps I want are illegal in China (YouTube, Facebook, etc) and I use a VPN to use the services. I assume I wouldn't find these apps on the Chinese store. In fact, last I checked, there wasn't many English apps on the Chinese app store. This is probably due to their strict moderation or something.
    I've been going to international schools since I got here and college would be in English too. I can speak some Chinese, but not read it.
    Well, I guess the answer is that I can't use the App Store in English. So I guess I'll just sign out everything on my phone involving my Apple account and just start using third-party tools to do my business.

  • Work-around for Mavericks USB-sync crippleware?

    Has anyone found one? Does reinstalling 10.8 work?
    I grudgingly started using iCloud when I had no choice. It is not reliable. Constant problems syncing calendars, contacts, mail accounts, etc. And I am currently in New York City, with excellent mobile data coverage and frequent access to Wifi. But I spend large parts of my life in places with no Internet. And still do not understand why Apple apps on two pieces of Apple hardware should not be able to talk to each other with the USB cord that Apple provided with purchase.
    So is there a work-around? Ideally one that does not involve wasting any more time uninstalling and reinstalling operating systems?

    Yes it's back! ( and works! ) Thank you Apple!
    Thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you, thank you.
    Sometimes it's just the simple things...
    My world is put back....
    jeff
    ...now if we could just get double clicks on Folders in the Finder to open new windows.....
    <sigh>

  • Syncing of Apps and a Work Around I Thought Of

    (this is an excerpt from a previous thread which was not answered - if you could kindly help me out with this and offer your expertise it would be greatly appreciated. Thanks!!)
    Hi All,
    I know this will be quite a change of tone from what you've been getting so far here in this thread, but I want to start of by saying thank you, for all the help and guidance you have been and are giving us. I greatly appreciate it.
    I have a question on apps folder structure upon restoring from backup. I will share with you the chronology of events, what I understand, what I hope to achieve and what ways I think this can be achieved. By sharing with you my whole thought process, I hope to get your critique and correction if at any part I have misconstrued the logic. Thanks in advance again.
    I have 2 iPhone and 2 iPads. When I bought my first iPad (brand new) I plugged it into iTunes and did a restore from my iPhone 4G backup. I believe I selected "Sync Apps" (though I can't confirm now cause I formatted my computer already) because all my iPhone apps were synced to my iPad - which is great. Q1 --> Because I restored from my iPhone 4G backup which presumably had "Sync Apps" checked, I believe my first iPad's iTunes syncing options also had "Sync Apps" checked as well - reason is that all the "Music", "Movies" and "Photos" options were also transferred over. Am I correct? Thanks
    So for the rest of the post, I will assume the iTunes setting for my 1st iPad was set to "Sync Apps" (until you correct me otherwise).
    My computer was running a bit crappy --> Windows, I know haha, so I formatted it. I did not save my backup file to an external harddrive and then put it back into the %appdata% iTunes Mobile Sync folder. Therefore after formatting, I plugged my iPad into the new computer and did a backup. Because (if I remember correctly, - (Q2) please correct me if I am wrong) it sensed my iPad as connect to a previous iTunes it asked me if I wanted to disconnect from the previous iTunes and sync to this one cause I do know that we can only sync to one iTunes at a time. I had to re-configure all my "Music, "Movies" and "Photo" settings again as this was a new iTunes configuration - which I do understand. Q3 - if I have a new iTunes because I formatted my computer, but I ported over the old backup file and restored my iPad from there, would it still be considered a new iTunes link and thus I have to configure everything again? I don't think so cause the backup contains all the settings; what I think will happen is that I will just be asked if I want to disconnect from the old iTunes and connect to the new one, and all my settings will be restored from the backup.
    So I synced my "Music", "Movies", "Photos" and also "Info" and "Podcasts" (I don't use "TV Shows") and got it all set up. Only thing I didn't tick was the apps - perhaps cause I didn't take the time to understand it previously owing to the fact that I didn't need to then ha, but now I do!! So after everything was synced, I did a backup. After reading your thread, and the link you gave, I understood that I have to transfer purchases from my iPad because my iTunes had no apps - as it is a "new iTunes". So I transferred my purchases.
    Next I joined my 2nd iPad (second hand iPad) and did a "Restore" (If you are experiencing problems with you iPad, you can restore its original settings by clicking Restore.) to wipe out apps etc that the previous owner had. Q4 - what is the difference betwixt the "Restore" in iTunes below "Check for Update" and the iPad's "Settings" --> "General" --> "Reset" --> "Erase All Content and Settings"? I believe (with some experiments ha) the "Restore" in the iTunes will give me a "brand new" iPad but I don't know what is the difference betwixt that and "Erase All Content and Settings".
    I then restored from the backup of my 1st iPad. But remember just now I mentioned that I did not tick the "Sync Apps" in my 1st iPad's settings? So after the restore was done, I had all my "Music", "Movies" and "Photos" + "Podcasts", "Info", everything but my "Apps" --> because I didn't tick "Sync Apps" in my backup. So my 2nd iPad had everything but "Apps".
    Now I need to rectify that and create a mirror of my 1st iPad. I don't jailbreak my iOS devices and all my Apps are bona fide purchases with my hard earned money . Here is the solution I thought of and the single problem I face.
    Solution: On my 2nd iPad, click Sync Apps, select all the apps I want in my iPad, and then click Apply. Then I restore the backup of my 1st iPad. That restores all my app data and very importantly, my folder structure (cause when we have a lot of apps and we organise it all into folders, re-putting them back into folders can be quite time consuming; quite the antithesis of computing in the first place).
    This truly give me a mirror image of my 1st iPad (please kindly correct me if I am wrong). The only problem is that, the Sync Apps is still not ticked. Q5 - Is there any benefits of my ticking "Sync Apps" vis a vis doing it this work around method? (Update: I thought of something - "Sync Apps" would allow all the apps on my iPad to be automatically synced to my iTunes but for my work around, I need to think of all the apps I want on my iPad and tick them. If it is for example 50 out of 50 apps, it's simple. But if it's 50 apps out of 150 apps in my iTunes then it would be a big headache. Any other benefits / costs?) My "File Sharing" is still working ok - in the sense I can still transfer data to my apps without having it synced (thankfully it is not sync dependent - but please once again correct me if I am wrong).
    The reason why I do this work around method is because if I were to click "Sync Apps", it would get all my apps into my iPad but it would destroy all my folder structures. Q6 - however if I do this "Sync Apps", when the apps are transferred to my iPad I would have all the app data on my iPad already right? Because I postulate it work on a n-tier abstraction separating data from the app. I think this is true because previously I restored from backup and had some apps missing, but when I downloaded the app all the data was "magically" there.
    Q7 - is there any way to maintain apps folder structures when I am syncing to a new iTunes instead of the work around I have thought of?
    Q8 - and last question haha. My iPad has 10 3rd party apps now for example. If I backup now, it would backup the app data of all 10 apps (3rd party apps - notation left out for simplicity sake moving forward). However if I deleted 2 apps from these 10 apps, then if I backup the 8 apps, would it mean that the backup no longer stores the 2 deleted apps's app data? I think that would be the case but I would just like to confirm.
    Thank you for reading my very long post and I really appreciate all your help, Allan and all others. Looking forward to your advice, guidance and response!! Thank you once again!!!
    P.S. does iTunes lag quite a bit in Windows (if you are a Windows user)? For me it's not the quickest programme around; can get quite laggy sometimes, on my newly formatted and empty 64 bit 4GB Dual Core 2.4 GHz HP TX2 and Acer computer as well

    If you restored to factory settings/new iPod and still have the problem that indicates a hardware problem.
    Make an appointment at the Genius Bar of an Apple store..
    Apple Retail Store - Genius Bar

  • 10.4.9 Printing Work-Around Fix - 10 Steps

    VonB has already listed a fix in this thread.
    http://discussions.apple.com/thread.jspa?messageID=4234084&#4234084
    Unfortunately the links he provided there are for a paid site, and if you don't have a membership you're outta luck. I've taken his info, used it and written what I think are clear instructions to help you be able to print in 10.4.9 until Apple releases an update patch. Special thanks to Vonb for pointing me in the right direction.
    Hope this helps...
    Jim
    10.4.9 Printing Work-Around Fix - 10 Steps
    Problem - Many programs will not print in OSX 10.4.9.
    What This Fix Does - Allows you to print in TEXT EDIT. You can then save MS Word files as Text Edit files and print them. Hopefully a fix will soon be released by Apple for OS 10.4.9 or MS for office 2004.
    What This Fix Does Not Do - It won't allow you to print in MS Word if you currently can't, and it won't allow Appleworks to work if it currently doesn't.
    Difficulty - easy to moderate. Can you paint by numbers or do you tend to draw outside the lines? If you follow the directions closely you'll be ok.
    Disclaimer - I typed this fix out for myself and have applied it to my 5 personal macs and 4 at work. It hasn't crashed any of them, but I don't want you to get ****** off at me if it does... so if you screw your mac up by doing this don't say I didn't warn you. This fix isn't for newbies.
    Time to complete - about 1/2 an hour.
    Special Instructions -
    A. You'll need to be logged in as the administrator of the computer you're working on. I've written this help missive in real plain language. If it seems like I'm speaking down to you I'm not, I'm just trying to make sure you don't screw it up and send me nasty emails.
    B. Check to see if TEXT EDIT already prints for you, if it does then skip to #10. (TEXT EDIT can be found in your APPLICATIONS FOLDER on your Macintosh HD.)
    OK... here we go, THE TEN STEPS! (cue dramatic music)
    1. Delete all of your printers in the PRINT & FAX set up in SYETEM PREFERENCES by following this path - BLUE APPLE / SYSTEM PREFERENCES / PRINT & FAX. If the plus and minus button on the bottom left of the dialog window that appears is grey'd out, you need to CLICK ON THE LOCK and UNLOCK it. You'll need the administrator password to do this. Once the lock is unlocked, click on each printer listed there and then click the minus button. Repeat the process until all printers in the print & fax dialog are deleted.
    2. Download two programs from the net. (REMEMBER where you download these files on your computer.)
    A. Download a program called CUPS from this site. http://www.cups.org/software.php?VERSION=1.3svn-r6326&FILE=cups/1.2.8/cups-1.2.8 .dmg
    CUPS is a unix program that Apple uses within Mac OSX to print. Download version 1.2.8 only. When you get to the site, you will have FTP and HTTP buttons to select where to download from. If you're already in a browser, click on one of the HTTP sites. That way you don't have to open an ftp program.
    B. Download and install a program called PRINTER SETUP REPAIR (VERSION 5.0.5) from this site. http://www.fixamacsoftware.com/software/index.html
    PRINTER SETUP REPAIR is a shareware program we'll use to fix some issues... if this works I suggest you go back to this site and be a good net citizen and purchase the software. If it doesn't then don't buy it.
    3. Install CUPS by clicking on the CUPS.DMG file twice. This will open the DMG file on the desktop as a hard disk image. Open the CUPS HD image and click on the CUPS.pkg twice to install the program. Follow the instructions to the end. After installation click close button.
    4. Open psr505te.dmg by clicking on it twice. (it might be called psr505TE.dmg.zip. if it is, click on the psr505TE.dmg.zip file twice to open it, then click on the psr505TE.dmg file twice to open it.) Once the psr505TE.dmg is open, open the PRINTER SETUP REPAIR HD on your desktop. Inside is a program by the same name. Open it by clicking on it twice.
    5. Click the "TRY IT" button, type in your admin password, and click the CONTINUE button
    6. On the left side of the Printer Setup Repair dialogue window, click CUPS TOOLS icon. in the middle of the dialogue box, if the screen reads " cupsd is running" click the STOP button located just to the left.
    7. On the lower right hand side of the Printer Setup Repair dialogue window, under the words "replace current cupsd.conf file with", SELECT "new cupsd.conf file". Then click GO. Then click CONTINUE in the next dialog box that appears.
    8. On the left side of the Printer Setup Repair dialogue window, click on the FILE PERMISSIONS ICON. Make sure that all of the boxes in the middle of the Printer Setup Repair dialogue window are checked except for OMIT LOCALIZED FILES and both of the FOR ALL USERS boxes. At the top of the screen in the middle click on the PRINTER ICON THAT HAS A QUESTION MARK on it. In the window that pops up click CONTINUE. This will run VERIFY AND REPAIR PERMISSIONS from inside the Printer's Setup Repair Program. (I know, there is a repair permissions in the Disk Utility Program already on the mac, it doesn't do something that this program does. I don't know what it does, but this works and Disk Utility doesn't.)
    9. Run it AGAIN! (the second time does the trick for some reason. just once didn't do it on three out of 5 macs that I used this work around on). This should allow you to print in TEXT EDIT.
    10. If you are using Microsoft Word and you want to print something, you need to SAVE AS a text only file (File menu / Save As / Format - Text Only) and print by opening the document in TEXT EDIT and printing from that application. So far this fix has worked on 1 intel iMac, 1 lamp stand iMac, an eMac, a Macbook and an iBook. (Funny enough, my G4 sawtooth Mac running 10.4.9 works fine and prints from MS word without a hitch.)
    If this fix works for you, i encourage you to go back to printer's setup repair's website (http://www.fixamacsoftware.com/software/index.html) and purchase their software.

    Use the install disk that shipped with your Mac to "Repair Disk"
    Steps for using Disk Utility
    1. Insert the Mac OS X Install disc that came with your computer, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu. (In Mac OS X 10.4 or later, you must select your language first.)
Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.
    3. Click the First Aid tab.
    4. Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    5. Select your Mac OS X volume.
    6. Click Repair.
    If you repair errors run it until no errors found.
    Let us know.
    -mj
    [email protected]

  • Audio/Animation Bug, with a work-around

    This is one of those cases where TechSupport believes a
    work-around is fine to something I would consider a bug. Took me a
    while to find the solution so I'd like to share with everyone my
    problem/solution.
    Background: I have a presentation with recorded audio on a
    slide that uses custom animation; in this case I've drawn circles
    and squares against an image to highlight a point. The animation is
    "on click" specific per Breeze. One of those animations creaps in
    slowly.
    Issue: When that same presentation from the Content Library
    is shared in a Meeting, in my opinion all sound should be
    "disconnected" unless using the presentation playbar. However, I
    have found that during the building of the screen (using Next/Right
    Arrow), the "sound behind the animation" comes through. Not
    terribly anoying for fast entrances, etc., but when something
    creaps in, you can have a lengthy audio playback during that time.
    IMHO, this shouldn't happen.
    Solution: (two; 1 TechSupport, 1 mine) TechSupport says to
    save the presentation as a different file name, close and delete
    the .ppc file, reload into PowerPoint, accept the load without
    audio and republish. Then in the meeting room simply select that
    renamed file. Major drawback on this point: I've got a file upload
    limit on my account. I've just doubled the space required per file.
    My solution was to use the Pod Options on the share, select
    Show Presentation Playbar and mute the audio. Simple.
    However, I still think the audio snippets behind the
    animations are a bug.
    Thanks for letting me get the word out about audio behind
    animations.
    JR

    First Try this:  launch iPhoto with the Option key held down and create a new, test library.  Import some original photos from other library that are not rotated properly and check to see if the same problem persists. If it does persist do the following:  make a temporary, backup copy (if you don't already have a backup copy) of the library and try the following:
    1 - delete the iPhoto preference file, com.apple.iPhoto.plist, that resides in your
         User/Home()/Library/ Preferences folder.
    2 - delete iPhoto's cache file, Cache.db, that is located in your
         User/Home()/Library/Caches/com.apple.iPhoto folder. 
    Click to view full size
    3 - launch iPhoto and try again.
    NOTE: If you're moved your library from its default location in your Home/Pictures folder you will have to point iPhoto to its new location when you next open iPhoto by holding down the Option key when launching iPhoto.  You'll also have to reset the iPhoto's various preferences.
    If still not working correctly continue with the following:  apply the fixes below in order as needed:
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.

  • Got error message with web based application that it would only work on MS Explorer 6.0 or newer. Any work around for this?

    When accessing a web based program I got a message that it could only be accessed using MS Explorer 6.0 or newer. Is there a work around for this?

    There is a way to do this.
    But it works or not, I have no idea.
    Enable  "Develop menu".
    Safari > Preference > Advanced
    Checkmark the box for "Show Develop menu in menu bar".
    Develop menu will appear in the Safari menu bar.
    Click the Develop menu and select "User Agent"
    There are choices. Do not forget to make Safari default again afterwards.

Maybe you are looking for

  • Cannot Delete .trash file of an external hard drive

    I am having issues deleteing a .trash file from my Western Digital external hard drive. I moved 500GB of my photos from that hard drive to a desktop hard drive, they copied to that hard drive and then went to delete the files off my WD. Half way thro

  • Error while declaring cursor

    Hi all,when i am trying to declare a cursor in a procedure i am getting errors.Kindly correct me where i am going wrong   1  CREATE OR REPLACE PROCEDURE xxc_lc_rcv_interface_prc IS   2      v_a    NUMBER;   3      v_b    NUMBER;   4      v_c    NUMBE

  • How to manage multiple articles in a single InDesign file ?

    Hello all ! Sorry if this seems stupid (it does to me) but I'm new and can't find this info in the ressources. I have designed a 24-page magazine in InDesign. I've created an alternate layout for iPad (digital publication) and everything is in order.

  • Date Picker not allowing to capture time

    Hello Friends, I am trying to create a tabular form on a table[create SQL as below]. CREATE TABLE  "JOB_RUN_DETAILS"    (     "JOB_NAME" VARCHAR2(100),      "SCH_RUN_DATE" DATE,      "START_DATE" DATE,      "END_DATE" DATE,      "STATUS" VARCHAR2(100

  • HP Pavilion g6-2230ew Start-Up Test and Hard Disk Short DST: Failed

    Hello community, As you can see, my notebook model is HP Pavilion g6-2230ew. I bought it one year ago, and it keeps freezing and hangs for about few months. I've searched what i could do and I did a Start-Up Test to check if its the hard disk problem