Problems with screen tilting and zooming

I've been using my touch for web browsing quite a bit.
One persistently annoying problem I keep having is switching between the touch and other devices. The problem is not unique to any platform. It happens on my iMac at home and the XP laptop at work.
Whenever I browse an web page on my touch I do things like:
- double tap to zoom text to just the right size
- flip the device back and forth between horizontal and vertical to make whatever content I'm looking at fit the screen better.
Overall, I'm very pleased with web viewing on the touch, but whenever I view web content on my iMac or PC, I keep having issues:
- double tapping on the screen doesn't work. I usually remember that it isn't a touch screen and use the mouse, but double clicking ona web page never does anything but select text or open a new page.
- flipping the iMac or XP laptop on its side doesn't seem to have any effect on things inside the machine, but frequently has disruptive effects on the surroundings. The XP laptop has so many cables plugged in that when I grab the screen & rotate I inevitablly disconnect something or yank the speakers off the desk. It just plain doesn't work on the iMac as there really isn't any room on my desk. I think I'll go check Ikea's web site for firmware updates on the desk.
It just seems like the iMac and PC aren't working in a natural way like the touch. I have noticed it usually happens right after I'm using my touch. Maybe I should update the firmware on the iMac or PC? Has anyone had the 1.1.2 update show up for their iMac or PC? (or desk?)
Is anyone else having these issues?

Hi and welcome to the discussions!
I agree with Barbara. That is unacceptable.
Did they have you try to create a new user account or perform an archive and install? If the problem happens in all apps, or when just the Finder is open, it is either an OS issue, or more likely a hardware problem such as bad video on the midplane. An archive and install or creating a new users account can help eliminate software as a possibility and are two of the steps that Apple almost always suggests when their is odd behavior similar to what you describe.
Also, try shutting down and unplugging all cables fromyour iMac - including the wall - for 15 minutes. Then plug in the power cord while simultaneously pressing and holding the power button on the back of the computer. Let go of the power button and press the power button once more to start up your iMac. That would reset the SMU.
Another thing to try before calling them again is to reset the PRAM.
- Shut down the computer.
- Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
- Turn on the computer.
- Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
- Hold the keys down until the computer restarts and you hear the startup sound for the second time.
- Release the keys.
Your computer's PRAM and the NVRAM are reset to the default values. it might reset date and time settings, but that is not fatal.
I honestly do not think that any of what I suggest will make a difference, but it will eliminate a great number of possibilities. I think it is either a bad backlight or bad video, but that is just a guess.
Give those a shot and call Apple back. Then you can tell them what you have done and they will probably recommend that you take it in to an Apple repair center for further diagnostics.

