Loosing application attribute in a statefull bsp app

Hello guys,
i have a little problem. I got a statefull bsp app that contain an application attribute that is loose between the oninit and the oninput...any ideas that could solve my problem? Thanx in advance

Hi Mariana,
I got (perhaps ?) a very similar problem just few minutes ago.
In my OnInitialization event handler, I have :
DATA: ta_usr01  TYPE TABLE OF usr01.
SELECT * FROM usr01 UP TO 100 ROWS
         INTO TABLE ta_usr01.
GET REFERENCE OF ta_usr01 INTO ta_data.
where
ta_data is declared as a page attribute TYPE REF TO DATA. 
When I tried to dislay the data in the Layout, I observed in Debud that ta_data was like this :
FREED STACK:{A:2*TYPE=%_T00004S00000072O0000002784}
And then "Eurêka !" 
It is because
ta_data is pointing on a local variable (ta_usr01) which has long gone (since the end of OnInitialization event handler) 
Everything went fine once I had declared ta_usr01 as a Page attribute (which means declared globally)
I guess you experience the same kind of problem.
Best regards,
Guillaume

Similar Messages

  • Trouble changing a class attribute in a STATEFULL bsp app - PLEASE HELP!!!!

    hello, i have some trouble changing the value of a class attribute, in certain point of the execution of a statefull bsp app. The scenario is: the bsp app is on a url iview in a portal; i have some link in the portal, that do a window.open (pop up) of that app. the question is: how can i change the class attribute of the bsp app when i close that pop up?, if when i first click the link that show me the pop up, its doesn't create another instance of the class...i mean it continuing working with the same instance of the url iview in the portal. ANY help it will well received. Thanx in advance

    hello Durairaj...yes indeed in the other thread thats the issue with the portal_version attribute, the person who create the iview dont want to change it...so i try to solve it with something else....thats bring me to another problem (posted in this thread). Now i have a question...in the url iview it calls a template that start the bsp app...i mean is not the url iview who calls the bsp app is a middle template...with this scenario can i pass the parameter sap-sessioncmd=open to the url iview or i have to pass it to the bsp app directly when in the middle template i call it??? another question when i pass that parameter via url, it create another instances (apart) of the class or restart the same instance that the app work with until that moment....tell me more about that parameter coz' i am new in bsp and i need help....i will give a lots of rewards point who help me!!! i promise....i am kind of desperade for sure....  thanx in advance

  • Internal table content not retained in statefull BSP application.

    Hi Forum,
    I have a statefull BSP application with two pages.I fill an internal table ITAB in the OnInputProcessing eventhandler of first page and then transfer this ITAB to second page , but when i navigate back from second page to first page , the internal table ITAB is cleared.I need the data in ITAB when i come back to first page.
    The internal tables that i fill in the OnCreate eventhandler of the first page are intact but this  ITAB that  i fill in OnInputProcessing is cleared.
    I tried using
    runtime->keep_context = 1.
    but it is not helping either...and i have checked the code carefully to ensure that ITAB is not cleared anywhere using CLEAR ITAB.
    ITAB is declared in PAGE ATTRIBUTES using a tabletype.
    What might be the problem?
    Thanks,
    Anubhav.

    Hi Heth,
    I carried out a small test application as follwos:
    1)Filled an internal table ITAB_ZSCMG in OnCreate event of first page.
    2)Filled an internal table ITAB_MATERIALS in OnInputProcessing for the OnClick of button event.
    When my application was stateless the internal table ITAB_ZSCMG was initial in the OnInputProcessing event .
    When i switched to STATEFULL mode , it contained data in the OnInputProcessing .
    3)Crearted one more page SECOND.HTM.
    4)in the OnClick event for button in OnInputProcessing eventhandler i navigated back to FIRST.HTM .
    Found that all the internal tables were initial , although my page was statefull.
    All these ITABs were declared using Page Attributes.
    So i guess , a statefull application just means that DATA is retained between different eventhandlers of the SAME PAGE and not if we navigate from that page....
    Hence in my case i have to transfer the ITAB back to first page again using SERVER SIDE COOKIES..
    Please correct me if my derivations are wrong!!!
    But the question still remains....
    How to retain data after navigation?
    Do we have a solution in BSP or we need to use SET/GET or EXPORT/IMPORT or COOKIES?
    Thanks,
    Anubhav.
    Edited by: Anubhav Jain on Jun 19, 2008 9:04 AM

  • Add EP-userid to BSP app as (URL) parameter

    Hi,
    I've created a default BSP-iView (via com.sap.portal.appintegrator.sap.BSP) and try to pass the EP-userid as an extra parameter, without any result so far. I've checked several SDN posts, but didn't help (or I didn't understand them).
    In the properties of the iView I've tried to edit the following:
    Application Parameters : user=<User.UserID>  or
    Parameters to Pass from Page Request (for URL isolation) : user=<User.UserID>
    I need to pass the EP-userid, because the BSP app. is called with one user (user mapping for a specific Group/Role for the backend system) and is not able to distinguish the logged on EP-user.
    Where did I go wrong?
    Any suggestions how to solve this issue?
    Best regards,
    Mark

    in the application parameter of the BSP iview pass
    userid=<User.LogonUid> or
    userid=<User.UserId>
    and in the BSP application have a page attribute called userid with auto check box checked.
    within BSP application now the variable userid will have portal logged on user id.
    also check this thread
    Disable Variable Screen issue
    Regards
    Raja

  • Sap-syscmd=nocookie and Statefull BSP's - Session timeout

    I have a tricky problem - and I'am hoping for your helpfull input... please..
    I have developed a Statefull BSP application - and this application should be called from a SAP CRM application - and it should be possible to call and execute this aplication in a new session everytime it's called from CRM (a new controller/model instance per call).
    In the CRM application I can define the JavaScript which should be exectued in order to start the external application - and I have used the script window.open('bsp-url) to start my BSP application.
    In my first attempt I ran into the problem that all new windows was started in the same new session - with the consequence that all new windows tried to use the same controller and model instance - leading to inconsistent data...
    Then I read an SDN article about the parameter sap-syscmd=nocookie. With this url parameter it should be possible to force the BSP to be executed in a new session - and it works.... or... a new session is generated and the BSP generates the correct output after the initial call  (and according to SM04 I have a new session). I was quite happy until I pressed a button in my BSP page triggering an HTMLB-event - which lead to the following error: "400 Session timed out - please login again". So it looks like the 1. part is okay with the new session - but the response generated and sent to the browser cannot frind it's way bay to the right session in SAP... what did I do wrong???

    I have already tried with sap-sessioncmd=open - and the first time the call is made from CRM a new sesion is created and the BSP is intialized. But if I go back to the CRM application again (without closing the BSP window) and hits the button again - then a new window is created but no new session meaning that the underlying BSP is referenced in both windows - and producing wrong results (they both refer to the same instance of the BSP). When I use sap-syscmd=nocookie - I get a new window and a new session everytime I hit the button in CRM, but for some reason the page-output generated cannot find it's way back to this session afterwards...

  • Will i loose all my music and pictures and apps if i use a different computer

    will i loose all my music and pictures and apps if i use a different computer?

    In order to use a different computer than what the device was originally synced with, you would need to use a 3rd party application to back the information up, prior to syncing with iTunes.
    If you try to sync on a different computer than usual, you will get a message stating that it will wipe all data out and start from scratch... and it will erase everything.

  • "Application module  is not a root app module but has no parent"

    This is to follow up on my answered question on rootAN substitution
    Re: "login session has expired" after am substitution
    I am working on an OAF extension.
    I have a new LOV region. I extended (to be substituted) the seeded VO, call it xxVO. And I have three custom methods using this xxVO that are called from processFormRequest of my controller which extends the seeded controller.
    So putting these methods in rootAM and AM substitution didn't work as some folks pointed out.
    So I created xxAM (extends root AM), put xxVO in xxAM’s data model and put my methods in xxAM, set this xxAM as AMDefinition for my custom LOV region.
    In my controller I do
    OAApplicationModule xxAM = new xxprg.oracle.apps.icx.por.req.server.xxprgRequisitionAMImpl();
    But I am getting
    => oracle.apps.fnd.framework.OAException: oracle.jbo.InvalidOwnerException: JBO-25301: Application module is not a root app module but has no parent
    at
    xxAM.invokeMethod("handleChangeRequester", parameters);
    I found a few posts on the same topic. One advise was to not instantiate ‘new’ AM but do something like this
    Xo2cAcctOviewExtAMImpl amExt = (Xo2cAcctOviewExtAMImpl )pageContext.getApplicationModule(webBean);
    In this example I am confused about the fact that ‘getApplicationModule(webBean);’ which is used in the signature of the processFormRequest will return a ‘rootAM’, is this correct?
    There was another workaround mentioned in other posts to not use xxAM at all but build a class to mimic an xxAM passing all needed values that custom methods require. In which case how(or better where) do I instantiate xxVO since now xxVO won’t be part of any AM data model?
    Can someone please clarify.
    Thank you
    Anatoliy

    Pratap,
    Thank you for the response.
    The reason I need to use new xxCO on the page is this.
    Seeded page CheckoutLinesPG.
    It has advanced table on it where every column has it's one external region.
    The new LOV region xxRN is put on a page also under this table new column.
    1. When a requester (seeded region on the seeded page) is changed then my xxLOV should reflect the change and be populated according to what is selected in the Requester LOV.
    2. When one-time address is added (another seeded region on the seeded page) my xxLOV should be disabled, when one time address taken out - enabled again.
    So xxCO should apply to the whole page.
    The VO behind advanced table PoRequisitionLinesVO is extended with 2 additional attributes and will substitute, the new xxVO is under xxAM data model.
    All works fine with my methods in the seeded RequisitionAM which I get a handle to in the xxCO. But I don;t know how to get the handle to the xxAM if I put my methods there.
    Thanks,
    Anatoliy
    P.S. just fyi - I know it is not the recommended approach but what I did for now I put all calls into the controller - in the controller I can get a handle to root AM, through that I am getting a handle to xxVO which (!) is substituted during runtime with my xxVO. But if you can figure out how to get a handle to xxAM in my case it will be great.
    Edited by: asmirnov on Mar 24, 2009 2:04 PM

  • ***How to call BSP App when custom button event fired from toolbar group***

    Dear PCUI Experts,
       I have created one custom button for the transaction CRMD_BUS2000116.
    And my urgnet requirement is , I need to call BSP application which is used to   take data from custom fields and stores into BP table.
    How to call the BSP App. when i clicks on the button.
    Please help me..
    I will reward with great points.
    Regards,
    Stella.

    Hi Purushothaman,
                                 I have created a button in CRRM_ACCOUNT application.
    Now i want to call  a custom bsp application by clicking on that button.I have followed step given in this blog
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1646. [original link is broken] [original link is broken] [original link is broken] [original link is broken]
    But the event is not triggered.Do I have to create an iview for my bsp application?
    How to do that?Plz help.
    Regards,
    Ruby.

  • BSP App URL

    I have one bsp application. the app consists of one initial page(entry point) and any other pages.
    I wanna know the initial page's url as like 'http://xxx.xxx.xxxx:50000/sap/bc/bsp/sap/zhr_hap_018/index.htm' to call it from abap report program.
    I can't code the fixed url on the report.
    as you know the url(domain and port etc) is diffrent where the bsp app runs on(DEV, QAS and PRD).
    how can i get the information(domain and port etc)?
    i think there are function modules or util classes...
    plz. help..

    use the following method to build the url
    DATA: url1 TYPE string .
         page TYPE string .
        DATA:  params TYPE tihttpnvp.
    page = '<targetpage>.htm' .
    cl_http_ext_webapp=>create_url_for_bsp_application
          EXPORTING
            bsp_application      = '<BSP application name>'
            bsp_start_page       = page
            bsp_start_parameters = params
          IMPORTING
            local_url            = url1.
    params can be filled with any parameter you want to pass to that page.
    Hope this helps.
    Regards
    Raja

  • HOWTO: Specify the parent application attribute during deployment

    Hi all,
    I wonder how can I specify the "parent application" attribute in order to deploy my application correctly
    (I am trying to deploy a BPEL application and I am needing to specify the "-parent orabpel" option in the admin.jar execution... but I didn't also find how to solve this problem in a general way...)
    Thank you in advance for your help

    I am very sorry with you, but I decided to put this question here, because the problem IS NOT BPEL related... (as I mentioned in my original post)
    If I build an application... for example "App1", and I deployed in the Oracle AS 10g, and then I want to deploy from my JDeveloper the "App2", but I want to specify that "App1" is parent application of "App2".... How can I do it from JDeveloper without using the admin.jar utility or using the EM console from my App Server?
    In my humble opinion (I am not an ACE member)... is a general problem of the IDE more than specific to BPEL
    Thank you again if someone can give me a real clue on this issue...

  • I'm loosing too much battery life. All apps are closed.

    Hi,
    I'm loosing too much battery life and all apps are closed. Can you help?
    Thank you!

    Hello, mcnairkp. 
    Thank you for visiting Apple Support Communities.
    Battery life can be difficult to troubleshoot as multiple factors contribute to how long a charge can last.  Graphic intensive applications, display brightness and data connectivity are just a few of the items that can cause the battery life to decrease rapidly.  I would need to know a little more information about your usage patterns to give you and idea on how to maximize battery life.  However, here are some tips on how to adjust settings and charge the device that may help.
    iPhone and iPod touch: Charging the battery
    http://support.apple.com/kb/ht1476
    About Batteries
    About iPhone Batteries
    If you feel that you need assistance with the battery concern, you can always reach out to us via the link below.
    Contact Apple
    Cheers,
    Jason H.

  • Process:         Cubase LE AI Elements 7 [1740] Path:            /Applications/Cubase LE AI Elements 7.app/Contents/MacOS/Cubase LE AI Elements 7 Identifier:      com.steinberg.cubase.soft Version:         7.0.6.2231 (7.0.6.2231) Code Type:       X86 (Nat

    Help me, I'm not open in Cubase, i have alwais this message:(
    Process:         Cubase LE AI Elements 7 [1740]
    Path:            /Applications/Cubase LE AI Elements 7.app/Contents/MacOS/Cubase LE AI Elements 7
    Identifier:      com.steinberg.cubase.soft
    Version:         7.0.6.2231 (7.0.6.2231)
    Code Type:       X86 (Native)
    Parent Process:  launchd [220]
    Date/Time:       2013-12-30 19:22:49.157 +0000
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          84787 sec
    Crashes Since Last Report:           17
    Per-App Interval Since Last Report:  450 sec
    Per-App Crashes Since Last Report:   5
    Anonymous UUID:                      32EE9DCB-AE98-4D3C-A269-26906BFD0309
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    Crashed Thread:  27
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x980daafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x980db267 mach_msg + 68
    2   libSystem.B.dylib                       0x980ef20a thread_info + 143
    3   ...lodyneEssentialRewireDevice          0x2e204771 GNThread::getThreadPriority() + 65
    4   ...lodyneEssentialRewireDevice          0x2e204ad0 GNThread::setThreadPriority(int) + 178
    5   ...lodyneEssentialRewireDevice          0x2e222d44 GNMessagePort::registerMessagePortWithName(GNString*, GNData* (*)(GNMessagePort*, GNData*), int, int, GNDictionary*) + 304
    6   ...lodyneEssentialRewireDevice          0x2e1c4dbe GNReWire2AudioDeviceHost::create() + 172
    7   ...lodyneEssentialRewireDevice          0x2e1c2f3f RWDEFOpenDevice + 89
    8   ...opellerheads.rewire.library          0x1dbc87ec 0x1dbab000 + 120812
    9   ...opellerheads.rewire.library          0x1dbc8a06 0x1dbab000 + 121350
    10  ...opellerheads.rewire.library          0x1dbce88b RWIsReWireMixerAppRunningImp + 6811
    11  ...opellerheads.rewire.library          0x1dbcc9dd RWM2OpenDeviceImp + 77
    12  com.steinberg.cubase.soft               0x00964e2f 0x1000 + 9846319
    13  com.steinberg.cubase.soft               0x0022dd50 0x1000 + 2280784
    14  com.steinberg.cubase.soft               0x00587e68 0x1000 + 5795432
    15  com.steinberg.cubase.soft               0x00abc045 0x1000 + 11251781
    16  com.steinberg.cubase.soft               0x0112eb8e CzplfFFT_If::~CzplfFFT_If() + 828302
    17  com.steinberg.cubase.soft               0x00abc626 0x1000 + 11253286
    18  com.steinberg.cubase.soft               0x00dee454 0x1000 + 14603348
    19  com.steinberg.cubase.soft               0x000029a5 0x1000 + 6565
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x98101382 kevent + 10
    1   libSystem.B.dylib                       0x98101a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x98100f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x98100cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x98100781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x981005c6 start_wqthread + 30
    Thread 2:  CRASH THREAD
    0   libSystem.B.dylib                       0x980dab4e semaphore_timedwait_trap + 10
    1   com.steinberg.cubase.soft               0x014890f2 CzplfFFT_If::~CzplfFFT_If() + 4344050
    2   com.steinberg.cubase.soft               0x0059d332 0x1000 + 5882674
    3   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 3:
    0   libSystem.B.dylib                       0x980dab5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x981086e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x981375a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x900067a6 CVDisplayLink::waitUntil(unsigned long long) + 386
    4   com.apple.CoreVideo                     0x900055eb CVDisplayLink::runIOThread() + 741
    5   com.apple.CoreVideo                     0x900052ea startIOThread(void*) + 156
    6   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    7   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x98108aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x981349c5 nanosleep$UNIX2003 + 188
    2   libSystem.B.dylib                       0x98134903 usleep$UNIX2003 + 61
    3   com.apple.AppKit                        0x937cde2d -[NSUIHeartBeat _heartBeatThread:] + 2039
    4   com.apple.Foundation                    0x96b154c4 -[NSThread main] + 45
    5   com.apple.Foundation                    0x96b15474 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    7   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x98100412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x981009a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x981005c6 start_wqthread + 30
    Thread 6:
    0   libSystem.B.dylib                       0x980daafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x980db267 mach_msg + 68
    2   com.apple.CoreFoundation                0x9250c2df __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x9250b3c4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x9250b1f1 CFRunLoopRunInMode + 97
    5   com.apple.audio.CoreAudio               0x943af96c HALRunLoop::OwnThread(void*) + 162
    6   com.apple.audio.CoreAudio               0x9439b488 CAPThread::Entry(CAPThread*) + 140
    7   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    8   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x980daafa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x980db267 mach_msg + 68
    2   com.apple.audio.midi.CoreMIDI           0x032cc0c1 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3   com.apple.audio.midi.CoreMIDI           0x032ea97a MIDIProcess::RunMIDIInThread() + 150
    4   com.apple.audio.midi.CoreMIDI           0x032cd2d9 XThread::RunHelper(void*) + 17
    5   com.apple.audio.midi.CoreMIDI           0x032ccca6 CAPThread::Entry(CAPThread*) + 96
    6   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    7   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 8:  Video Diascope
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x253aa61a ownGetReg + 1055194
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 9:  Remote Receive
    0   libSystem.B.dylib                       0x981a143a sem_wait$UNIX2003 + 10
    1   com.steinberg.videoengine               0x253713c4 ownGetReg + 821124
    2   com.steinberg.videoengine               0x2536e7b8 ownGetReg + 809848
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 10:  Remote Call
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x253753a0 ownGetReg + 837472
    3   com.steinberg.videoengine               0x253754e4 ownGetReg + 837796
    4   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 11:  Remote TimeOut
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x25376057 ownGetReg + 840727
    3   com.steinberg.videoengine               0x253760f4 ownGetReg + 840884
    4   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 12:
    0   libSystem.B.dylib                       0x980dac0e mach_wait_until + 10
    1   ...ple.CoreServices.CarbonCore          0x909be7f0 MPDelayUntil + 43
    2   ...ple.CoreServices.CarbonCore          0x909ce226 Delay + 107
    3   ...opellerheads.rewire.library          0x1dbd5274 RWIsReWireMixerAppRunningImp + 33924
    4   ...opellerheads.rewire.library          0x1dbe3208 RWIsReWireMixerAppRunningImp + 91160
    5   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    6   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 13:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 14:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 15:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 16:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 17:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 18:  VST Loader
    0   libSystem.B.dylib                       0x980dab42 semaphore_wait_signal_trap + 10
    1   com.steinberg.cubase.soft               0x0148842d CzplfFFT_If::~CzplfFFT_If() + 4340781
    2   com.steinberg.cubase.soft               0x013c7042 CzplfFFT_If::~CzplfFFT_If() + 3549250
    3   com.steinberg.cubase.soft               0x00ae687a 0x1000 + 11425914
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 19:  VST Preloader
    0   libSystem.B.dylib                       0x980dab4e semaphore_timedwait_trap + 10
    1   com.steinberg.cubase.soft               0x014890f2 CzplfFFT_If::~CzplfFFT_If() + 4344050
    2   com.steinberg.cubase.soft               0x01488fbc CzplfFFT_If::~CzplfFFT_If() + 4343740
    3   com.steinberg.cubase.soft               0x00ae7520 0x1000 + 11429152
    4   com.steinberg.cubase.soft               0x00ae6bbc 0x1000 + 11426748
    5   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    6   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 20:  Baios Processing Thread
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.baios                     0x1cadd6d8 bundleExit + 147688
    2   com.steinberg.baios                     0x1cac6423 bundleExit + 52787
    3   com.steinberg.baios                     0x1cadc624 bundleExit + 143412
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 21:  Timer
    0   libSystem.B.dylib                       0x980dab4e semaphore_timedwait_trap + 10
    1   com.steinberg.cubase.soft               0x014890f2 CzplfFFT_If::~CzplfFFT_If() + 4344050
    2   com.steinberg.cubase.soft               0x01488fbc CzplfFFT_If::~CzplfFFT_If() + 4343740
    3   com.steinberg.cubase.soft               0x008ca6eb 0x1000 + 9213675
    4   com.steinberg.cubase.soft               0x014880a4 CzplfFFT_If::~CzplfFFT_If() + 4339876
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 22:  Remote Receive
    0   libSystem.B.dylib                       0x981a143a sem_wait$UNIX2003 + 10
    1   com.steinberg.videoengine               0x253713c4 ownGetReg + 821124
    2   com.steinberg.videoengine               0x2536e7b8 ownGetReg + 809848
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 23:  Remote Call
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x253753a0 ownGetReg + 837472
    3   com.steinberg.videoengine               0x253754e4 ownGetReg + 837796
    4   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 24:  Remote TimeOut
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x25376057 ownGetReg + 840727
    3   com.steinberg.videoengine               0x253760f4 ownGetReg + 840884
    4   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    5   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 25:  Video Playback
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x2526b1c0 bundleExit + 9456
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 26:  Video Buffer
    0   libSystem.B.dylib                       0x980dab36 semaphore_wait_trap + 10
    1   com.steinberg.videoengine               0x2529c978 bundleExit + 212136
    2   com.steinberg.videoengine               0x2526b1c0 bundleExit + 9456
    3   com.steinberg.videoengine               0x2529b8c4 bundleExit + 207860
    4   libSystem.B.dylib                       0x981d0a6a _pthread_body + 27
    Thread 27 Crashed:
    0   ???                                     0000000000 0 + 0
    1   ...lodyneEssentialRewireDevice          0x2e2048ea GNThreadHandler(void*) + 94
    2   libSystem.B.dylib                       0x98108259 _pthread_start + 345
    3   libSystem.B.dylib                       0x981080de thread_start + 34
    Thread 27 crashed with X86 Thread State (32-bit):
      eax: 0x208ba6e0  ebx: 0x2e222988  ecx: 0x208ba664  edx: 0x208ba520
      edi: 0x208ba660  esi: 0xb0519000  ebp: 0xb0518f48  esp: 0xb0518f1c
       ss: 0x0000001f  efl: 0x00010206  eip: 0x00000000   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000000
    Binary Images:
        0x1000 -  0x2fefff7 +com.steinberg.cubase.soft 7.0.6.2231 (7.0.6.2231) <E343EF35-055F-32B9-82C6-32372659F679> /Applications/Cubase LE AI Elements 7.app/Contents/MacOS/Cubase LE AI Elements 7
    0x32bc000 -  0x3308ffb  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <FB4D4B64-6ABB-679E-3AA8-21DE9062B4C1> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1570a000 - 0x15786ff3 +com.eLicenser.POSAccess-DLL ??? (1.4.0.9) <9FEB2066-B500-305F-8C6C-182F3BD62666> /Library/Application Support/eLicenser/pos/Synsoacc.bundle/Contents/MacOS/Synsoacc
    0x193a8000 - 0x193ccfe7  GLRendererFloat ??? (???) <F19DDBE8-1DF6-6618-F554-0E81ED85CE67> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x19bfc000 - 0x19d75ff7  GLEngine ??? (???) <76C922AA-A4A7-2835-537B-17F316AD95F6> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x19da7000 - 0x1a1acfe7  libclh.dylib 3.1.1 C  (3.1.1) <15AD52DD-FC3F-305E-5C31-699329E8FDE1> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x1a943000 - 0x1a95cffb +com.steinberg.CoreAudio2ASIO 2.2.7.16 (2.2.7.16) <AE0AA1C2-C2D7-3121-BEEE-6EDAF8C98492> /Applications/Cubase LE AI Elements 7.app/Contents/Components/coreaudio2asio.bundle/Contents/MacOS/coreaudio2asio
    0x1a967000 - 0x1a96bff3  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <E9CB576C-283B-1DB2-0C69-E7C914BD7922> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1a970000 - 0x1a976ff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <38E3C1A4-84E4-C105-B55F-8FC4C154036D> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1a97b000 - 0x1a999fc3 +com.digidesign.digidesign.DigiCoreAudioPlugIn 7.3 (7.3f117) /Library/Audio/Plug-Ins/HAL/Digidesign CoreAudio.plugin/Contents/MacOS/Digidesign CoreAudio
    0x1adf8000 - 0x1ae01ff7  jp.co.yamaha.YamahaSteinbergUSBBulk 1.7.0 (1.7.0f1) <8E56A5E8-AFBC-E239-555A-9FA67C4B7777> /System/Library/Extensions/YamahaSteinbergUSBAudio.kext/Contents/PlugIns/Yamaha SteinbergUSBBulk.bundle/Contents/MacOS/YamahaSteinbergUSBBulk
    0x1cab1000 - 0x1cb4dff7 +com.steinberg.baios 2.2.2.320 (2.2.2.320) <FF71ACEC-5E0C-33C6-AA56-EE603BA9D3D0> /Applications/Cubase LE AI Elements 7.app/Contents/Components/baios.bundle/Contents/MacOS/baios
    0x1dbab000 - 0x1dc32fff +se.propellerheads.rewire.library 1.8.2 build 127 (1.8.2) <17CB1860-29BA-0AA9-332A-E8457724A75B> /Library/Application Support/Propellerhead Software/ReWire/ReWire.bundle/Contents/MacOS/ReWire
    0x1e700000 - 0x1e777ffb +com.steinberg.VSTPlugManager 2.2.3.117 (2.2.3.117) <18FF6ADF-61BF-20D5-AA6E-893C25D008A0> /Applications/Cubase LE AI Elements 7.app/Contents/Components/VSTPlugManager.bundle/Contents/MacOS/VSTPlugManager
    0x25267000 - 0x254e2ffb +com.steinberg.videoengine 1.4.6.806 (1.4.6.806) <FCADB1B7-08AA-328C-A7E9-F0FC0DC6A4A9> /Applications/Cubase LE AI Elements 7.app/Contents/Components/videoengine.bundle/Contents/MacOS/videoengine
    0x2cf99000 - 0x2ddf1fe3 +com.steinberg.vst3.pluginset.cubase 4.0.6.206 (4.0.6.206) <A65DBABC-9264-33E1-A96E-01E0F9656DE6> /Applications/Cubase LE AI Elements 7.app/Contents/VST3/Cubase LE AI Elements Plug-in Set.vst3/Contents/MacOS/Cubase LE AI Elements Plug-in Set
    0x2e1c1000 - 0x2e25fff7 +com.celemony.MelodyneEssentialRewireDevice 1.5.3.0 (1.5.3.0) <2CDBD471-D01E-4AFE-A1CE-C3BBB7D7FFDD> /Library/Application Support/Propellerhead Software/ReWire/MelodyneEssentialReWireDevice.plugin/Contents/MacOS/MelodyneEss entialRewireDevice
    0x40000000 - 0x40029ff3 +com.yamaha.asiosetup_ysdriver_extension_bundle 1.2.2 (1.2.2.9) <63ACEEDC-A917-9B20-BEF5-59BBEA089EC0> /Library/Application Support/Steinberg/Components/asiosetup_ysdriver_extension.bundle/Contents/MacOS /asiosetup_ysdriver_extension
    0x8f0c6000 - 0x8f811fff  com.apple.GeForceGLDriver 1.6.36 (6.3.6) <3BB341B6-11A7-38AD-10A3-F89506FD40D4> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0x90003000 - 0x90022ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90023000 - 0x90103fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x90104000 - 0x901acffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x901cf000 - 0x901cfff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x901d0000 - 0x901d0ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x901d1000 - 0x901d4ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x901d5000 - 0x905ebff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x905f7000 - 0x9061fff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
    0x9067b000 - 0x9067cff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9067d000 - 0x90718fe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90719000 - 0x90725ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x90888000 - 0x9089cfe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x908ef000 - 0x908f3ff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x908f4000 - 0x90c14ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90e1f000 - 0x90e31ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90e32000 - 0x90e6fff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90e70000 - 0x90f72fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <EB34F049-D9E1-BF19-CF03-B26A0352D40C> /usr/lib/libcrypto.0.9.8.dylib
    0x90f73000 - 0x9126dfef  com.apple.QuickTime 7.6.6 (1800) <D3538A45-5F4B-262A-06AB-64C1EBAC4A33> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x912ce000 - 0x912e3fff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x912ec000 - 0x9130efef  com.apple.DirectoryService.Framework 3.6 (621.16) <5566E769-6459-78A7-DD2C-1D3068BD3932> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9130f000 - 0x91330fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91331000 - 0x914f4feb  com.apple.ImageIO.framework 3.0.6 (3.0.6) <AE641FAD-DF38-AE31-B45B-85AEE7AF3A45> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x914f5000 - 0x914f8fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x914f9000 - 0x9175fff7  com.apple.security 6.1.2 (55002) <E88E133F-5FB3-446F-B753-2B8AD577B46A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91760000 - 0x91acbff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x91b05000 - 0x91b85feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91bc5000 - 0x91ee9fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x91ef0000 - 0x91f2dff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91fce000 - 0x92012fe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x92013000 - 0x924ceff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x924cf000 - 0x9264afe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x92685000 - 0x92693fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x92e0f000 - 0x92e2bfe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92edd000 - 0x92eebff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x92eec000 - 0x92ef0ff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92f02000 - 0x92f03ff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x92f04000 - 0x92f18ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x92fba000 - 0x93035fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93061000 - 0x9316dfe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x932d0000 - 0x93389fe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x933ee000 - 0x93429ffb  libFontRegistry.dylib ??? (???) <19ED5DE0-D3AF-B229-9193-35D58FE377E5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9342a000 - 0x93470ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x93471000 - 0x93509fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93599000 - 0x9361bffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9361c000 - 0x93effff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93f00000 - 0x9402dffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9402e000 - 0x9406fff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94070000 - 0x9408ffe3  libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x94273000 - 0x94291fe7  libPng.dylib ??? (???) <6C0B95D7-9634-E044-0B79-F1DD56961C33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x942cd000 - 0x9437afe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x9437b000 - 0x943f5fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x944b9000 - 0x944bcff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94744000 - 0x94744ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x94745000 - 0x94776ff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94777000 - 0x947aaff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x947ab000 - 0x947b6ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947b7000 - 0x947b7ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x947cb000 - 0x947d8ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x947d9000 - 0x94c2afef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94c3c000 - 0x94c40ff7  libGIF.dylib ??? (???) <2251F789-B187-0837-6E38-A0E5C7C4FA3C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x94cfc000 - 0x94d66fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94d67000 - 0x94dc4ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94dcd000 - 0x94dd6ff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x94dd7000 - 0x94ea8fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x94ea9000 - 0x94fd2fe7  com.apple.WebKit 6534.59 (6534.59.10) <73348DE8-9C7D-3BD9-8E9D-86E5BE67B1D1> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x96554000 - 0x96596ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x967be000 - 0x96811ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x96812000 - 0x96862fe7  libTIFF.dylib ??? (???) <AB182CEC-188A-F2BC-21E1-0059FD3B2598> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96863000 - 0x9686dffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9686e000 - 0x96892ff7  libJPEG.dylib ??? (???) <50E17B4D-63D6-24D3-702F-6A6E912A55EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96a30000 - 0x96aecfff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96aed000 - 0x96afeff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x96aff000 - 0x96d70fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x96da7000 - 0x97596557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x975dc000 - 0x975deff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x975ea000 - 0x97624ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
    0x97741000 - 0x9781bfff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9781c000 - 0x9781cff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x97985000 - 0x979d2feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x97ccd000 - 0x97e4ffe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <60FF302E-5FAE-749B-BC70-0496DC2FBF2D> /usr/lib/libicucore.A.dylib
    0x97e50000 - 0x97eb4ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97eb5000 - 0x97fb5fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
    0x97fb6000 - 0x98062fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x98063000 - 0x98069fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9807d000 - 0x980cdff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x980da000 - 0x98281ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x98282000 - 0x982e3fe7  com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x982eb000 - 0x9832fff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x983ee000 - 0x98531fef  com.apple.QTKit 7.7 (1800) <9DD27495-3020-0928-B3F2-D418C336E163> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x98627000 - 0x9864dffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x9864e000 - 0x98a83ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x98a84000 - 0x98a84ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98a85000 - 0x98a8bfe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x98a8c000 - 0x98d39fff  com.apple.JavaScriptCore 6534.59 (6534.59.11) <7F623AA5-A11B-4C26-D2FD-EB5B9DE73F85> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x98d3a000 - 0x98d3dff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x98d3e000 - 0x98d3eff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98d3f000 - 0x98ddcfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x98ddd000 - 0x98de8ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98dec000 - 0x98e2fff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x98e8c000 - 0x98e96fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x98e97000 - 0x98ecafff  libTrueTypeScaler.dylib ??? (???) <8ADB7D19-413E-4499-C874-13C383F97685> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x98ed8000 - 0x98edaff7  libRadiance.dylib ??? (???) <090420B3-CB65-9F7B-5349-D42F2F9693B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x98feb000 - 0x98ffbff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x98ffc000 - 0x99001ff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x99002000 - 0x99009ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9900a000 - 0x99051ffb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x996ba000 - 0x99768ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x997a0000 - 0x9986bfef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x9986c000 - 0x9a5e4fe7  com.apple.WebCore 6534.59 (6534.59.6) <5C71C61C-0657-1B0E-397F-4D0A81872C93> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x9a674000 - 0x9a6e3ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9a6e4000 - 0x9a704fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
    0x9a77f000 - 0x9a8bcfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9a8bd000 - 0x9a900ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9a901000 - 0x9aa2ffe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9aa3e000 - 0x9aad0fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9ab1a000 - 0x9ab1aff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9ab1b000 - 0x9ab33ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9ab34000 - 0x9abecfeb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,4, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.49f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: TOSHIBA MK3255GSXF, 232,89 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868, 71,3 MB
    USB Device: Steinberg UR22, 0x0499  (Yamaha Corporation), 0x1509, 0x24100000 / 3
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 3

    Please help me my icloud is
    Forget password
    Activate iphone
    this iphone is currently linked to an apple id
    MD298AE/A    iphone 5 white 16GB
    Designed by Apple in Califomia Assembled in China
    Other items as marked thereon Model A1429
    (1P) part No :MD298AE/A
    UPC
    8 8590963648
    IMEI/MEID 01**********450
    (S) Serial No. F2*******TWF
    TRA ID : 0016422/08
    TA: ER0096265/12    03/2013       CE0682!
    <Personal Information Edited by Host>

  • Since i updated my iphone to ios7, i can no longer download applications and also cannot update my apps. what happened? there is an alert popping and it tells that i should switch to Philippine store.

    since i updated my iphone to ios7, i can no longer download applications and also cannot update my apps. what happened? there is an alert popping and it tells that i should switch to Philippine store.

    Hi, sallymaesmag. 
    Thank you for visiting Apple Support Communities.
    If you are in the Philippines, check to see if the country is changed in the iTunes Store settings on the iOS device.  These steps will show you how to change the preference.
    Change your iTunes Store country
    Sign in to the account for the iTunes Store region you'd like to use. TapSettings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region.
    Follow the onscreen process to change your region, agree to the terms and conditions for the region if necessary, and then change your billing information.
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/HT1311
    Once you make the change attempt to download applications again.
    Jason H.

  • Every time I try to download an application to my mac from the app store I get an unknown error message

    Every time I try to download an application to my mac from the app store I get an unknown error message. I can't update any apps either

    Other browsers that you can look at:
    * http://caminobrowser.org/download/releases/
    * [http://en.wikipedia.org/wiki/ICab iCab]: http://www.icab.de/
    * http://www.seamonkey-project.org/releases/seamonkey1.1.19

  • Did download OS X Mountain Lion and see the features in my applications, but not reflecting in my APPS purchases.

    did download OS X Mountain Lion and see the features in my applications, but not reflecting in my APPS purchases.
    also this takes huge amount of time, almost 10 hours to download, even using 3G Net connection.

    Hi kiwirudy,
    I've had the same problem more than once since I started trying to download my 14 April purchase of OS X Mountain Lion.
    I found a property list called manifest.plist in my ~/Library/Application Support/AppStore folder which had a Boolean property called failed checked. I unchecked it and afterwards I was able to resume my download.
    Here are some steps I've found useful:
    Close the Mac App Store.
    make a copy of the  ~/Library/Application Support/AppStore folder. For some strange reason the Mac App Store likes to just delete it in some circumstances, which will mean that one has to start one's download again from the very beginning.
    Double click on the manifest.plist in one's ~/Library/Application Support/AppStore folder.
    This should open it in Property List Editor.
    Expand all the nodes (holding down the alt key and clicking on the highest collapsed node should do it.
    Find a key called failed of type Boolean and uncheck it.
    Save the manifest.plist and close it.
    Open the Mac App Store.
    The red message "an error has occured" should now be gone and one should be able to resume one's download.
    In the event that the ~/Library/Application Support/AppStore folder gets deleted:
    start the download again (it will start from the beginning), pause it and close the Mac App Store.
    copy your backup copy of the pkg file back to its sub-folder (it's a numbered folder in the ~/Library/Application Support/AppStore folder).
    Open the Mac App Store and resume your download.
    It should continue from where it left off.
    This has worked for me so far. I'm holding my breath. Don't know if I'll still be alive when it's finished.
    Regards
    Nic
    Message was edited by: n c h

Maybe you are looking for

  • Pci slot x1 not detecting card

    Hi I have An msi gaming 3 mobo. I've recently purchaced a pci e x1 sata controller (jmicron) to solve a incopatbity with my ssd if I install it to the first pcie x1 slot it won't show in the device manager in win7. So I installed it to the pcie x8 sl

  • File Sender Adapter with FTP protocol

    Hi, I implementet a file sender adapter with FTP protocol. There is a problem: the sender processes the files even if they're in use by another application. I.E. If another application put files (via ftp) in the sender work directory (that is on ftp)

  • MacBook Pro Touchpad/Volume problem

    Hello all, I've just upgraded to a MacBook Pro and Logic Pro 9 and I'm having some problems with track volumes changing when I swipe the touchpad accidentally. Does anyone know how to turn that function off? Thanks in advance!

  • Grouping of tax according to item level.

    Hi, Can any body help me how to  group the  items in row level and get the summary of Tax in PLD's Regards, Ruheena Tasneem

  • Dedicated vs Shared Question

    I am trying to understand if my DB is running dedicated or shared. I have read several posts here but some of the information is contradicting each other on my server. This is my analysis so far and it leads me to believe that I am running in dedicat