Job should be "always active"

Hi...
I need to create a report that runs as a always active job, and use something like a queue, to run some specific functions in a regular time period...
But, I can't use a job that runs in a regular time period to do it... I really need a job that be always active.
How can I do this?!
Moderator message: subject corrected, please use a more descriptive one next time.
Edited by: Thomas Zloch on Sep 27, 2010 2:48 PM

Hi Thomas...
Sorry for the subject... I forgot to change it before post my message.
Well... Actually, I need to create a report that simulate a queue... almost as a schedule, but I need that this job still always active... but we can't use a standard job schedule, because we need to maintain, for examplem, some object locks...
We have an example of it, on standard jobs of SAP GRC / SLL-NFe...
What can I do?
Thanks!

Similar Messages

  • What mean that the sign of the GPS ( the arrow head) is always active although there isn't any application is opened and also after restart the phone

    What mean by, the sign of the GPS ( the arrow head) is always active although there isn't any application is opened and also after restart the phone still active

    Something is using location services. You can go into Settings, Privacy, Location Services, and see a list of what you have authorized for location services, and see a legend that tells what the display of the arrow head means and you should be able to compare it to the list to find out what app was using it.

  • How to select server in which background job should run

    Hi,
    I want to run my program as background job. I want the user to select the server, in which background job should be run, in the selection screen of my program. When it is sheduled in background the job should run in the selected server.
    How to do this?
    Regards,
    Sriram

    Hi,
    please write the code like as below.
    DATA : D_GROUP like TBTCJOB-JOBGROUP.
    use the function moulde JOB_OPEN.
      D_JOBNAME = SY-REPID.
      D_GROUP- BTCSYSREAX =  " pass the target server name Here
         CALL FUNCTION 'JOB_OPEN'
            EXPORTING
                 JOBNAME          = D_JOBNAME
                 JOBGROUP       =  D_GROUP
            IMPORTING
                 JOBCOUNT         = D_JOBNO
            EXCEPTIONS
                 CANT_CREATE_JOB  = 1
                 INVALID_JOB_DATA = 2
                 JOBNAME_MISSING  = 3
                 OTHERS           = 4.
    submit   <Program name>
                  USER SY-UNAME VIA JOB D_JOBNAME NUMBER D_JOBNO
                  USING SELECTION-SET '  var1 '   " Give varient name
                  AND RETURN.
    CALL FUNCTION 'JOB_CLOSE'
               EXPORTING
                    JOBCOUNT             = D_JOBNO
                    JOBNAME              = D_JOBNAME
                    STRTIMMED            = 'X'
               IMPORTING
                   JOB_WAS_RELEASED     = D_REL
               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.
    Hope this will helps you
    Regards
    Kiran

  • Spry Accordion always active

    When the Accordion is not focused, it is gray.
    How to disactivate this function?
    I want that it is always active.
    it forgives me, my English is not good.

    Hi Gilson,
    I'm assuming that by "active" you mean that you just want
    your accordions to always be blue? The way it works is that when
    the Accordion gets keyboard focus, it triggers these rules in the
    SpryAccordion.css file:
    /* This is an example of how to change the appearance of all
    the panel tabs when the
    * Accordion has focus. The "AccordionFocused" class is
    programatically added and removed
    * whenever the Accordion gains or loses keyboard focus.
    .AccordionFocused .AccordionPanelTab {
    background-color: #3399FF;
    /* This is an example of how to change the appearance of the
    panel tab that is
    * currently open when the Accordion has focus.
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
    background-color: #33CCFF;
    All you need to do is move those background-color properties
    into the rules for
    .AccordionPanelTab {
    and
    .AccordionPanelOpen .AccordionPanelTab {
    --== Kin ==--

  • Should I always plug my laptop to the charger or should I let the battery die before recharging my laptop

    Hi, I have a macbook pro.  I use it a lot for college and I was wondering, should I always plug my laptop to the charger or should I let the battery die before recharging my laptop? Is there a difference?  The battery of my laptop is supposed to last how long?
    Thank you alot!

    https://www.apple.com/batteries/notebooks.html
    https://discussions.apple.com/community/notebooks/macbook_pro?view=documents

  • Should I always let my iPad 3rd generation die and charge ? Takes almost close to 12 hours for a 100%  charge. Any suggestions ? iPad is over a year old

    Should I always let my iPad 3rd generation die and charge ? Takes almost close to 12 hours for a 100%  charge. Any suggestions ? iPad is over a year old and don't want to buy a new one if this problem will continue to happen. Help

    Do not let the battery drop to 0%. That is very damaging for a lithium based battery, as in the iPad. Charge at any time, for any amount.

  • Should eventListeners always be removed before executing it again?

    Hi there,
    Should you always remove eventListeners before you want to
    execute it again?
    The reason why i ask this, is because in AS 2, i remembered
    that when you used
    a listener to a key and you go to another frame ..and go back
    to the frame where the listener is
    instantiated it listens twice! So when you press the key
    once, it will listen two times.
    And when using an addEventListener within a function like
    this:
    function startListening() {
    var loader:URLLoader = new URLLoader();
    loader.addEventListener(Event.COMPLETE, completeHandler);
    can you use outside this function another function to remove
    this listener like this?
    function removeListening() {
    loader.removeEventListener(Event.COMPLETE, completeHandler);
    Or do you have to scope the line: var loader:URLLoader = new
    URLLoader(); outside the function
    to remove this eventListener?
    I am trying to understand what is the best way and why.
    Does anyone have some tips what the best way is?
    Please keep in mind that i switch from different frames. So
    when i go back to the first frame all code
    is executed again.
    And is there a way to remove an EventListener without being
    sure if it exists?
    Something like:
    if(loader.addEventListener!=null) {
    loader.removeEventListener(Event.COMPLETE, completeHandler);

    If you instantiate a variable inside a function, then the
    scope of that variable is only inside this one function. So, trying
    to remove the eventListener from outside the function will result
    in an error. If you declare the loader variable outside the
    function, then you can assign the eventListener in a function.
    Likewise, you can remove the eventListener from another function.
    If you place all of your functions in the first frame of your
    movie's timeline, you won't need to worry about duplicating
    function calls.
    As an example, paste the following code into a new empty
    movie's frame script space. Extend the timeline to about 20 frames.
    Play the movie. You'll see that the ouput window shows the number 1
    each time the movie loops. The number does not increment. Each time
    the movie loops through the first frame, the variable is reset to 0
    and then incremented to 1.

  • JMOD condition type value should be always rounded up instead of commercial

    Hi Helpers,
    I need one clarification from you all based on your expertise,
    1. JMOD condition type value should be always rounded up instead of commercial.
    2. i have been already made rounding up in the condition type JMOD in the transaction V/06. but unfortunatly not working.
    3. after that we found that there is configuration change in spro (company code setting in the indai taxation-CIN) in the Logistic general> tax on goods movement>india> basic setting> company code setting for the commercialrounding, but the same is  already ennabled with SD rounding IND.
    Need your expertise on this.How shall we make it round up always for JMOD condition value. below is an example for your further analysis.
    Example: if values UTXJ is : 8,913.40 and JMOD will be calculated based on UTXJ as 10% thats is 891.34.
    Actually this should be 892 as per the requiremen.t

    I just recently rolled off a project in Europe that had an issue similar to this.  We were having rounding issues as a result of %  discounts. 
    However, we did come up with a solution that is provided by SAP. 
    Please review OSS note 80183 on SAP rounding and the solutions provided within the note.
    I hope this helps.
    Kind Regards,
    Jason

  • What is the best way to preserve my battery? Should I always have it connected to the charger when using it or should I use it and then recharge it?

    What is the best way to preserve my MacBook Pro battery? Should I always have it connected to the charger when using it, or should I use it and then recharge it?

    Don't worry about it:
    http://macmost.com/dont-stress-about-batteries.html
    If you want to condition it once a month, go ahead:
    http://www.apple.com/batteries/notebooks.html

  • Can you send PDFs made in Photoshop to a printer or should they always be InDesign?

    I'm new to printing and I was wondering whether PDFs made in Photoshop ok to send to a printers or should they always be made in InDesign?

    A PDF file is a container file. It holds whatever you save to it, which can be any combination of vector images, raster images, fonts, etc.
    A PDF file saved from Photoshop is nothing more than a PDF container file with its only content being an embedded raster image. It won't print one bit different or better than if you had saved the image as a TIFF or high quality JPEG.
    If that image was created at 72 dpi, then the PDF saved out of Photoshop will print like any 72 dpi image; lousy. As Cozmicone mentioned, typical print resolution for a raster image is what matters. Standard in the printing industry is 300 dpi.

  • Job code mapping with activity type

    Hi friends,
    I want to map the Job code to an Activity type.
    Pls let me know the table name for job code to activity type mapping or through which transaction, this is done.

    Hi Dilek,
    thanks for the reply.
    Basically I am working in PS.
    I have a case whr when user is entering timesheet, he gets an error message, create a master record for 158312/DEF.
    for this, basically we have to maintain rates in KP26 for Cost Center and act type.
    If I check the PA20 record for teh user, he is assigned to
    Cost Ctr: 158312
    Job key: 30020, and
    Activity Type: DEF
    Here when I contacted with the planning dept to maintain rates for 158312/DEF, they told me that they use  activity type DEF as the default and they never maintain rates for this. they told me taht Basically the job code is not mapped to an activity type, the only way we would know what the problem is, is to check the infotype 1 and 315 and the job code to activity type mapping table.
    So I just checked with you guys to know which table they are referring too..
    regards,
    Madhu

  • Location always active in status bar?

    Why is the location icon always active in the status bar at the top of the windows phone start screen? does anyone else have this issue on there Nokia Lumia 920. This is ridiculous and what i believe to be the culprit in the battery draining issue i am experiencing with this phone.

    Already answered here

  • Location Services: Setting Time Zone... Always Active

    Just wondering if anybody else is experiencing the always active SETTING TIME ZONE setting in LOCATION SERVICES / SYSTEM SERVICES.
    It's always purple - never stops polling for location.
    I've noticed a change in the battery life for my iPhone 4 and I think this is the culprit.
    Is that setting needed for anything in particular or can it safely be turned off?
    Thanks for any advice you have!

    Grrrrrr, now (after the iOS 5.0.1 update), this is happening not only on my iPad, but also on my iPhone 4S, which never had the problem on iOS 5.0.  So, instead of going from 1 to 0 devices having the problem, I've gone from 1 to 2 after the update!  Isn't this the opposite of what was supposed to happen?
    Letting the iPhone sleep for a while, shutting it off and turning it back on, resetting it with home+power, all do nothing.  Weirdly, it *wasn't* doing this right after I did the update; it only started about a day or so later.
    ****Update: and now it's off again, but it did come on for about 10 minutes and then turned off again.  Hmmmmm. I agree that having the status bar icon enabled is a good idea, to at least be able to see when this happens and disable it if you're in a situation where battery life matters.

  • How to get list of active users with the details like samaccountname, name, department, job tittle, email in active directoy?

    how to get list of active users with the details like samaccountname, name, department, job tittle, email in active directoy?

    You can use third party software True Last Logon 2.9.You can export the file in excel for report creation.You can use the trial version this will achieve what you are looking for.
    True Last Logon displays the following Active Directory information:
    --Users real name and logon name
    --Detailed account status
    --Last Logon Date & Time
    --Last Logon Timestamp (Replicated value)
    --Account Expiry Date & Time
    --Enabled or Disabled Account
    --Locked Accounts
    --Password Expires
    --Password Last Set Date & Time
    --Logon Count
    --Bad Password Count
    --Expiry Date
    --You can also query for any other attribute (Example: Description, telephone Number, custom attibutes etc)
    Refer the below link for trial version:
    http://www.dovestones.com/products/True_Last_Logon.asp
    Best Regards,
    Sandesh Dubey.
    MCSE|MCSA:Messaging|MCTS|MCITP:Enterprise Adminitrator |
    My Blog
    Disclaimer: This posting is provided "AS IS" with no warranties or guarantees , and confers no rights.

  • My iphone 6 is always activating siri

    My iphone 6 is always activating siri in my pocket when i put pressure on my phone, is anyone else having the same problem? There seems to be no way of deactivating siri and voice control.

    If you turn Siri off, Voice Control is active. No way around that. However, you can disable Siri while the phone is locked in Settings>Touch ID & Passcode>Allow Access When Locked>Siri>Off

Maybe you are looking for