How to get info about a GP* program?

I need to know where this GP* (GP0TKCPQBABBT4SVKBIDSSWD56V) program is used in (which cube, transfer rule, etc.). I executed SE38, entered this GP* program name and got back the source code.  On the top section of the source code there is no comments referencing the cube name or anything.  How can I find out more information about GP* program? Thanks for your input.

A.H.P.,
Thanks so much for your suggestion. I tried it out and it didn't work as at step #2.  Please let me know what I am doing wrong:
1)  SE16 table RSSGTPDIR, entered PROGNAME = GP0TKCPQBABBT4SVKBIDSSWD56V  and got back UNI_IDC25 = 0TKCPQBABBT4SVKBIDSSWD56V.
2)  SE16 table RSTSRULES, entered CONVROUT_L =  0TKCPQBABBT4SVKBIDSSWD56V,  didn't get back any records.  Do you know why? 
I tried these steps again with 9 other GP* programs and still didn't get back any records in step #2.
I really appreciate your help since I am totally stuck.

Similar Messages

  • How to get info about the mobile, like screensize...

    hi,
    i need some info about the device my midlet is running on.
    how is it possible to get info about the screensize, screentype(color/black) and perhaps devicetype or modelname?
    i already read it somewhere but i didn't find the source again.
    tia
    mmkl

    thx,
    the example below shows some basic information.
    Display myDisplay = Display.getDisplay(this);
    Displayable dis = myDisplay.getCurrent();
    int high = dis.getHeight();
    int width = dis.getWidth();
    boolean isCol = myDisplay.isColor();       
    int nubCol = myDisplay.numColors();more detailed information about model, aren't available through the standard api, on blackberry's there some restricted apis that provide these device-type and other detailed information...
    for more basic information, just look at the class-methods from display and displayable...
    mmkl

  • How to get info about web service caller inside Web Service

    Hi..
    I want to know that can we get info about Web Service Caller inside called web service..
    Info Like IP Address, User Id, User Name
    Regards,
    Ajay Sharma

    Hi,
    I tested following code using JDevloper 11g
    @Resource 
        WebServiceContext wsc;
        @WebMethod
        public String webMethod() {
                    MessageContext msgCtxt = wsCtxt.getMessageContext();
            HttpServletRequest req = (HttpServletRequest)msgCtxt.get(MessageContext.SERVLET_REQUEST);
            System.out.println("Client IP = " + req.getRemoteAddr());
            return req.getRemoteAddr();
        }It is giving me IP address but when i tested this web service from another computer there also it is giving my machine address instead of the machine IP from where the web service is called.
    What is wrong in my code ?
    Regards,
    Ajay
    Edited by: Ajay Sharma on Dec 31, 2012 1:06 PM

  • How to get info about Composition/Candidate window?

    Hi All,
    I'm working on an application which should be able to take multi-language input (especially chinese, japanese, and korean).
    When we type something in Chinese/Japanese, there will be Composition and Candidate Window popped up. I want to know whether there is a way to get/set some attributes/info about those windows.
    Specifically, I want to be able to position the Composition/Candidate Window anywhere I want...
    I've tried the active client tutorial for the on-the-spot and below-the-spot input, but I still haven't find a way to get a 'handle' to the windows...
    Can anyone help? Thanks in advanced :)

    I do not think the individual temp file percentages is of much use. What you usually want to know is how much of the temporary tablespace is in use and how much is available.
    For that I think you want to compare current total usage information that can be found in v$sort_segment against total available for usage data that can be found in dba_temp_files to get the percentage of available temporary file space that is in use.
    I quickly put together the following. See if either is on any use in constructing the information you really want.
    > @t20
    >
    > select
      2    used_blocks
      3   ,total_blocks
      4   ,f.blocks                             as FILEBLOCKS
      5   ,round(used_blocks/total_blocks * 100,1) SORTSEGPER
      6   ,round(used_blocks/f.blocks * 100,1)        TEMPFILEPER
      7  from
      8    v$sort_segment
      9   ,(select sum(t.blocks) blocks from dba_temp_files t) f
    10  /
    USED_BLOCKS TOTAL_BLOCKS FILEBLOCKS SORTSEGPER TEMPFILEPER
           8960       689664    1025024        1.3          .9
    >
    > select
      2    round(used_blocks/ (select sum(blocks) from dba_temp_files) * 100,1) ||'%'
      3    as TEMPFILEPER
      4  from v$sort_segment
      5  /
    TEMPFILEPER
    .9%HTH -- Mark D Powell --

  • How to get info about available Toshiba updates?

    I have noticed that this has taken over from the online product information button.
    I was wondering how do I know now when there is an update availabe for Toshiba specific software and hardware?

    To be honest if the system runs well und stabile you don't need any updates. On my one and half year old notebook I still use original preinstalled OS (recovery image) without any Toshiba specific updates. All I have installed are Microsoft updates.
    Anyway if you want to have info about available updates pick up info about TOSHIBA TEMPRO tool.

  • How to get info about updates' repo and versions, including AUR pkgs

    I'm writing a little tool in python that checks for updates and displays notification in gnome about available updates. I'm doing this by syncing database to custom directory with:
    pacman -Syb /custom/dir
    and then getting list of updates with
    pacman -Qub /custom/dir
    I do it this way because I don't want to sync my real pacman database until I'm actually installing or updating packages. I then get current version and repo of the listed packages with:
    yaourt -Q | grep "list\|of\|packages"
    It's quite long and seemingly wasteful procedure, but an even bigger issue is that I don't know how to do the same thing with packages from AUR. Looking at the yaourt's man pages I see no option to sync database into a custom directory.
    Any suggestions?

    Camus wrote:
    The author of that blog post used cower instead of yaourt, but I don't think cower allows me to sync AUR database into custom dir either. Or am I missing something? I don't how yaourt and cower sync AUR database anyway.
    I actually already wrote such notifier for gnome in bash. But I want to display more info and I want to include AUR packages.
    The perfect tool in my situation would be something that allows me to sync official and AUR databases into custom dir and then displays list of updates with:
    -name of package
    -current version
    -updated version
    -repo
    I can currently do all of the above, but just with official repos and not as elegantly as I want.
    Not sure what you mean by 'sync AUR database' (no such thing exists as it does for the binary repos), but cower will let you download to wherever you want.

  • How to get info about currently running threads in j2sdk1.4.2

    I am using j2sdk-1.4.2. There are many threads running in my program. I want to see after which thraed is invoked after another thread. I have used Thread.sleep() method to sleep the thread and give the chance to another thread to run.
    Thanks,
    Amit Mittal.

    There is no way known to me to find out, which thread is currently active if you don't want to use debugging-outputs.
    But please don't use sleep(), it slows your code down unnecessarily and is not save. Use Thread.yield() in order to give other threads the chance to run.
    Regars, tom

  • How to get Info about all VPD policies configured?

    Hi,
    is it possible to get a list of all VPD policies configured in the database?
    $VPD_POLICY - displays all the fine-grained security policies and predicates associated with the cursors currently in the library cache.
    `- It's empty. This means that this view is populated only if the policy is currently used ..
    Thanks.

    I have not checked but the dba_* views should be able to give to you this. V$vpd_policy only shows the what's there in the library cache.
    Please see this link,
    http://download.oracle.com/docs/cd/E11882_01/network.112/e10574/vpd.htm#CIHJGHDE
    HTH
    Aman....

  • Getting info about a particular property of an object....

    Hi ,
    How to get info/help about a particular property of an object...???? I mean that if all the properties of an object displayed in the property palette(for example an iterator) how to get info about and only about RefreshCondition property , without having to activate the whole on-line help and search it in there.....????? Pressing F1 , on it , displays general help about the Property Inspector....
    NOTE : I use JDev 10.1.3.
    Many thanks ,
    Simon

    If you'll look carefully at the property inspector window you'll notice two bars at the bottom - if you pull them up then the second one contains help text for each property you stand on.
    Note that this only works for properties that have the help in them.
    I think for the pagedef items it doesn't show much info, but try for example standing on JSF objects in your page.

  • How can i get info. about sun systems in real life situation

    Hi
    infact i m not so experienced ? but i have got certification and nowadays i m improving myself and applying for jobs. please tell me how can i get info about the sun systems in real life situation. i mean that how can i get details like that mostly companies use which systems ? what is the trend of companies and how i can get detail of history of sun systems?
    Thanks in advance

    hmm.......... its very difficult to explain. an its more difficult simulate....well my suggession is to get in to some job with your present knowledge and try to learn more from there....

  • How to get information about creation of a virtual machine on a Hyper-v host.

    Hi,
    How to get information about creation of a virtual machine on a Hyper-v host?
    I need: host name, time created, creator user.
    I saw in Hyper-V-VMMS but I found info about movements of VM between hosts.
    Thank's in advance.
    Denius Valiant

    For Host Name * Created Time Use This Command In PowerShell 
    Get-VM -Name (Read-Host "Type Your Vm Name") |select CreationTime , ComputerName
    and for Create User , As i know you should see on Event Log . 
    Go To Event Log Viewer--->Applications And Services Logs--->Microsoft--->Windows--->Hyper-V-VMMS--->Operational 
    You can see in Event Log who create the Vm.
    Whenever you see a helpful reply, click on Vote As Helpful & click on
    Mark As Answer if a post answers your question.
    LinkedIn:
      Facebook:
      

  • How to get on the apple seeding program?

    How to get in the apple seeding program. I really want to to test apples new iOS software.

    Yes, but if you're not already a developer you shouldn't be testing beta software.
    You shouldn't test beta versions of iOS on your day-to-day phone. You should have dedicated phone just for testing and it needs to be registered with Apple.
    Being part of the developer program and having access to iOS betas is not intended for just curious, non-developer people. It is for real developers who need to test their own apps on future versions of the OS and provide detailed feedback to Apple for bug fixing.
    If you're just curious about new OSs, don't bother.

  • Get info About Interconnect in 10gR1 (10.1.0.4)

    Hallo,
    I need as much info as possible on cluster interconnect.
    I get info about OCR configuration for DATABASE cluster interconnect from
    $oifcfg getif
    and from Alert.log and querying X$KSXPIA.
    How can I get info about CLUSTERWARE cluster interconnect?
    Thanks

    ottocolori wrote:
    I need as much info as possible on cluster interconnect.By looking at the Interconnect from the o/s level. Oracle only uses the Interconnect at IP layer (via the standard Berkely socket interface). (assuming that CRS is not configured for using RDS* instead)
    It does not care what the Interconnect is.. or how it works.. or how it is configured. It deals with the Interconnect via the o/s kernel's IP stack API (i.e. sockets).
    If you want to look at the Interconnect layer itself, you need to do it from the o/s layer. Like using ethtool to configure or query the Interconnect interfaces. And using the s/w tools provided by the Interconnect layer. For example, Infiniband provides a range of ib commands at o/s level to query and configure IPoIB (IP over Infiniband).
    * RDS is a low latency protocol that can be used instead of IP protocol suite as the Interconnect protocol

  • How To Get AppleToCare About You (iOS7 wifi solved)

    I recently encountered the now seemingly infamous iOS7 upgrade wifi bug. After upgrading to iOS 7.1.1 my wifi was subsequently knocked out. After reading skimming the forums and trying a few of the suggested work arounds I was still unable to get my wifi working (at all). I decided to wait for the next software update assuming Apple would fix the bug. What can I say? I like to believe people are inherently good and accountable. No such luck. When I went back to the forums for a better understanding of the problem I was (somewhat) surprised to discover the magnitude of the issue. For me, the end result was a new FREE iPhone despite my warranty expiring several months ago.
    Try all of the (reasonable) suggested solutions. They did not work for me but that does not mean they will not work for you - no seriously actually try them:
    I turned off wifi and bluetooth, set the phone to airplane mode, turned it off, left it off for several minutes, turned it back on - Nothing.
    I reset my Wifi Router - Nothing.
    I reset all Settings - Nothing.
    I reset my Network Connection - Nothing.
    I did a Soft Reset - Hold down the power and home buttons simultaneously and do not release until after the screen goes black and the apple logo appears. - Nothing.
    I did a Hard Reset (aka Factory Reset) - BACK UP YOUR PHONE FIRST. I connected to iTunes and performed a backup then hit restore (within iTunes). This can be done directly from your phone but if you're here because you're experiencing wifi issues your phone is probably not backed up to iCloud.
    Genius Bar. BE POLITE but firm and know your stuff. They don't owe you anything. Well Apple kinda does, but the employees in the store didn't break your phone so don't act like they did. At the end of the day Apple wrote a buggy code and isn't acknowledging the problem or compensating it's loyal customers. The only way Apple will be held accountable for leaving so many customers out to dry is if customers demand it. However, the Genius Bar is not the place to take out your rage. When I went into the Genius Bar I explained the issue I was having and the steps I had taken in an attempt to fix it. I let her run all the tests and tricks she wanted (knowing full well they weren't going to work). She politely explained to me that I would need to purchase a new phone. I explained to her that I could not, in good conscious, give a company money to solve a problem that they caused. (Some people are crying conspiracy on the part of Apple to get people to buy new phones but I haven't drank the punch yet. - I only took a sip.) I asked if she could do anything else for me. She told me that AppleCare might be responsive to my issue despite my expired warranty as they are a separate entity from Genius Bar and have more authority to help customers. I (sincerely) thanked her (several times) for helping me and asked if I could speak to a manager just to see if there was anything else they could do in store. She said absolutely and that she would "grab a nice manager". I spoke with the manager and briefly explained the issue. I then explained my issue lies primarily with Apple's business model. I, personally, take excellent care of my devices and expect them to last more than a year. I expect that when I buy a device with a premium reputation and a premium price tag that it should be supported by the company for a reasonable amount of time. The iPhone 4s is still being sold in stores and Apple is already neglecting 4s customers - (WILDLY) unacceptable.  The manager was very nice about it and expressed that I made valid points and my frustration was justified but yet no solution.
    AppleCare. After stopping in the Windows store to check possible new phones I trudged home. (Despite my fortunate result I still have a sour taste in my mouth from Apple's method of forcing customers to spend money unnecessarily on constantly changing but marginally improving products. I'm now seriously considering a Windows tablet to replace my aging MacBook.) Anyway, when I got home I called AppleCare and had a very similar exchange with the associate on the phone as I'd had in the store and was subsequently transferred my to a manager. Again, I was extremely polite to the associate and grateful for the help but made a firm point of dissatisfaction with Apple. When I got on the phone with the manager our exchange was quite short but he acknowledged that because the issues arose from a software update causing a hardware problem Apple would compensate me. (Yes, software can physically affect hardware. The CIA uses code to blow up bomb detonators masked as cell phones. It's dope. There's a TED talk about it.) In the end I got a new iPhone for FREE (with a standard replacement fee - ok Apple you won that round. It's still significantly less money I'd spend on a new phone from Apple or elsewhere).
    Moral of the story: Be polite but demand more from the companies you made (filthy) rich. Companies don't care about their customers as much as they should and we can't sit around and wait for them to behave themselves. We need to demand it (even if it ruins our Sunday afternoons). I'd also like to make it known that several times during these exchanges that I'm probably ditching Apple for good. If you use that approach you should be ready to back it up. I'm probably not going to buy another MacBook as I'm a grown up now doing actual work and Apple's inability to play nice with others makes it really difficult to run much of the software at the level I need. (Programmers, you know what I'm talking about!)  As for phones, I require much less of my phone.  Beyond, you know, using it as an actual phone, I really only use the GPS, music, photos, and web browser so I've always been a fan of the iPhone. After this, however, I don't know if I'll be getting another. I don't like spending money when I don't need to, especially if it's just making fat cats fatter.
    How to get AppleToCare about you (iOS7 wifi problem solved):
    I recently encountered the now seemingly infamous iOS7 upgrade wifi bug. After upgrading to iOS 7.1.1 my wifi was subsequently knocked out. After reading skimming the forums and trying a few of the suggested work arounds I was still unable to get my wifi working (at all). I decided to wait for the next software update assuming Apple would fix the bug. What can I say? I like to believe people are inherently good and accountable. No such luck. When I went back to the forums for a better understanding of the problem I was (somewhat) surprised to discover the magnitude of the issue. For me, the end result was a new FREE iPhone despite my warranty expiring several months ago.
    Try all of the (reasonable) suggested solutions. They did not work for me but that does not mean they will not work for you - no seriously actually try them:
    I turned off wifi and bluetooth, set the phone to airplane mode, turned it off, left it off for several minutes, turned it back on - Nothing.
    I reset my Wifi Router - Nothing.
    I reset all Settings - Nothing.
    I reset my Network Connection - Nothing.
    I did a Soft Reset - Hold down the power and home buttons simultaneously and do not release until after the screen goes black and the apple logo appears. - Nothing.
    I did a Hard Reset (aka Factory Reset) - BACK UP YOUR PHONE FIRST. I connected to iTunes and performed a backup then hit restore (within iTunes). This can be done directly from your phone but if you're here because you're experiencing wifi issues your phone is probably not backed up to iCloud.
    Genius Bar. BE POLITE but firm and know your stuff. They don't owe you anything. Well Apple kinda does, but the employees in the store didn't break your phone so don't act like they did. At the end of the day Apple wrote a buggy code and isn't acknowledging the problem or compensating it's loyal customers. The only way Apple will be held accountable for leaving so many customers out to dry is if customers demand it. However, the Genius Bar is not the place to take out your rage. When I went into the Genius Bar I explained the issue I was having and the steps I had taken in an attempt to fix it. I let her run all the tests and tricks she wanted (knowing full well they weren't going to work). She politely explained to me that I would need to purchase a new phone. I explained to her that I could not, in good conscious, give a company money to solve a problem that they caused. (Some people are crying conspiracy on the part of Apple to get people to buy new phones but I haven't drank the punch yet. - I only took a sip.) I asked if she could do anything else for me. She told me that AppleCare might be responsive to my issue despite my expired warranty as they are a separate entity from Genius Bar and have more authority to help customers. I (sincerely) thanked her (several times) for helping me and asked if I could speak to a manager just to see if there was anything else they could do in store. She said absolutely and that she would "grab a nice manager". I spoke with the manager and briefly explained the issue. I then explained my issue lies primarily with Apple's business model. I, personally, take excellent care of my devices and expect them to last more than a year. I expect that when I buy a device with a premium reputation and a premium price tag that it should be supported by the company for a reasonable amount of time. The iPhone 4s is still being sold in stores and Apple is already neglecting 4s customers - (WILDLY) unacceptable.  The manager was very nice about it and expressed that I made valid points and my frustration was justified but yet no solution.
    AppleCare. After stopping in the Windows store to check possible new phones I trudged home. (Despite my fortunate result I still have a sour taste in my mouth from Apple's method of forcing customers to spend money unnecessarily on constantly changing but marginally improving products. I'm now seriously considering a Windows tablet to replace my aging MacBook.) Anyway, when I got home I called AppleCare and had a very similar exchange with the associate on the phone as I'd had in the store and was subsequently transferred my to a manager. Again, I was extremely polite to the associate and grateful for the help but made a firm point of dissatisfaction with Apple. When I got on the phone with the manager our exchange was quite short but he acknowledged that because the issues arose from a software update causing a hardware problem Apple would compensate me. (Yes, software can physically affect hardware. The CIA uses code to blow up bomb detonators masked as cell phones. It's dope. There's a TED talk about it.) In the end I got a new iPhone for FREE (with a standard replacement fee - ok Apple you won that round. It's still significantly less money I'd spend on a new phone from Apple or elsewhere).
    Moral of the story: Be polite but demand more from the companies you made (filthy) rich. Companies don't care about their customers as much as they should and we can't sit around and wait for them to behave themselves. We need to demand it (even if it ruins our Sunday afternoons). I'd also like to make it known that several times during these exchanges that I'm probably ditching Apple for good. If you use that approach you should be ready to back it up. I'm probably not going to buy another MacBook as I'm a grown up now doing actual work and Apple's inability to play nice with others makes it really difficult to run much of the software at the level I need. (Programmers, you know what I'm talking about!)  As for phones, I require much less of my phone.  Beyond, you know, using it as an actual phone, I really only use the GPS, music, photos, and web browser so I've always been a fan of the iPhone. After this, however, I don't know if I'll be getting another. I don't like spending money when I don't need to, especially if it's just making fat cats fatter.

    I recently encountered the now seemingly infamous iOS7 upgrade wifi bug. After upgrading to iOS 7.1.1 my wifi was subsequently knocked out. After reading skimming the forums and trying a few of the suggested work arounds I was still unable to get my wifi working (at all). I decided to wait for the next software update assuming Apple would fix the bug. What can I say? I like to believe people are inherently good and accountable. No such luck. When I went back to the forums for a better understanding of the problem I was (somewhat) surprised to discover the magnitude of the issue. For me, the end result was a new FREE iPhone despite my warranty expiring several months ago.
    Try all of the (reasonable) suggested solutions. They did not work for me but that does not mean they will not work for you - no seriously actually try them:
    I turned off wifi and bluetooth, set the phone to airplane mode, turned it off, left it off for several minutes, turned it back on - Nothing.
    I reset my Wifi Router - Nothing.
    I reset all Settings - Nothing.
    I reset my Network Connection - Nothing.
    I did a Soft Reset - Hold down the power and home buttons simultaneously and do not release until after the screen goes black and the apple logo appears. - Nothing.
    I did a Hard Reset (aka Factory Reset) - BACK UP YOUR PHONE FIRST. I connected to iTunes and performed a backup then hit restore (within iTunes). This can be done directly from your phone but if you're here because you're experiencing wifi issues your phone is probably not backed up to iCloud.
    Genius Bar. BE POLITE but firm and know your stuff. They don't owe you anything. Well Apple kinda does, but the employees in the store didn't break your phone so don't act like they did. At the end of the day Apple wrote a buggy code and isn't acknowledging the problem or compensating it's loyal customers. The only way Apple will be held accountable for leaving so many customers out to dry is if customers demand it. However, the Genius Bar is not the place to take out your rage. When I went into the Genius Bar I explained the issue I was having and the steps I had taken in an attempt to fix it. I let her run all the tests and tricks she wanted (knowing full well they weren't going to work). She politely explained to me that I would need to purchase a new phone. I explained to her that I could not, in good conscious, give a company money to solve a problem that they caused. (Some people are crying conspiracy on the part of Apple to get people to buy new phones but I haven't drank the punch yet. - I only took a sip.) I asked if she could do anything else for me. She told me that AppleCare might be responsive to my issue despite my expired warranty as they are a separate entity from Genius Bar and have more authority to help customers. I (sincerely) thanked her (several times) for helping me and asked if I could speak to a manager just to see if there was anything else they could do in store. She said absolutely and that she would "grab a nice manager". I spoke with the manager and briefly explained the issue. I then explained my issue lies primarily with Apple's business model. I, personally, take excellent care of my devices and expect them to last more than a year. I expect that when I buy a device with a premium reputation and a premium price tag that it should be supported by the company for a reasonable amount of time. The iPhone 4s is still being sold in stores and Apple is already neglecting 4s customers - (WILDLY) unacceptable.  The manager was very nice about it and expressed that I made valid points and my frustration was justified but yet no solution.
    AppleCare. After stopping in the Windows store to check possible new phones I trudged home. (Despite my fortunate result I still have a sour taste in my mouth from Apple's method of forcing customers to spend money unnecessarily on constantly changing but marginally improving products. I'm now seriously considering a Windows tablet to replace my aging MacBook.) Anyway, when I got home I called AppleCare and had a very similar exchange with the associate on the phone as I'd had in the store and was subsequently transferred my to a manager. Again, I was extremely polite to the associate and grateful for the help but made a firm point of dissatisfaction with Apple. When I got on the phone with the manager our exchange was quite short but he acknowledged that because the issues arose from a software update causing a hardware problem Apple would compensate me. (Yes, software can physically affect hardware. The CIA uses code to blow up bomb detonators masked as cell phones. It's dope. There's a TED talk about it.) In the end I got a new iPhone for FREE (with a standard replacement fee - ok Apple you won that round. It's still significantly less money I'd spend on a new phone from Apple or elsewhere).
    Moral of the story: Be polite but demand more from the companies you made (filthy) rich. Companies don't care about their customers as much as they should and we can't sit around and wait for them to behave themselves. We need to demand it (even if it ruins our Sunday afternoons). I'd also like to make it known that several times during these exchanges that I'm probably ditching Apple for good. If you use that approach you should be ready to back it up. I'm probably not going to buy another MacBook as I'm a grown up now doing actual work and Apple's inability to play nice with others makes it really difficult to run much of the software at the level I need. (Programmers, you know what I'm talking about!)  As for phones, I require much less of my phone.  Beyond, you know, using it as an actual phone, I really only use the GPS, music, photos, and web browser so I've always been a fan of the iPhone. After this, however, I don't know if I'll be getting another. I don't like spending money when I don't need to, especially if it's just making fat cats fatter.
    How to get AppleToCare about you (iOS7 wifi problem solved):
    I recently encountered the now seemingly infamous iOS7 upgrade wifi bug. After upgrading to iOS 7.1.1 my wifi was subsequently knocked out. After reading skimming the forums and trying a few of the suggested work arounds I was still unable to get my wifi working (at all). I decided to wait for the next software update assuming Apple would fix the bug. What can I say? I like to believe people are inherently good and accountable. No such luck. When I went back to the forums for a better understanding of the problem I was (somewhat) surprised to discover the magnitude of the issue. For me, the end result was a new FREE iPhone despite my warranty expiring several months ago.
    Try all of the (reasonable) suggested solutions. They did not work for me but that does not mean they will not work for you - no seriously actually try them:
    I turned off wifi and bluetooth, set the phone to airplane mode, turned it off, left it off for several minutes, turned it back on - Nothing.
    I reset my Wifi Router - Nothing.
    I reset all Settings - Nothing.
    I reset my Network Connection - Nothing.
    I did a Soft Reset - Hold down the power and home buttons simultaneously and do not release until after the screen goes black and the apple logo appears. - Nothing.
    I did a Hard Reset (aka Factory Reset) - BACK UP YOUR PHONE FIRST. I connected to iTunes and performed a backup then hit restore (within iTunes). This can be done directly from your phone but if you're here because you're experiencing wifi issues your phone is probably not backed up to iCloud.
    Genius Bar. BE POLITE but firm and know your stuff. They don't owe you anything. Well Apple kinda does, but the employees in the store didn't break your phone so don't act like they did. At the end of the day Apple wrote a buggy code and isn't acknowledging the problem or compensating it's loyal customers. The only way Apple will be held accountable for leaving so many customers out to dry is if customers demand it. However, the Genius Bar is not the place to take out your rage. When I went into the Genius Bar I explained the issue I was having and the steps I had taken in an attempt to fix it. I let her run all the tests and tricks she wanted (knowing full well they weren't going to work). She politely explained to me that I would need to purchase a new phone. I explained to her that I could not, in good conscious, give a company money to solve a problem that they caused. (Some people are crying conspiracy on the part of Apple to get people to buy new phones but I haven't drank the punch yet. - I only took a sip.) I asked if she could do anything else for me. She told me that AppleCare might be responsive to my issue despite my expired warranty as they are a separate entity from Genius Bar and have more authority to help customers. I (sincerely) thanked her (several times) for helping me and asked if I could speak to a manager just to see if there was anything else they could do in store. She said absolutely and that she would "grab a nice manager". I spoke with the manager and briefly explained the issue. I then explained my issue lies primarily with Apple's business model. I, personally, take excellent care of my devices and expect them to last more than a year. I expect that when I buy a device with a premium reputation and a premium price tag that it should be supported by the company for a reasonable amount of time. The iPhone 4s is still being sold in stores and Apple is already neglecting 4s customers - (WILDLY) unacceptable.  The manager was very nice about it and expressed that I made valid points and my frustration was justified but yet no solution.
    AppleCare. After stopping in the Windows store to check possible new phones I trudged home. (Despite my fortunate result I still have a sour taste in my mouth from Apple's method of forcing customers to spend money unnecessarily on constantly changing but marginally improving products. I'm now seriously considering a Windows tablet to replace my aging MacBook.) Anyway, when I got home I called AppleCare and had a very similar exchange with the associate on the phone as I'd had in the store and was subsequently transferred my to a manager. Again, I was extremely polite to the associate and grateful for the help but made a firm point of dissatisfaction with Apple. When I got on the phone with the manager our exchange was quite short but he acknowledged that because the issues arose from a software update causing a hardware problem Apple would compensate me. (Yes, software can physically affect hardware. The CIA uses code to blow up bomb detonators masked as cell phones. It's dope. There's a TED talk about it.) In the end I got a new iPhone for FREE (with a standard replacement fee - ok Apple you won that round. It's still significantly less money I'd spend on a new phone from Apple or elsewhere).
    Moral of the story: Be polite but demand more from the companies you made (filthy) rich. Companies don't care about their customers as much as they should and we can't sit around and wait for them to behave themselves. We need to demand it (even if it ruins our Sunday afternoons). I'd also like to make it known that several times during these exchanges that I'm probably ditching Apple for good. If you use that approach you should be ready to back it up. I'm probably not going to buy another MacBook as I'm a grown up now doing actual work and Apple's inability to play nice with others makes it really difficult to run much of the software at the level I need. (Programmers, you know what I'm talking about!)  As for phones, I require much less of my phone.  Beyond, you know, using it as an actual phone, I really only use the GPS, music, photos, and web browser so I've always been a fan of the iPhone. After this, however, I don't know if I'll be getting another. I don't like spending money when I don't need to, especially if it's just making fat cats fatter.

  • I have a new MacAir and don't know how to get info from my USB stick and my SD photo card.  Can anyone help me please?

    I have a new MacBook Air and don't know how to get info from my USB stick and get info from my SD card.  Can anyone help, please?

    Plug the stick and/or card into the appropriate slots on the side of your Air. Do you see icons for the devices appear on the desktop? Click into them to see what files are there.
    Matt

Maybe you are looking for

  • How do I know if version 8.01 was successfully installed?

    I am having the CRASH problem while opening a project.  I downloaded and supposedly installed the update 8.01 but when the program opens it sitll says 8.0. And the CRASH still happens. Windows 7-64 8G RAM Thanks Much

  • Old ibook connected to Airport extreme on Intel iMac looses internet.

    For the third time in a year since I got my new iMac Intel Core Duo machine the wireless connection between it and my old 2001 ibook (with and external USB --afterthemac.com) wireless device has lost the internet connection for the ibook. I am using

  • Child Page of CS5 Template is corrupted?

    New user, just having completed and successfully uploaded first website. Looked great, worked great, even in IE. Then about a week later, when I went to make some edits in Dreamweaver, found that one of the pages now seems not to be using the templat

  • Profit center segment characteristics fileds activation.

    Hi All Where we can activite (t.code or path) Profit center segment fields (charasteristics) while generation of Sales order.

  • Can Chapters be Assigned to Buttons Automatically?

    I shoot and edit weddings. All my Encore projects are very similar but I can't seem to create an Encore template with the same menus and titles. But is there a way to have Encore detect the chapters that I have already set on the timeline and automat