Stop/start application for E90

Hi,
I use a E90(version 400.34.93). I wanted to know if there is a software will lets me stop and start an installed application (when the application is in hang state) on the phone without rebooting the phone. Thanx

Hi there
The Symbian operating system, as used on the E90-1, has a feature for this already built in. When an applications hangs, or even just to view running apps hold down the menu key and a list of open applications will be displayed. Scroll to the application you want to close and then hit the "C" key. This will force the application to quit without the need to reboot the phone.
iPhone 5 32GB
MacBook Pro Retina 15" Mac OS X Mountain Lion 10.8.4

Similar Messages

  • Essbase Dimension build error and Unable to Stop/Start Application

    Hi All,
    I am trying to build the dimendion in the ASO application it is throwing the Error meaasage " Dimension Biuld failed , ther may be problem in allocating memory".
    While i am trying to and Start/Stop my respective Application it is throwing the below error meaasge
    I tried to debug this issue by checking the Locked objects, and asked my Admin to close my sessions forcebully if any running and also checking all rules files . But i didn't get any clue/solution from them.
    Please help me out from this issue
    ***ess-dev.ASOAPP     Stop application     April 15, 2009 4:15:08 PM IST     Failed***
    ***Error: 1013018 Cannot unload database [Sample] while user [ASDF] is performing database operation. Wait for user [ASDF] to complete the operation, or ask the user to abort it. Log out all users and then unload the database.***
    ***     MaxL Command     April 15, 2009 4:40:52 PM IST***
    ***Error: 1053012: Object [Sample] is locked by user [ASDF]***
    ***Error: 1013100: User [ASDF] is Active on Database [Sample]***
    ***Error: 1013132: Cannot build dimensions. There are other active users on database [Sample]***
    ***Error: 1241101: Unexpected Essbase error 1013132***
    ***Error: 1053013: Object [Sample] unlocked by user [ASDF]***
    ***     MaxL Command     April 15, 2009 4:43:28 PM IST***
    ***Error: 1270040: Data load buffer [2] does not exist***
    Regards

    Hi,
    Thanks for your answer friend. My admin has successfully killed my session forcebully. And he doubted that i may not have enough rights to Stop/Start application and he provided me the required rights. After that also the error is repeating as below. we two are not getting where we went wrong.
    ss-dev.ASOAPP     Stop application     April 15, 2009 8:19:35 PM IST     Failed
    Error: 1013018 Cannot unload database [Sample] while user [ASDF] is performing database operation. Wait for user [ASDF] to complete the operation, or ask the user to abort it. Log out all users and then unload the database.
    Help me out from this issue

  • Orarun rpm, stop/start scripts for tiers

    Is anyone using the orarun rpm? If so, how do you startup your tiers? I have the metalink note 211497.1, an oracle sales person gave me it since I am evaluating OCS and can't have a metalink account. I was able to successfully install all 3 tiers finally and I had to powerdown because electricians were coming in. Now I can't even bring up the ifrastructure tier using the commands. Someone help please. Thanks for any input.

    here u r the note
    How to start/stop components of Collaboration Suite
    PURPOSE
    Helping to start and stop all components of Collaboration Suite
    SCOPE & APPLICATION
    All administrators and consultants working with Collaboration Suite
    HOW TO START/STOP COLLABORATION SUITE
    There are several steps for starting and stopping Collaboration Suite
    components.
    Here you can find examples how to start and stop infrastructure,
    database and middletier components seperately
    1) INFRASTRUCTURE
    Please check first, which of the components you have configured
    ----infraenv begin----
    export ORACLE_BASE=<your ORACLE_BASE, e.g: /u01/oracle>
    export ORACLE_HOME=<your ORACLE_HOME, e.g: /u01/oracle/product/infra>
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin:/usr/local/bin:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/ctx/lib:$LD_LIBRARY_PATH
    export NLS_LANG=<your NLS setting, e.g: american_america.UTF8>
    export ORACLE_SID=iasdb
    export TNS_ADMIN=$ORACLE_HOME/network/admin
    export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    ----infraenv end------
    ----infrastart begin----
    # starting infrastructure components:
    # get env
    . ./infraenv
    ALTDISP=$DISPLAY
    export DISPLAY=localhost:0.0
    # listener starting
    lsnrctl start
    # listener checking
    lsnrctl status
    # database starting (refers to ORACLE_SID setting in infraenv)
    sqlplus "/ as sysdba" <<!
    startup
    # OID starting
    oidmon connect=iasdb start
    sleep 5
    oidctl connect=iasdb server=oidldapd instance=1 start
    # HTTP and OC4J starting
    dcmctl shell <<!
    getState -v
    start -v -ct ohs
    start -v -co OC4J_DAS
    getState -v
    # Webcache start (only necessary for portal)
    webcachectl start
    # OPMN start (sometimes necessary, please try first without it)
    opmnctl startall
    # EMD starting (not needed for OID, only for web administration)
    emctl start
    export DISPLAY=$ALTDISP
    ----infrastart end------
    ----infrastop begin----
    # stopping infrastructure components
    # get env
    . ./infraenv
    ALTDISP=$DISPLAY
    export DISPLAY=localhost:0.0
    # EMD stopping (not needed for OID, only for web administration)
    # setting pw variable to avoid emctl asking for pw
    export EM_ADMIN_PWD=<ias_admin_password>
    emctl stop
    # Webcache stop
    webcachectl stop
    # HTTP and OC4J stopping
    dcmctl shell <<!
    getState -v
    stop -v -ct ohs
    stop -v -co OC4J_DAS
    getState -v
    # OPMN stop (to stop opmn and his shadow process)
    opmnctl stopall
    # OID stopping
    oidctl connect=iasdb server=oidldapd instance=1 stop
    sleep 5
    oidmon connect=iasdb stop
    # listener stopping
    lsnrctl stop
    # database stopping
    sqlplus "/ as sysdba" <<!
    shutdown immediate
    export DISPLAY=$ALTDISP
    ----infrastop end------
    2) STORAGE
    If there are different databases for mailstore and Files, then each of them
    needs these scripts
    ----dbenv begin------
    export ORACLE_BASE=<your ORACLE_BASE, e.g. /u01/oracle>
    export ORACLE_HOME=<your ORACLE_HOME, e.g. /u01/oracle/product/storage>
    export PATH=$ORACLE_HOME/bin:/usr/local/bin:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/ctx/lib:$LD_LIBRARY_PATH
    export NLS_LANG=<your NLS setting, e.g. american_america.UTF8>
    export ORACLE_SID=<your SID, e.g. OCS>
    export TNS_ADMIN=$ORACLE_HOME/network/admin
    export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    ----dbenv end--------
    ----dbstart begin------
    # starting storage components
    # get env
    . ./dbenv
    # listener starting
    lsnrctl start
    # listener checking
    lsnrctl status
    # database starting
    sqlplus "/ as sysdba" <<!
    startup
    ----dbstart end--------
    ----dbstop begin------
    # stopping storage components
    # get env
    . ./dbenv
    # listener stopping
    lsnrctl stop
    # database stopping
    sqlplus "/ as sysdba" <<!
    shutdown immediate
    ----dbstop end--------
    3) MIDTIER COMPONENTS
    first of all start Calendar and Files before the other components always
    (both of them as root !)
    switch from oracle with environment set (see below) to root with 'su'
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    cd /users/unison/bin
    ./unistart
    cd $ORACLE_HOME/ifs/files/bin
    ./ifsctl start
    check <Note.205298.1> Considerations how to start UM listener as oracle
    to see, if you can start listener_es as oracle (as desribed below) or not
    ----midenv begin------
    export ORACLE_BASE=<your ORACLE_BASE, e.g. /u01/oracle>
    export ORACLE_HOME=<your ORACLE_HOME, e.g. /u01/oracle/product/midtier>
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/dcm/bin:$ORACLE_HOME/opmn/bin:/usr/local/bin:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/ctx/lib:$LD_LIBRARY_PATH
    export NLS_LANG=<your NLS setting, e.g. american_america.UTF8>
    export TNS_ADMIN=$ORACLE_HOME/network/admin
    export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    ----midenv end--------
    ----midstart begin------
    # starting midtier components
    # get env
    . ./midenv
    # UM listener_es start
    lsnrctl start listener_es
    dcmctl shell <<!
    getState -v
    start -v -ct ohs
    start -v -co OC4J_Portal
    start -v -co OC4J_UM
    start -v -co OC4J_iFS_files
    getState -v
    # Webcache start (if configured, but not started, OC4J may fail)
    webcachectl start
    # EMD (if installed and enabled)
    emctl start
    # UM processes
    oesctl startup midtierhost:um_system:smtp_in
    oesctl startup midtierhost:um_system:smtp_out
    oesctl startup midtierhost:um_system:imap
    oesctl startup midtierhost:um_system:gc
    oesctl startup midtierhost:um_system:list
    oesctl startup midtierhost:um_system:pop
    ----midstart end--------
    ----midstop begin------
    # stopping midtier components
    # get env
    . ./midenv
    export password=oracle1
    export myprompt=false
    export prompt=false
    ifsctl stop
    oesctl shutdown sniprim2:um_system:smtp_in
    oesctl shutdown sniprim2:um_system:smtp_out
    oesctl shutdown sniprim2:um_system:imap
    oesctl shutdown sniprim2:um_system:gc
    oesctl shutdown sniprim2:um_system:list
    oesctl shutdown sniprim2:um_system:pop
    lsnrctl stop listener_es
    # Webcache stop
    webcachectl stop
    dcmctl shell <<!
    getState -v
    stop -v -ct ohs
    stop -v -co OC4J_Portal
    stop -v -co OC4J_UM
    stop -v -co OC4J_iFS_files
    getState -v
    opmnctl stopall
    ----midstop end--------

  • Attempt to start procersses will exceed the maximum allowed number[1] of started applications for account

    i have met a problem, when i want to start the cloud server, it has this problem tips.
    but i have not start another start the processess in this account. how can i do ?

    when you post sql statement use also similar threads :
    ORA-22290: operation would exceed the maximum number of opened files or LOB
    https://kr.forums.oracle.com/forums/thread.jspa?messageID=10842417                                                                                                                                                                                                                                                                                                                                                                                                           

  • How to create stop/start effect for tilt/shift

    Hi I was wondering how to get the animated look I have seen with tilt/shift videos. I want to record my scenes using my Canon 5D Mk2 in video mode rather than use time lapse and increase my shutter count. So after I have shot my video with my Tilt/shift lens I want to create the jittered video effect in FCP, any help would be appreciated. Many thanks in advance.
    Steve

    you can maybe have a play with the Video Filters > Video > Strobe effect, see if that gets you where you want to go

  • Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it

    Adobe creative cloud has stopped working, all my individual programmes from adobe open and work fine, but when I try to open adobe cloud it starts to open then says adobe cloud has stopped working, looking for a solution then shuts down, I can not open it at all.

    Without proper system information and the application logs nobody can tell you much.
    Troubleshoot Creative Cloud download and install issues
    Mylenium

  • Is there a DJ app for the Ipad that will read the "start" and "stop time" setting for each individual song, as they are set in the song Options screen in Itunes?

    Is there a DJ app for the Ipad that will read the "start" and "stop time" setting for each individual song, as they are set in the song Options screen in Itunes? The Ipod Touch, by itself does not allow cross-fading, therefore when the stop time is edited short, the song jusst truncates then goes to the next song. I tried the DJay ap and while it would crossfade, it would NOT read the song settings for the stop marker. So now I want to try and Ipad and see if there is an app that will READ the Itune stop settings within the song. I do NOT want an app that will allow me to DO the stop marker. I want an app that will READ the stop marker from the song as it is set in Itunes.

    Itunes provides the option for setting the Start and Stop times of each music track.  However, the start and stop times do not synchronize to the iPhone.  I don't understand why this option is even available as it doesn't work when listening to music on the phone.  I have not found another application that will support the start and stop time markets.  I have searched quite a bit for this but can't find anything.  I hope we can find something. 

  • How to create services start and stop automation script for diff servers

    Hi All,
    i want to create a bat file for automation purpose to start and stop services
    i have some services in 1st server aand some in 2nd server and some in 3rd servers.
    has you all know i have to follow sequences to start and stop services can any help me in creating .bat by linking 3 servers fo starting and stoping services.
    Thanks in advance
    Regards
    SM

    Hi,
    this is the list of start oder for services in 11.1.2.1 from the Installation and Configuration Guide
    1. Databases for repositories.
    2. Any corporate user directories that you plan to configure for use with Shared Services.
    3. Foundation Services Managed Server application server, which includes Shared Services,
    and EPM Workspace.
    4. Reporting and Analysis Framework — Agent Service (if required for your environment)
    5. Reporting and Analysis Framework Application Server (if required for your environment)
    6. Web server
    The remaining services and processes can be started in any order:
    1. Performance Management Architect Services
    2. Performance Management Architect application server
    3. Performance Management Architect Data Synchronizer application server
    4. Essbase Server
    5. Administration Services application server
    284 Starting and Stopping EPM System Products
    6. Integration Services Server
    7. Essbase Studio Server
    8. Provider Services application server
    9. Financial Reporting Services
    10. Financial Reporting application server
    11. Web Analysis application server
    12. Calculation Manager application server
    13. Planning application server and the Hyperion RMI Registry
    14. Financial Management service
    15. Financial Management Web application server
    16. Strategic Finance service
    17. Performance Scorecard application server
    18. Performance Scorecard Alerter application server
    19. Profitability and Cost Management application server
    to start services on different servers you can use the sc command in your batch file
    for eg
    sc \\10.121.201.21 start HypS9FrameworkAgent

  • Is it necessary to regularly stop and start application to free memory?

    Do we need to stop and start an application regularly to free memory and increase performance? We have had random dynamic calc errors that went away after a stop/start.
    A consultant recommended we script a stop/start to run once per day. We are on version 7.
    I am concerned if the script stops an application while a calc is in progress - database corruption might occur.
    Thanks,
    J

    One big thing you should realize is that if your memory settings are really too large it does not manifest right away. As you perform certain actions the memory is allocated. So if you are on 32-bit Essbase which you are on a V7 platform the combination of your index + page + memory to support outline + calc caches * # of concurrent calcs + dynamic calc cache + about 200 MB needs to all be under 2 GB; when/if you get to a point of too much memory allocation you start getting quite a few interesting errors. Shutting down/starting up is not a proper long term way to manage memory issues -- properly setting the caches and other configurations is proper to resolve long term for that.
    Regards,
    John A. Booth
    http://www.metavero.com

  • How to Start / Stop Oracle Applications

    How to Start / Stop Oracle Applications.
    Oracle Applications Services (TCF, ConcManagers, Metric, Forms, Reports etc...) TnsListner & Oracle Service (DB) are started when the Server is started.
    What is the sequential Order to Start / Shutdown services, Listener & DB.
    Best regards,

    hi
    there is no hard coded rule on which service should be started first.
    the basic thing is concurrent manager uses database for starting, so i advice you the following sequence:
    1. start the database
    2. start the database listener
    3. Apache server
    4. forms server
    5. report server
    6. concurrent manager
    and shutdown in the reverse order
    simple
    regards
    srinivas

  • How do starting/stopping of application services differ in R12 ??

    How do starting/stopping of application services differ in R12 when compared to 11i ??
    Can I start/stop services using opmnctl ??

    Can you plese refer me a document where role of OPMN and OC4J in R12 is mentioned ??? In short:-
    OPMN - Oracle Process Manager & Notification Server is component in Oracle Application Server (10g) to manage (start/stop/status) Application Server components (HTTP, OC4J)
    For more:-
    http://download.oracle.com/docs/cd/B14099_19/core.1012/b13996/intro.htm
    OC4J -- oracle container for java.
    In R12 we have 3 groups of OC4J's.
    oacore OC4J - framework based applications
    forms OC4J - forms based applications
    oafm OC4J - Fusion Middleware - for mapviewer, webservices, ascontrol.
    For more, pls read
    http://download.oracle.com/docs/cd/B10464_05/web.904/b10326/intro.htm
    thanks,
    JD

  • Script Start/Stop Oracle Applications Services

    Hi
    I am constructing some scripts to stop or start some Oracle Applications services (APP, Apache, DB, Construct Manager, discover, forms, etc)
    I now that are some script in the folder \viscomn\admin\scripts\, but my questions are, what services must I stop/start first?? The APP?? Then the BD vision?? Then apache?? Or first BD, discover, apache, app, etc?
    Please can anyone help on this? Tank you
    JailBreak

    Hi
    Tank you for your reply’s.
    Yes i will use the Oracle scripts to stop and start services.
    But when the Network Administrator shutdown the server, he must shut down some services, and I will include this scripts in the main script. But my dough was what services will stop first.
    The IAS services don’t need to be started?? My IAS service are all stopped and if I start Apache Server Service first, the IAS HTTP Server service don’t start. I must start IAS HTTP Server first, then start apache server. IF not give an error and the service don’t start. But then after the Apache Server will stop by itself.
    And some times the Oracle script doesn’t start the Concurrent Manager Service. I must start it manually.
    My services that are started are:
    Oracle Apache Server
    Oracle Fulfiment Server
    Oracle Metrics Server
    Oracle Metrics Client
    Oracle Reports Server
    Oracle Concrrent Manager
    Oracle Discover Server
    Oracle Forms Server
    Oracle OracleVIS_db920_RDBMSTNSListenerVIS(from the OracleVIS_db920_RDBMSTNS this is the only service that are started, the others are stopped. Is this correct?)
    Oracle OracleVISOra806_2TNSListener80APPS_VIS
    This is all the services that are started.
    But I have a problem in my discover. When I login to the applications as a user, and pick some options (that will open discover) it gives me one error.
    Locator unable to start session altranitsgp.altranit.pt_8000OracleDiscovererSession4. - Hint: An administrator can further diagnose connection problems by running the "checkdiscoverer" script under <ORACLE_HOME>/806/discwb4/util.
    But I have started the Discover Server and tested, and all went ok. The problem is in the applications. I don’t know why.
    Any one can give a hand on these issues?
    Tank in advance.

  • ITunes stops/starts songs every time certain keys are pressed, whether application is open/active or not.

    iTunes stops/starts songs whenever ENTER,"/" [num pad] or DELETE is pressed, whether the application is open/active or not.  Updated to most recent version a few days ago, though this began seemingly spontaneously today, possibly tied to an iPad sync although I really have no idea how it could have started.

    Hello Brian,
    Thank you for providing the details of the issue you are experiencing with iTunes.
    I recommend reviewing the following article to see if any third-party plug-ins could be causing the problem:
    iTunes: Troubleshooting issues with third-party iTunes plug-ins
    http://support.apple.com/kb/TS3430
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • How to stop Jinitiator installation for ebusiness suite application

    Right now every time I try to log into ebusiness suite, I will be prompted to install Jinitiator for the first time and if I install I will not be prompted from next time onwards, My requirement is to stop prompting even for the firs time.
    we are planning to go live with Employee self service and we do not want employees to be dealing with any installations since self service application does not need jinitiator.
    which configuration file/profile I have to change?
    we are on 11.5.10.2 apps version.IE 7.
    Thanks

    Thanks for all your time.
    Hussein
         you made a good point , I should not stop this but in my case 95% self service users and 5% forms users , so we are going other direction until we figure out a way to stop Jinitiator installation launch based on what responsibilities a user have (self sevice or self service+ forms...).
    I tryed to cancel the installation multiple times it comes back again and again.
    Srini
         its custom SS resp. I have setup user who just have one self service resp. but still launches Jinitiator installation.
    Prasanna
         no thats not how it is working, I have tested this (logged in as a user who just have custom self service responsibilities, still the Jinitiator installation starts up on log in and as I click on any link inside the responsibility).Even if I cancel first time it comes back again and again.
    Thanks

  • How to start and stop Oracle Application Server from ANT

    How to start and stop Oracle Application Server and Web application from ANT
    Thanks in Advance.
    Mani

    Hi,
    You can use: startManagedWebLogic.sh, it is in your domain directory and you have to execute it in this way
    ./startManagedWebLogic.sh managedServerName http://adminServerHost:adminServerPort
    For instance, in my case I use:
    unixserv01:/webportal/domains/appServerWeb/bin>startManagedWebLogic.sh managedServ01 http://pelma3w3per01.mesaperu.next:7001
    You have to run it on the machine where the managed server was installed.
    Best regards,
    Raúl

Maybe you are looking for