Existing applications vs. "Universal" one...

I currntly have many of the apple applications install on my iBook as well as many 3rd party applications. Will I have to convert all of them to their corresponding "Universal" application? If I don't, will they run slower?
I just ordered a 2GH MBP, can't wait!
-Jeff in NYC

OK,
Unfortunately you yourself won't be able to convert them, simply install the latest versions (If that was what you meant then apologies).
All the Apple apps (apart from the Pro ones) are now Universal, so thats not a problem.
Also, a large number of the 3rd party apps are now Universal, but not all of them. If want a full rundown of the Universal apps, take a look here:
http://guide.apple.com/universal/
That should help you out!!
Regards
Tom Fall

Similar Messages

  • How to move an existing Application/Package Deployment from one collection to another

    We'd like to move an Application Deployment from one collection of devices to another. Instead of just creating a new deployment (which would make the app try to reinstall) we'd like to move the existing deployment.
    Any way to do this with PowerShell?

    Creating a new deployment won't make an app try to reinstall at all. That's the whole point of the Detection method.
    For packages, clients keep track of what they've run before so a new deployment won't cause it to run again unless the program is set for it to run again.
    Ultimately, you cannot change the collection targeted by a deployment as this violates a f underlying assumptions and messes up compliance/reporting for that deployment. You need to create a new deployment which as pointed out has no down-side.
    Jason | http://blog.configmgrftw.com

  • Switch to existed application instead of open a new one on Cinnamon

    Hi all,
    I am currently using Cinnamon as my desktop environment in Arch.
    Before that I used Unity on Ubuntu. Unity is an awesome thing.  One feature I liked most is that when you press "Super+1,2...", you can switch the corresponding application on the launcher very quickly(Just like you are using shortcuts on the Windows launcher). Unless the application is not started, the shortcut will start a new one.
    On Cinnamon, I bind some keys (like Super + 1,2...) in system settings (Cinnamon System Settings -> Keyboard -> Keyboard Shortcuts -> Custom Shortcuts) to start my applications. But I can't get the effect as I described above. When I just want to switch an existed one, the keys will still launch a new one.(Of course, obviously according to my setting).
    So my question is: Can I bind some keys to "Open or Switch to existed application" like it on Unity or Windows?
    Very grateful for any hints!
    Last edited by isolet (2013-10-26 04:21:53)

    clfarron4 wrote:
    Hi, I don't think there is a way currently do the Unity feature that you are asking for on Cinnamon right now.
    I can see problems with implementing such an idea on Cinnamon though in the case where people have two panels.
    Thanks for you reply. I hope I can get this done one day on Cinnamon.
    Last edited by isolet (2013-10-28 09:36:01)

  • Error when copying an existing application (built on 4.0.1) in Apex 4.0.2

    Hi,
    we're getting this error when we try to copy an existing application to a new one inside of Apex. The same error happens when we try to export and import the application.
    Please note that the source application was created on Apex 4.0.1. Meanwhile Apex was patched to 4.0.2!
    ORA-20001: GET_BLOCK Error. ORA-20001: Execution of the statement was unsuccessful. ORA-20001: Error creating dynamic action sub-action name="NATIVE_JAVASCRIPT_CODE" id="13791109104919892" ORA-02291: integrity constraint (APEX_040000.WWV_FLOW_PAGE_DA_A_AR_FK) violated - parent key not found <pre>begin wwv_flow_api.create_page_da_event ( p_id => 6237930219205626 + wwv_flow_api.g_id_offset ,p_flow_id => wwv_flow.g_flow_id ,p_page_id => 20
    Any suggestions?
    Jens

    Check this thread Import unsuccessful in Apex 4
    The reason could be because of an invalid target reference in the Dynamic action mentioned in the error message( in the API call at that line number ,use the p_name,p_page_id parameters to identify the Dynamic Action involved)

  • Controlling an existing application via webservices

    Hi all,
    I just came across labview webservices whilst at one of the NI Tech symposiums in the UK last week and I want to use them for a specific application. However my initial playing hasn't worked very well! I want to know if I'm doing something wrong, or if what I'm trying to do isn't possible!
    We have an existing application which controls a piece of measurement kit. It has multiple moving axes and some data acquisition and automated measurements etc etc. The application is all based on queued state machines and event structures for UI etc. At the moment the system is controlled by a user next to the machine with a PC. For some of the measurement setup, it can be useful for the user to move around and view the system from different angles whilst positioning the moving axes. At the moment that means walking round the system, looking to see how the alignment is, jusdging what change needs to be made, going back to the pc, making the change walking round... you get the idea!
    What I wanted to do was to set up a webservice "interface" to the system giving fairly basic control of the positioning system. My plan was to write an intermediate VI which is opened by the user on the PC (via the existing application) to enable "remote" operation. This intermediate VI would then wait for the webservice vi to be called by the user on his/her mobile web enabled device and then pass instructions directly into the main applications Queue. The use of the intermediate means we don't have to re-write any of the main application and also gives a layer of security since the user has to manually call that VI from the main application. 
    In the ideal world that intermediate vi would be "event driven" i.e. it would either contain an event structure or Queue system and wait for the webservice to fire that event/queue (and send in instructions). However this is the bit that doesn't seem to work. I tried creating a user event within the intermediate vi and writing the reference to that event into a shared variable which the webservice could see, but that failed (apparently user events can't be written to shared variables?). Then I tried with a Queue, but nothing happened... I could of course have the intermediate vi just polling shared variables written by the webservice VI, but that doesn't sound great to me... 
    Does anyone have any thoughts on this? Is there a sensible way to "tack on" a webservice to an existing application? Other than network shared variables is there any other communication method that works between webservices and other VIs running? (I think this may be the key question)...
    Thanks in advance for your thoughts!
    Paul

    Getting data from your LabVIEW built web service over to your LabVIEW application is the trickies part of using LV web services because they run in seperate LabVIEW contexts.
    Since you are using an event based and queue based archtiecture, you are in a good position to add remote support in. This is an excellent architecture for extensibility.
    I can put forth 2 recommendations for you to try out. I agree with you that shared variables are a bad idea, they are lossy and would require you to add polling to your event driven architecture.
    1) TCP/IP
    You could open a TCP/IP port between the web service VI and your main application. I would recommend wrapping the TCP calls into a set of new API VIs that allows your application to block on a TCP request. For instance, you could create your own queue API that uses TCP under the hood to pass data. Your web service would use this new Queue API to put items into the queue, and your main app would then have another queued event handler to service items put into the queue. When this new queued event hanlder sees something on the queue, it could either fire user events in your main app's LV event handler, or just pass events over to your original queued state machine.
    2) VI Server
    create a simple VI that can invoke a user event on your main app's event handler, or can push something into your main app's queued state machine.  Then open and run this VI via VI Server from your web method.  This VI should just run once and exit, and all it does it pushes something into your state machine or queue. You can either have many of these VIs to match the specific events, or have one VI with a string on the front panel, then via VI server, put a value into that control from your web method. 
    I personally find the 2nd option the easiest to implement.
    Good luck.
    -Jared

  • Switch To Different Schema Connection With Existing Application

    Hi,
    Currently, i want to connect my existing application to a different schema, how should i do it?
    The situation is that i have two schema(call Database Connection in JDeveloper) that have exactly the same structure, as one is duplicated from anothe. My purpose of doing this is to use one of the schema for daily operation, while the other for testing.
    I have tried with this method:
    1. Right click on the Business Component project node and select Edit Business Component Project.
    2. In the Connection Tab, i change the Connection Name to the new schema(which used for testing).
    3. Then i open my .jsp page and sad to see the it's still retrieving data from the old schema.
    Am i hitting it with the wrong tactic? Please lemme know if there's any way that i can solve my problem.
    Thanks,
    Sin Leng

    Hi,
    The code snippet provided above must be executed whenever an ApplicationModule is first used by a new session but only after
    that ApplicationModule has been connected (otherwise the connection will not be available). Depending upon the type of client that
    you are developing (Swing vs. servlet for example) the right place to put this code could vary. Further, if your ApplicationModule
    and/or connection is pooled you must also be careful to reset this information whenever an ApplicationModule is serially reused
    by different clients.
    As of 9.0.3, the BC4J framework has provided a single hookpoint for all clients to manage session context on the middle tier. The
    method is oracle.jbo.server.ApplicationModuleImpl.prepareSession(Session). This method is invoked whenever a session
    (represented by a SessionCookie in the BC4J framework) uses an ApplicationModule which it had not referenced from a previous
    request. The Session parameter is the ApplicationModule session context which BC4J will automatically update with the
    userData context of the client side SessionCookie before prepareSession(Session) is invoked. This makes custom, client
    side context available to the midtier. Further this method is invoked after BC4J has connected the ApplicationModule, so it is a safe
    hookpoint for initializing custom DB session context as well as MT session context.
    In order for BC4J to make the client side SessionCookie userData context availabe in prepareSession
    the SessionCookie userData context must have been set before SessionCookie.useApplicationModule has been invoked. Please see
    the javadoc for SessionCookie.getUserData() and or the pooling sample ($JDEV_HOME/BC4J/samples/Pooling) for more information
    about acquiring a SessionCookie reference programmatically (so that you can initialize the SessionCookie userData). Other options
    may be to set up the userData in a custom SessionCookieFactory. Please see the pooling sample for a sample custom
    SessionCookieFactory implementation.
    Hope this helps.
    JR

  • Deploying existing application (forms and reports) over the web

    Hi I do have the following environment:
    1) Oracle 8.1.6.0.0 on HP-UX.
    2) Application written using oracle forms6i and reports6i on NT (Client-Server environment)
    I am looking to deploy this existing application over the web using 9iAS, sure I don't want to rewrite my application. I did that in the past using OAS 4.0.8 and forms server and reports server.
    1)Does 9iAS support that, which one should I install the standard or the enterprise.
    2)Do I still need forms server and reports server.
    I stopped using the OAS because it had problems and the performance was not that good, I found CITRIX and Tarantella do better, performance wise.
    3)Does 9iAS has improved that.
    Any feedback regading these many questions is highly appreciated
    Thanks
    Khaled

    Sounds like the ideal 9i As environment (although you might want to consider either upgrading or patching the database - 8.1.6.0.0 does have patches)
    You'd be pleasantly surprised with the performance and stability improvements of 9iAS over OAS.
    Deploying reports & forms over the web (pure web access, not terminal services like citrix) require some form of web server, reports server and forms server. I believe that 9i AS is totally compatible with the reports and forms developed in 6i tools, so there should be no rewrite at all.
    If you have the time, strongly recommend you check it out.

  • Can we extend the no.of years to an existing application.

    Hai peers,
    1)I am using Hyperion11.1.1.3 can we extend the no.of years to an existing application.
    2)I know using Standard calendar but how can we use custom calendar and manually defined calendar, what are their purpose.
    How can i create an application for weekly periodic. I am new to HFM can any one explain me.

    Sorry, let me clarify start menu and file locations for you.
    On the Windows computer with HFM App Server installed :
    Start --> All Programs --> Oracle EPM System --> Financial Management --> Utilities --> Application Year Update
    The file location should be :
    <MIDDLEWARE HOME>\EPMSystem11R1\products\FinancialManagement\Utilities\FMChangeNumberOfYearsForApp.exe (or FMChangeNumberOfYearsForApp_x64.exe)
    example : C:\Oracle\Middleware\EPMSystem11R1\products\FinancialManagement\Utilities\FMChangeNumberOfYearsForApp_x64.exe
    If it is not there, perhaps the version your have didn't include it yet? (I have 11.1.2.1) If it's not there you can :
    a.) Log into oracle support (support.oracle.com) and search for the item given by another user in this thread
    b.) Download components for HFM App Server for a version that has the utility (i.e. 11.1.2.1) and extract it from the compressed files. [Probably not recommended unless you are pretty comfortable dealing with archive files, etc.]

  • Architecture change in existing application

    Aim: Architecture change in existing application
    Domain: Health Care
    Background: There are 2 application ( Front end: one in oracle forms - deals with accounts module and another in some legacy application - deals with patient, clinical and diagnose module) using and sharing the same Oracle 9i database.
    Patient related modules are moved into another database ( java as a front end, oracle 10g as backend ) which is normalized - eliminating duplicate tables and column, also its tables and columns names are not matching with existing (patient)system.
    Now the requirement is making the existing application related only to Accounts module ( having complicated business logic written in packages ) to work as it is without changing the code, design drastically.
    Questions:
    1. Now how best this task can be completed without affecting existing Accounts system drastically ( with minimal changes )?
    2. what are the possible best approach to achieve this ?
    3. what are the best way for communicating the 2 DB in this scenario ( may be creating synonym, views etc ) ?
    4. What are challenges that needs to be addressed ?
    Any recommendation, suggestion and solution will be very much appreciated.
    Thanks and Regards,
    Lokesh

    Views are one possible approach which make it possible to change the "real" datamodel without changing the appliacation itself. I can't tell you if its the "best" approach for your problem.
    Since most of the Patient related tables ( more than 200 tables ) are modified and if views are created for all this tables, What will be the performance.Performance is not influenced by just the fact that you use views instead of tables. It depends on the structure and complexity of the views you use. This question can not be answered in general.
    If 2 databases resides in 2 different server then, what is the best approach for communicating databases
    ( can you please put a thought on MQ, staging database... ) ?Again, it depends. How much data has to be read from one db in the other one? Are there data changes happending in one db which have to be applied in the other db?
    Based on above two, Is it still view are the best option?I don't know enough of your requirements to answer that question.

  • Deploying EJB to an existing application

    hi!
    I've got an existing J2EE-application with many EJBs. Now I want to add 1 EJB to it.
    If I deploy this EJB, the application.xml within the existing application ist replaced by the
    application.xml of the deployed one. In this case, none of the old EJBs is startable.
    The only possibility to get it to work, is to change the application.xml after deployment (insert all existing
    <module> tags) or replacing the application.xml within the ear-file manually.
    Is there a better way? (within an application of 10 EJBs this shouldn't be a problem, but in our case with more than 100 EJBs, it is tedious)
    cu
    ed

    What I understand your posting that you have an existing application with say 10 EJBs and you overwrite the application.xml with new info about just the new EJBs. If you do so then application will lose the reference about the old EJBs and hence the old EJBs will not be available for use.
    You can deploy the new EJBs in a separate application and use the parent attribute to make parent/child relation between applications.
    The best way to redeploy is to package the EJBs in an EAR and redeploy the EAR. If your EAR is in $OC4J_HOME/j2ee/home/applications directory then replacing the EAR also redploys your application. You can use ant or tools like JDev to build your EAR.
    regards
    Debu

  • Can we reuse existing application name if i renamed existing application while updating application.

    Hi I want convert my existing application universal to ipad app. but this is not possible. But if i rename my app name and submitted to appstore for review. Then can i reuse my existing app name again?

    You can use CIM to configure the storefront.
    It will give you an option of configuring storefront with/without publishing.
    By CIM you can configure the database/application and servers.

  • WLPI: integrating organizations and roles with existing application

    Hi,
    how do I integrate WLPI's organizations and roles with an existing application's
    data structure? It looks like WLPI expects organizations and roles to be groups
    with a particular naming convention (i.e. an org is defined by a group 'WLPIOrg@MyOrg'
    and a null member). If I am integrating with an application that stores organizations
    and roles in (for example) separate database tables, how do I get WLPI to recognize
    these? Or do I have to maintain the organizations and roles in 2 places, one for
    the application and one for WLPI in the format described above?
    THanks,
    Martin

    Hi Martin,
    We're in the middle of a prototyping exercise of getting WLS, JMS,
    WLP, WLPI integrated accross one security realm. What its looking like
    is this (bear in mind I think this hasn't been tried before judging by
    newsgroups + BEA Docs)
    1)WLP has a bug that you cannot get user details from LDAP(exception
    is thrown)
    2)WLPI does need a certain structure -
    http://e-docs.bea.com/wlpi/wlpi121/install/cfigrun.htm#1246656
    and
    http://developer.bea.com/ftp_bin/Using_LDAP_with_WLPI.zip
    A) To solve your problem maybe you could write a custom realm to
    translate the roles + orgs back (no writing from WLPI ie read only )
    to WLPI.
    B) Maybe you caould have a META-DIRECTORY set up that synchronises the
    RDBMSRealm with something else maybe LDAP or another RDBMSRealm
    We are also looking into a unified security solution by Netegrity
    called siteminder. They are about to release a version for WLS 6 but
    they seem to be laggin behind. This provides a single signon over and
    enterprise system.
    This is a bit vague Martin, I will hopefully have more concrete info
    in a week or 2. If you have any other info you can mail me on -
    [email protected]
    BTW this wouldn't be Martin Van Vilet from the Netherlands that worked
    on the Intelligent Finance Product?
    "Martin van Vliet" <[email protected]> wrote in message news:<3b17ece8$[email protected]>...
    Hi,
    how do I integrate WLPI's organizations and roles with an existing application's
    data structure? It looks like WLPI expects organizations and roles to be groups
    with a particular naming convention (i.e. an org is defined by a group 'WLPIOrg@MyOrg'
    and a null member). If I am integrating with an application that stores organizations
    and roles in (for example) separate database tables, how do I get WLPI to recognize
    these? Or do I have to maintain the organizations and roles in 2 places, one for
    the application and one for WLPI in the format described above?
    THanks,
    Martin

  • Existing Application Profile

    Hi All,
    How we find existing application profile for particular application? Can we modify the existing profile or modification of profile will impact the application?
    Thanks in advance

    Unfortunately, there isn't an automatic way to extract one from your existing application.
    You should have a copy of the .PER file from when the application was first created.
    If you do not, you would manually have to create one.

  • I have a long-existing iPhone 4s with one apple id and started a job where I received a macbook with another apple id. how do i get my phone to sync with the Mac Pro and secondly how do i get my music on there?

    i have a long-existing iPhone 4s with one apple id and started a job where I received a macbook with another apple id. how do i get my phone to sync with the Mac Pro and secondly how do i get my music on there?

    No not bothered about sycing apps etc it is all about calendars and maybe notes. IN terms of how its done I just want it the easiest way and preferably so that if an entry is made on one calendar then it populates the other.
    Thgius is beacuse I have my work diary on outlok, which I then link with my ical. I want to make sure that information is then shared with her.
    Chris

  • Can i have multiple applications open on one page

    can i have multiple applications open on one page?

    JShimazaki wrote:
    Mac OS X Mountain Lion supports multitasking like cbs20 mentioned. Just like MS Windows just press alt+tab to switch to whatever applications you have open.
    Actually it isn't Alt-Tab on OS X, it's Command-Tab to use the Application Switcher.
    Also, Control+ left/right arrow key will switch spaces if that's what's desired.

  • How can I change an app's Apple ID from one that no longer exist to a current one?

    how can I change an app's Apple ID from one that no longer exist to a current one?

    vanesanesa wrote:
    how can I change an app's Apple ID from one that no longer exist to a current one?
    Apple IDs generally don't stop existing. If you mean that you have changed your email address, what you need to do is update your Apple ID to the new email.  Start here:
    https://www.apple.com/support/appleid/manage/

Maybe you are looking for