Background programs

Is anyone else having an issue with "phantom" programs running in the background and draining your battery rapidly?  I have had this happen twice and gone to apple store and their fix is to "reset phone as a new device"; which is a real pain.  Not sure if this is happening to you ?  Check your usage under "settings"; if standby time and active time are the same (or close) you are affected.

Only a small selection of programs are capable of running in the background, the vast majority are simply in a suspended stated.
Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these steps in order.
If you are regularly having to restore as "new" to rectify battery drain issues then either you have a defective piece of hardware or a specific app that is not functioning properly.  The only way to determine is to restore as new, then load apps one at a time until the culprit is found.
Also, ensure you're using the most current version of apps on the device.

Similar Messages

  • Background program is not working properly,when i am using job_open ,submit

    hai ,
    i am using job_open ,submit and job_close for scheduling one program background and use submit to another program ,all are working properly but it is working as a forground program not as abackground program. i want to work it as a background program.
    plz give a solution.

    Hi,
    Please find a sample program format for executing a submit program in background.
    DATA: number           TYPE tbtcjob-jobcount,
          name             TYPE tbtcjob-jobname VALUE 'JOB_TEST',
          print_parameters TYPE pri_params.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = name
      IMPORTING
        jobcount         = number
      EXCEPTIONS
        cant_create_job  = 1
        invalid_job_data = 2
        jobname_missing  = 3
        OTHERS           = 4.
    IF sy-subrc = 0.
      SUBMIT submitable TO SAP-SPOOL
                        SPOOL PARAMETERS print_parameters
                        WITHOUT SPOOL DYNPRO
                        VIA JOB name NUMBER number
                        AND RETURN.
      IF sy-subrc = 0.
        CALL FUNCTION 'JOB_CLOSE'
          EXPORTING
            jobcount             = number
            jobname              = name
            strtimmed            = 'X'
          EXCEPTIONS
            cant_start_immediate = 1
            invalid_startdate    = 2
            jobname_missing      = 3
            job_close_failed     = 4
            job_nosteps          = 5
            job_notex            = 6
            lock_failed          = 7
            OTHERS               = 8.
        IF sy-subrc <> 0.
        ENDIF.
      ENDIF.
    ENDIF.
    Thanks & Regards,
    Harish

  • I was downloading add-on themes and apparently signed up for background program. it has taken over my computer and I want it off now.

    I was adding themes from Firefox and signed up for the "background" program. It has put a slide show on my computer and I want it off NOW. How do I remove it because I don't even know how to get to it? It showed a wooden floor to start with and now it showing horrible pictures that I never picked out.

    Did you install a persona?
    You can uninstall your current Persona and revert to the Default theme (Tools > Add-ons > Appearance/Themes).
    See:
    * https://support.mozilla.com/kb/Using+themes+with+Firefox
    * http://kb.mozillazine.org/Themes (Lightweight theme)
    *http://kb.mozillazine.org/Uninstalling_add-ons
    *http://kb.mozillazine.org/Uninstalling_toolbars

  • Creating a background program...?

    Right now, I want to create a background program which monitors certain folder. What I mean by background is that, I want create a program that will continue running on myLinux Machine whether I log on or off (of course the computer willl be on). Also, the program must be executing while I ssh onto the machine or do other command line on the screen.
    How would I create the program so that it remains executing in background ?
    Thank You

    Create a shell script any start you backgound process in your .cshrc

  • QI06 - Background program available ?

    FW: RE: A transports =>FW: SR# 454269 - Testing O.K . Process Initiated for Transport to Production Move

    Yes background program is available for QM Release- Mass maintenance QI06 .
    Maintain variate : Report RQBAAM10 in customising
    Deepak

  • Is it possible for a background program to produce TIME_OUT Dump?

    Hello Experts,
    When i have analyzed the Dumps using Tcode ST22 in my production system, I found many dumps.
    My doubt is that, is it possible for a program scheduled to run in background to produce TIME_OUT dump?
    I faced a scenario like this. What could be done to avoid this?
    Can this be because of some settings problem? If so, what kind of settings has to be changed?
    Thanks and Best Regards,
    Suresh

    Hi,
    As far as time out for Background programs are concern I think there is no time out for programes executing in background
    First try to improve performance of your program like read with binary search , create table index etc.
    Then consult basis ppl in this regard they can set big time out slot so that your probram will not go into dump.
    Regards
    Bikas

  • Calling smartform in a background program

    Hi Experts,
    I want to call one smartform in a background program, i am very new to smartform .Can anybody help me to do this?
    I want to suppress the dialog box appearing while directly executing the smartform?
    Also please tell me how i can give the smartform data to spool?
    Regards,
    Ratheesh

    Hi Ratheesh,
    First you create Form . in print program you have to read the data from data bace table table "nast". and Based on the  NAST-OBJKY retrive your data.
    DATA : RETURN_CODE TYPE SY-SUBRC,
           US_SCREEN TYPE C,
           P_ORDER LIKE NAST-OBJKY.
    DATA: RETCODE   LIKE SY-SUBRC.         "Returncode
    DATA: XSCREEN(1)  TYPE C.              "Output on printer or screen
    DATA: REPEAT(1) TYPE C.
    DATA : LT_TEXT LIKE TLINE-TDLINE.
      CLEAR RETCODE.
      XSCREEN = US_SCREEN.
      SELECT SINGLE *
                     FROM NAST INTO NAST WHERE OBJKY = NAST-OBJKY.  "P_VBELN.
      PERFORM GET_DATA.
      CASE RETCODE.
        WHEN 0.
          RETURN_CODE = 0.
        WHEN 3.
          RETURN_CODE = 3.
        WHEN OTHERS.
          RETURN_CODE = 1.
      ENDCASE.
    FORM GET_DATA .
      P_ORDER = NAST-OBJKY.
      SELECT VBELN
             AUDAT
             WAERK
             KUNNR
             VDATU
             FROM VBAK
             INTO TABLE TB_VBAK
             WHERE VBELN = P_ORDER.
      IF NOT TB_VBAK[] IS INITIAL.
        SELECT VBELN
               POSNR
               MATNR
               KWMENG
               NETPR
               NETWR
               BRGEW
               GEWEI
               VOLUM
               VOLEH
               CHARG
               WERKS
               POSEX
               KDMAT
               FROM VBAP
               INTO TABLE TB_VBAP
               FOR ALL ENTRIES IN TB_VBAK
               WHERE VBELN = TB_VBAK-VBELN.
      ENDIF.
    endform.
    After complete this go through NACE transaction in that select required out put type and give you form name and Program name.
    then go through the transaction in display mode and select the print preview. you will get your lay oput.
    here You must give output type in proper.

  • Is it possible VB as FontEnd(GUI) java as background program(RMI)

    HI
    My client have Vb application ..
    they want Vb as Fornt End (GUI) After than background program must me java
    is it possible . if so pls tell me
    thanks in adv
    regards
    kedar

    Try SOAP instead of RMI. They both do the same thing, namely remote-procedure-call, but RMI requires Java on both ends, while Soap is cross language.
    - David

  • Send idoc by scheduling background program

    Hi,
    How can we send Idocs by scheduling background program?
    Thanks and regards,
    Madhu

    Hi,
    Schedule program <b>RSEOUT00</b> in background to send <b>outbound</b> idoc's from 30 status.
    Schedule program <b>RBDAPP01</b> in background to process <b>inbound</b> idoc's from 64 status.
    Regards
    Appana
    *Reward Points for helpful answers and close the thread as solved problem

  • Why background program RSWUWFML2?

    Hi experts,
                I would like to know why this background program is scheduled "RSWUWFML2"...... what is the activity of this program...
    regards,
    Roops.

    Hi Roop,
    Report RSWUWFML2. This report will email the person that there is an item in their inbox. It includes a link back to the workitem.
    You can check the following Links:-
    How to find Background job which is running program RSWUWFML2
    RSWUWFML2
    https://www.sdn.sap.com/irj/scn/wiki?path=/display/bpx/business%252bworkflow%252bfaq
    Regards,
    Kanika

  • Inbound background program

    hi all,
    may i know for inbound in WE20, when we choose trigger by background program in inbound options tab under processing by function module, how to know the background program?
    thanks

    If you are opting the option process in the background in the inbound side for particular message type.
    Then you check all the idocs in transaction we02, you will see all idocs of that particular message type are in 64 status.
    To process these idocs in background just execute the program RBDAPP01 and create a variant with these idocs and schedule the background job in SM36 with the variant.

  • Witch background program run

    witch background program run during scheduling any background job in sap.
    Thanks & Regards
    jagdish kumar

    Hi,
    Yes the question should be more specific.
    When you run sm37 what job, table gets called internally..................
    Run the tcode and the go to system\status and then look at program screen.
    Hope it helps.
    Cheers
    Deepanshu

  • How to send background program output to a printer

    Hi !
    I created a background report,running via a job in background. I need to display the output of the background report via two channels : a printer and an e
    mail. I created the output of the report by using the command Write, and the output is printed to screen. However this solution is good for an online report and not for background report ? and my question is how to send the background report output to a printer in background .
    Thanks
    Moshe

    Hi,
    If you are using JOB_OPEN, JOB_SUBMIT & JOB_CLOSE to execute the program in background, then in the FM JOB_SUBMIT you have a parameter PRIPARAMS for which you need to pass a value.
    Before that get all the Print Parameters using FM GET_PRINT_PARAMETERS. Then pass the same to PRIPARAMS.
    This would solve the problem.
    Best regards,
    Prashant

  • Excel attachment in a mail for background program

    Hi,
    I have a program which is scheduled to execute in background every day.
    Program output is printed to the screen. Simultaneously, I want to send an excel file as an attachment through email.
    This excel file would be having the same data which is printed on the screen.
    I have checked for other threads  in SDN for sending excel file as attachment, but did not find anything relavant.
    If anyone has any idea, please let me know....
    Thanks in advance - S M

    Hi,
    You can use the cl_bcs class to send email with attachments.
    Refer to the below article of mine which has the code snippet on how to send an excel file as an attachement.
    http://divulgesap.com/blog.php?p=ODI=
    Hope it helps.
    Regards,
    Ravikiran

  • Dynamic Variant for Background Programs

    Hi,
    On a Std program, I have two parameter Settlement Period and Settlement Year.
    I want to run this std program in the background with VAriant.
    The values in these variable should change automatically for every new period/fiscal year.
    I tried to user Selection variable. But no success. May be I am doing something wrong.
    Can anyone suggest any solution??
    - Harshad

    Hi Harshad,
    Once u enter the values you require on the selection screen and click on the SAVE button to save a variant, the Variant attributes screen comes up where you can provide a variant name and description.
    On this screen there is a column called "Save field wthout values". If you check this option then the values to which the selection screen variables are defaulted will change dynamically.
    So basically you have to default the selection screen new period/fiscal year in your program to the present values using a function module which im sure your using(if you need it ask me). Once you default them while saving the variant check the "Save field without values" check box against those fields.
    Hope this helps you. Please award points if it does.
    Regards,
    Ganesh
    Message was edited by:
            Ganesh Chilakapati

  • Background program running and can't figure out what it is...

    I have an IMAC desktop, I just purchased the Photoshop Elements 10 software for MAC, installed it, running fine. But now I have program that is contanstly running in the background that is slowing up all of my other applications I run while I'm working. I've checked the Activity Monitor but I can't see anything out of the norm...Does anyone have any suggestions? I'm very frustrated....

    I presume you mean that the hard drive is working on something. Again, any such process would show in the Activity Monitor. Check that again, confirming that you have "all processes" set so you can see everthing that's going on. It will be easiest to spot anything unusual if you click on the "% CPU" column header to sort by the amount of CPU time each process is using. Click twice so that the arrow is pointing downwards; then the top users of CPU time will be listed at the top. Post the name of any process that's consistently or unexpectedly using a significant amount of CPU time and we can probably figure out what's happening and offer suggestions.
    Regards.

Maybe you are looking for