Similar Messages

  • Problem with "Next Page" And "Zoom" in CrystalReportViewer With VS 2010

    Hello,
    i am using crystal report v 13 sp1 with visual studio 2010,
    As mebtioned, the next page and the zoom is not working in my report, whiwh has as data source "Stored Procedure"
    This is my code, and i think it's correct, i was using this code in previous versions of crystal report (cr10) and it worked fine,
    When i used the Data set , the next page and zoom worked fine, but with stored procedure it doesn't work,
    Note: when i open the Tree of Data on the left, then click on the next page or the zoom, it become funtional, it's very weird,
    protected void *Page_Init*(object sender, EventArgs e)
    if (!IsPostBack)
    reportDocument = (ReportDocument)this.Page.Session ["_reportDocument"];
    if (reportDocument != null)
    string rptFile = reportDocument.FileName.Split('
    ', '/').Last();
    LoadReportRessource(reportDocument);
    TableLogOnInfo log = new TableLogOnInfo();
    ConnectionStringSettings conn = WebConfigurationManager.ConnectionStrings[0]; //la premiere connectionstring
    SqlConnectionStringBuilder SConn = new SqlConnectionStringBuilder(conn.ConnectionString);
    log.ConnectionInfo.ServerName = SConn.DataSource;
    log.ConnectionInfo.DatabaseName = SConn.InitialCatalog;
    log.ConnectionInfo.UserID = SConn.UserID;
    log.ConnectionInfo.Password = SConn.Password;
    log.ConnectionInfo.Type = ConnectionInfoType.SQL;
    for (int i = 0; i < reportDocument.Database.Tables.Count; i++)
    reportDocument.Database.Tables.ApplyLogOnInfo(log);
    for (int i = 0; i < CrystalReportViewer1.LogOnInfo.Count; i++)
    CrystalReportViewer1.LogOnInfo.ConnectionInfo = log.ConnectionInfo;
    CrystalReportViewer1.ParameterFieldInfo = (ParameterFields)this.Page.Session ["_paramFields"];
    CrystalReportViewer1.ReportSource = reportDocument;
    CrystalReportViewer1.DataBind();
    CrystalReportViewer1.ShowFirstPage();
    else
    CrystalReportViewer1.ReportSource = (ReportDocument)this.Page.Session ["_reportDocument"] ;
    Edited by: Soumaya on Sep 7, 2011 6:16 PM

    @Don:
    Sorry, but i donno what do you mean by "what is the App Pool running in 32 or 64 bit?",
    i am running the application locally, ( the IIS is installed locally ),
    as i told you, my OS is 64bit,
    And yes i tried a very simple report, with just one field , and the "next button" is also not working,
    Its only not working with stored procedure, in the others methods ( push or pull method is working fine)
    i think its a problem in refreshing page, because when i open the tree on the left, then click on next page or zoom, its works fine
    @Ludek:
    i changed my code as below, and it doesn't solve my problem:
            ReportDocument reportDocument;
            protected void Page_Init(object sender, EventArgs e)
                if (!IsPostBack)
                    reportDocument = (ReportDocument)this.Page.Session["_reportDocument"];
                    if (reportDocument != null)
                        string rptFile = reportDocument.FileName.Split('
    ', '/').Last();
                            TableLogOnInfo log = new TableLogOnInfo();
                            ConnectionStringSettings conn = WebConfigurationManager.ConnectionStrings[0];
                            SqlConnectionStringBuilder SConn = new SqlConnectionStringBuilder(conn.ConnectionString);
                            log.ConnectionInfo.ServerName = SConn.DataSource;
                            log.ConnectionInfo.DatabaseName = SConn.InitialCatalog;
                            log.ConnectionInfo.UserID = SConn.UserID;
                            log.ConnectionInfo.Password = SConn.Password;
                            log.ConnectionInfo.Type = ConnectionInfoType.SQL;
                            for (int i = 0; i < reportDocument.Database.Tables.Count; i++)
                                reportDocument.Database.Tables<i>.ApplyLogOnInfo(log);
                        this.Page.Session["_reportDocument"] = reportDocument;
                        CrystalReportViewer1.ParameterFieldInfo = (ParameterFields)this.Page.Session["_paramFields"];
                        CrystalReportViewer1.ReportSource = reportDocument;
                        CrystalReportViewer1.ShowFirstPage();
                else
                    CrystalReportViewer1.ReportSource = this.Page.Session["_reportDocument"];
    Edited by: Soumaya on Sep 8, 2011 10:39 AM

  • Stratosphere- Problem with Screen Capture and Group Text Reply

    I have a problem with the side button that locks/unlocks the phone.  I don't know why it happens but sometimes when I press the side button to lock the phone it takes a screen shot and send its to my Gallery under the folder ScreenCapture.  I can't figure out why it does this sometimes, and when i want to actually take a screen shot I cant. 
    Anyone know how exactly you can take a screen shot?
    Another question i have is with Group Texts.  Is there a way to reply all when I receive a text that was sent to multiple people or can I only reply to the sender?
    Hope someone can help thanks!

        Hello kfeatherstone! I can provide you with instructions for taking a screenshot:
    1. Press both the Power and Home buttons briefly.
    2. You should hear a “click” sound and the screen will say “Screen captured. Saved as image file
    In regards to your messaging, "reply to all" is not an available option. I hope this information helps!
    ChaunceyM_VZWSupport
    Follow us on twitter @VZWSupport

  • Problem with Bridge CS6 and zooming to 100%

    When I click on a file to zoom to 100% it zooms to 800%. I had the same problem in CS5 and fixed it by deleting the com.adobe.bridge.plist, but this does not work with CS6 and I don't even find the plist. I have a Mac with OS X 10.8.2. I found two plists, com.adobe.CSXS.3 and com.adobe.CSXS2Preferences but it didn't fix the problem deleting them.
    I use the zoom function alot and would be very grateful if someone could help me. I do not like the preview workspace with the little 100% window, I prefer zooming to 100% by clicking on the file.

    It does not work on a Mac, and they have only one set og +/-, at least my Macbook Pro has.
    That is a bit strange, it always has worked for that way on both my Mac Pro and my MacBook.
    I can use the scroll wheel on my mouse to enlarge the 100 % preview from loupe in preview window to 200, 400 and 800% but also the + and - keys from both my qwerty key board and the number pad of my extended keyboard for the same result.
    Hitting tab for full screen preview I don't even have to click, both aforementioned + and - keys set to 100%, 200, 400 and 800% as well my scroll wheel.
    All those methods work on both MacPro and MacBook.

  • Problems with screen freezing and going blank...

    Yesterday I was looking through photos that I had loaded on to my mac book (which I have looked through before and not had any probems) when all of a sudden everything froze and a spinning colour wheel appeared on the screen. I couldn't click on anything at all, I treid to quit the programmes that were not responding but this made no difference and I ended up having to hold down power button and restart. Everything was fine when I switched it back on until today, I was using safari, I didnt touch the screen for a few minutes so the screen went black, which it usually does but normally when I click it goes to the log in screen but this time it was just a black screen nothing happened when I clicked there was just a cursor on the screen?? after about 30 seconds it went back to the usual screen! Obviously this isn't normal but I just wondered if its serious or maybe just something silly that happens sometimes???

    You got it in July? Then you should still be able to get a new/replacement iPod if you have to. You wouldn't return it to the store, you would send it to Apple itself. You should try resetting it and then try recharging again. And you should install the CD that came with the iPod. If you already did, you should update it (the iPod software).

  • Problems with screen, keyboard and trash when logging in?

    Hey. When I restart or turn on my mac the login screen pops up, as per normal, but for some reason the screen is really dim, like only 4 squares dim, and so is the keyboard. I thought it was the ambient light sensor because I'm usually in a well lit room but I tried it in a dim room and the same thing happened. When I log into my account, it doesn't change and I have to push the the F2 and F6 keys so the screen and keyboard is at max. What do I do to stop this from happening? Also, the trash always has this folder called "recovered files" in it. Where does it come from? And how do I stop it from appearing? Thanks in advance!

    Hi Fonzo
    For backlight functions not working correctly try an SMC reset (http://support.apple.com/kb/HT3964), read the instructions through carefully before attempting.
    As for Recovered files:
    One or more Recovered Files folder may appear in your Trash after restarting your computer. The recovered files are temporary files used by Mac OS X applications. Usually temporary files are deleted by an application when it no longer needs them. If an application quits unexpectedly, the temporary files may not get deleted by the application. When you restart your computer, Mac OS X moves these temporary files to the Trash.
    You can retrieve useful files by dragging them out of the Trash. In most cases, however, the temporary files are not important and it is safe to empty your Trash. Check with the manufacturer of the application if you are not sure.
    J.C

  • I have a problem with my motherboard and my battery of my 2010 macbook pro 13". It was just serviced with a new screen, keyboard, and logic board.

    I have a problem with my motherboard and my battery of my 2010 macbook pro 13". It was just serviced with a new screen, keyboard, and logic board. How much will a new battery and motherboard cost and would it be worth it or should I just get a new computer. It was about 300 dollars to get it serviced last week. if it adds up to much past 600 dollars I will just get a new one. THANKS FOR ANY HELP!
    P.S During classes today it began beeping in my bag. Like three kind of long steady beeps then a short pause, and when I opened it I couldn't see anything but it was on so I turned it off and back on.

    Depends on what options your Apple store offers - if they can do a depot repair (where they send it out), that's around $300 for all parts & labor.
    If the store doesn't have that option, a logicboard is around $600, battery $80-$100, from what I've seen.
    If they JUST replaced the logicboard, you absolutely should NOT have to pay for another replacement - the replacement is covered by a warranty. If they want you to pay for it, make sure you have a copy of the receipt for the work that was recently completed so you can show it to them. They have no reason to charge you for another logicboard.
    ~Lyssa

  • Problems with Customer Service AND unexplained charges!

    I've been with Verizon for I-don't-know-how-many years, and through the years you are bound to have a few problems here and there but some of the problems are just ridiculous! It's also the same reocurring problem!!!!!!!!!!!!!!!! I was with Alltel first, before it was bought out by Verizon. The years I was with Alltel, I didn't have near as many problems. It seems EVERY time I do the smallest change or something to my phone or bill, I get a ridiculous amount of charges that I was NOT aware of, nor told about... EVEN IF I ask "So this isn't going to change my bill, or there will not be any unexpected/unexplained charges that I don't know about?"... BUT not matter how many times I ask... and NO matter how many times I am told "no"... there always is. For example.... last year, I updated and signed a new 2 year contract and purchased the first Driod. Before, my 30 day warranty was up, I was having problems with my Driod, and decided to send it in and get a new one. Before I did this.. I called customer service to make sure there would be no interuption in my bill, and there wouldn't be any unexpect charges, and there would be no difference in anything. I was told there was not, and once I recieved my new phone, just send it in and nothing would be changed. Of course, when I get my bill.. I see I was charged $500 for the new phone. It was explained to me that my credit card was reimbursed (which I never check that card, because I never used it expect to purchase the phone) and that I was recharged for the new phone, since it was a new phone. So I had to fork out the $500 (on top of my bill) and then wait months to get the $100 rebate card. Months after that, I "assumed liablity of my line" because I was on a plan with my family. I decided to have my own line, so I "assumed liability." I was not told that when I did that, I "renewed" my contract date. So I just added 6 more months to my 2 year contract. Was NOT told about that! Then again...... I was recently having problems with my Driod (the screen went black and would not come back on.) I had to turn on an OLD motorola razor, so I would not be without a phone for two days while I was waiting on my phone to come in. As soon as my phone came in, I had my Droid turned back on. I recieved my bill recently, and my bill was $200 over what it normally should be.... so I called in... apparently, when I had my phone replaced, they dropped off my data package and when I recieved my replacement driod, they never put it back on. So I was being charged for alllll my data usage... again I was NOT told about this. I wasn't even aware that they had dropped off my data package, and when/where did they get the authority to do that??? These are just a FEW of the problems that I have had.................................
    Does anyone have these reoccuring problems!?

    I understand that my bill can be viewed online, and I do view it fairly regularly, so if there are any unexplained charges, I can call Verizon asap. The problem does not come from me not understanding my bill, but from customer service. I have been with Verizon for a very long time, and it is a continuing problem. Where did Verizon get the 'OK' to drop my data package off my plan? Who authorized that?
    After calling Verizon and trying to find out the problem, the gentleman told me that when I activated on old phone while I was waiting on my new Droid to arrive, my data package was dropped off and I "should" have been told about that. When I reactiviated my new Droid, I "should" have called and had them restart my data package. I was not aware that when you activate an old phone that data plan is taken off your plan. In all my years of having cell phones, I never make two years with one phone. I have always, at one point, had to turn on an old phone, and my data package has NEVER changed. Why would I have my data package dropped and why would I have to call Verizon to have it restarted. I would never know to do that unless I was TOLD that my data packaged HAD to be re-added when I recieved my new phone, but I was never told of that.
    All of that is beside the point, the point is, Verizon was never given the authorization to change my plan. Never. My bill was taken care of and readjusted, and I am thankful for that. It does not change the fact it is always a hassle with Verizon Customer Service and I am always the one having to PROVE that I am not at fault, or that I was NEVER told of certian things. EVERY TIME I HAVE CALLED CUSTOMER SERVICE, I AM TOLD "I'M SORRY, THEY SHOULD HAVE TOLD YOU THAT."
    "they should" does not help my bill with the extra armount of charges.

  • Problems with dropped calls and no reception on Samsung Continuum

    My mother and I both purchased a Samsung Continuum in late March 2011, and have experienced the same problems with the phone.  The device drops at least 2-3 calls per day, often on the same conversation; we have not found that location or time of day makes a difference.  The phone freezes up frequently, even if no apps are running in the background.  We lose our 3G network reception frequently, and cannot access our texts, emails, or the internet.  The screen saver kicks in even when we are actively dialing a number, or typing in a text message.  The overall performance of the phone is also poor, and it is quite slow much of the time.
    We have raised this issue several times with a representative at one of the Verizon stores, but he states that he can find no problem with the phone, and that these issues may not be covered under our insurance plan.  None of my friends with non-Samsung phones are having the same problems with phone reception and performance.  I am aggravated enough with these issues that I am considering reactivating my old Blackberry, which worked like a charm.
    I am not upset that my phone has not been updated to Android 2.2.  I just want the phone to perform as stated, and not fail at its primary function:  making and receiving phone calls.  I am not certain if these problems originate with the phone, Verizon, or Samsung, nor do I care.  I just want to resolve these issues as soon as possible, or I will have to look at other alternatives.
    Thank you.

    If this doesn't work...now what??? I have a useless $400 plus piece of unreliable junk. My Motorola Razor was ions more reliable than this phone...very, very sad but true.
    What carrier were you using with the Razor? AT&T? Same area?
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Creator of 'Mac611 - Mobile Mac Support' (designed exclusively for an iPhone/iPod touch)

  • Hello apple I have the problem with my iPhone and my friends have this problem too. My iPhone have the problem about calling and answer the call. When I use my iPhone to call I can't hear anything from my iPhone but the person that I call can answer it bu

    Hello apple
    I have the problem with my iPhone and my friends have this problem too.
    My iPhone have the problem about calling and answer the call. When I use my iPhone to call I can't hear anything from my iPhone but the person that I call can answer it but when answer both of us can't hear anything and when I put my iPhone to my face the screen is still on and when I quit the phone application and open it again it will automatic call my recent call. And when my friends call me my iPhone didn't show anything even the missed call I'm only know that I missed the call from messages from carrier. Please check these problem I restored my iPhone for 4 time now in this week. I lived in Hatyai, Songkhla,Thailand and many people in my city have this problem.
    Who have this problem??

    Apple isnt here. this is a user based forum for technical questions. The solution is to restart, reset, and restore as new which is in the manual after that get it replaced for hard ware failure. if your within your one year warranty its replaced if it is out of the warranty then it is 199$

  • Problem with Nokia Camera and Smart Sequence

    Hi,
    I'm having a problem with Nokia Camera and the Smart Sequence mode.
    Basically, if you take a picture using nokia camera, and view it in your camera roll, it usually says, underneath the pic "open in nokia camera".
    Well, if I take a pic using the Smart Sequence mode, it just doesn't say "open in nokia camera" so, to use the functions of smart sequence (best shot, motion focus, etc), I have to open nokia camera, go to settings and tap the "Find photos and videos shot with nokia camera" option.
    Does anyone has the same problem? Anybody solved it?
    I already tried reinstalling nokia camera, but that didn't help.
    I'm running Nokia Black on my 925.
    Thanks everyone!

    Hi,
    I had the same problem with my 1020. It did get fixed with the last update to Nokia camera.
    However, IIRC, it didn't just happen right away. When browsing the camera roll I'm pretty sure that the "open with Nokia camera" text wasn't there.
    Slightly disappointed I opened the (Nokia) camera anyway and was going to test the smart sequence again. I noticed the only precious pic I'd taken using this actually appeared top left of the screen.
    I opened it and I had all the smart sequence editing options again - that we're missing previous. Made a new picture and saved it.
    Now when in camera roll the text shows below the image and all is good.
    This probably doesn't help much except that it didn't seem to fix automatically.
    I work @Nokia so I can ask around a bit to see if this is a known / common issue (not that I know any developers)

  • My iphone 5 have problem with screen

    Dear Sir/Madam
    My iphone 5 have problem with screen, i could not control sometime because it frozen and appear white cross line. I have restore my phone, but issue still there
    I have same issue with this user on youtube http://www.youtube.com/watch?v=xpB7mqcWM1A
    Please help to advices how can i do now
    My Phone Information
    Serial Number F17JRZ55DTTP
    IOS 7.1.1(11D201)
    Thank and Regards
    Thanh

    Hi, I use my phone carefully, did not drop it before. I restored it cause i think problem come from jealbreak or software. It still happen.
    Currently, it is ok after i turned off the phone through night . Thank for your help

  • Problems with screen sharing

    Upgraded three systems to Mountain Lion yesterday (Early 2011 MBP, Mid 2010 Mini and Mid 2011 Mini). 
    I rely on Screen Sharing to maintain the two Minis using the MBP.  Now, while the Mid 2010 Mini can be accessed just fine, the same is not true for the Mid 2011 Mini.  After a long delay, a window will pop up but is black.  If I toggle between scaled and full screen a couple of times, the screen will be displayed but will accept no input.  Odd.

    I was able to resolve the problem with screen sharing from my MBP to my problematic Mini.
    My home network uses a Belkin N600 dual band router with both the MBP and Mini using the faster N band.  After switching the Mini to the slower band, screen sharing began working again.  My other Mini that worked all along was hardwired to the router so was not an issue.
    Oddly, with Lion, screen sharing worked having the MPB and Mini on the same N band.

  • NMac Pro 6core D500 problems with screen refresh: 10.9.3 warning!

    Avoid 10.9.3 on the Mac Pro 6 core, D500.
    Problem with screen refresh using Motion soon after updating OSX from Mac Pro late 2013 version of 10.9.2.
    I tried my Asus HDMI at all resolutions but to no avial. The screen juddered like it was Windows 95 without any GPU drivers.
    Apple's Tech Support had me use many key commands and finally we found out there was no issue with my hardware. Apple suggested a clean install before sending it back for repair. I was fortunate to have had made a backup in the Time Machine of my computer soon after installing all my apps. After restoring my computer is running 10.9.2 version made for the Mac Pros Late 2013. There are no more problems with screen redraw after using Motion.
    So, it is clear I cannot upgrade my Mac Pro to 10.9.3 while the issue with Motion's render engine messing with my screen refresh continues. Returning to 10.9.2 has made me realize 10.9.3 is slower and not as stable.
    I would suggest not upgrading unless you have a 4k monitor.

    Avoid 10.9.3 on the Mac Pro 6 core, D500.
    Problem with screen refresh using Motion soon after updating OSX from Mac Pro late 2013 version of 10.9.2.
    I tried my Asus HDMI at all resolutions but to no avial. The screen juddered like it was Windows 95 without any GPU drivers.
    Apple's Tech Support had me use many key commands and finally we found out there was no issue with my hardware. Apple suggested a clean install before sending it back for repair. I was fortunate to have had made a backup in the Time Machine of my computer soon after installing all my apps. After restoring my computer is running 10.9.2 version made for the Mac Pros Late 2013. There are no more problems with screen redraw after using Motion.
    So, it is clear I cannot upgrade my Mac Pro to 10.9.3 while the issue with Motion's render engine messing with my screen refresh continues. Returning to 10.9.2 has made me realize 10.9.3 is slower and not as stable.
    I would suggest not upgrading unless you have a 4k monitor.

  • HT4623 problem with screen touch when during writing or opening icon the screen is flickering

    I have problem with screen touch, when I touch the screen to write something or open icon the screen is flickering and keyboard or icons begin jumping

    @ wesleyyin,
    certainly strange. Some questions to help with the diagnostics;
    Which TrackPoint cap you you have on your keyboard, soft domed, soft rim or classic domed (the hairy one)?
    Can you try disabling the TrackPoint to see the problem goes away?
    Anything else laid on top of the system or between screen and keyboard like a thin cloth or something?
    Thanks
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

Maybe you are looking for

  • Items not getting cleared in f-03

    hi all i have 50 open items in tds account showing in f-03 and i want to clear it to a bank gl account i am trying to clear it in f-03 but still the documents are showing as open items in fbl3n please advice. kind regards Moderator message: apparentl

  • Acrobat 9 Pro: changed text in preflight

    I just got an email from a client that there were some errors in the final printed piece. My InDesign file is fine. For some reason the printer wanted this catalog file as a PDFx1a. Usually for a PDF I export from InDesign and then preflight in Acrob

  • Certificate problem in Proxy Server (ODSEE 11g)

    I am having a problem adding a CA Certificate to the Proxy Server. I followed the steps in the documentation, however I get the error: "keytool error: java.lang.Exception: Public keys in reply and keystore don't match". From what I have read, this er

  • ORGEH (Time-Dependent Hierarchy Structure) on 0Orgunit

    Hi Experts, Is there a FM that can be used to retrive a certain level of the Organizational Structure hierarchy? I would like to input a specific date, Org Unit, and Level.  It should output the Org Unit at the Level desired. Any help is appreciated.

  • How I know if I am using LTE ?

    I am with Vodafone in Germany and have been told that LTE only works in poor frequency regions. Until today ( after 2 month ) I never see the LTE or 4G sign in my display. I use my Q10 during Mountainbiking, Forrest and more "poor regions" but never