How much time it takes for a job status to get updated in to TBTCO table?

Hi all,
We have a program that fetches the Job count and job name from a third party tool(UC4) and then searches for the status of the job in the TBTCO table.
In some rare cases we found that the TBTCO table had not updated with the Job details when the call was made to it.
Do we have any SAP scheduler settings which determines after a particular time the status gets refreshed in the TBTCO table once the job is triggered?

hi may be checking Sy-subrc and using wait for X seconds should be a convenient way to code.
I doubt if there is any schedule to update the table..

Similar Messages

  • I bought a mac book pro and apple promised upgradation to lion aosx but yet nothing rcvd , want to ask how much time it takes for them to send me the code to download it (now its more than a week i purchased this mac)

    i bought a mac book pro and apple promised upgradation to lion aosx but yet nothing rcvd , want to ask how much time it takes for them to send me the code to download it (now its more than a week i purchased this mac)

    http://www.apple.com/macosx/uptodate/

  • How much time will take applyning SP11 level in ECC6.0

    Hi,
    How much time will take for appying SP11 level in ECC6.0.
    Regards,
    venkat reddy.

    hi,
    Make sure , that you increase the shared memory being utilized by database .
    In oracle we increase the SHARED POOLSIZE , that will reduce the time in ACT_700 .
    There is note which talks about the SHARED_POOL_SIZE , it should be minimum 500 mb , depending upon your total physical RAM and CPU.
    Thanks
    Prasanna

  • Determining how much time is left for HttpSession expiration

    Hi,
    Is there any way to determine how much time is left for my session to expire ? What i want to do is, if there is no activity on some page for a long time, then according to the remaining session expiration time, i want to popup a message to the user that 'so much' time is left for his session to expire. If the user wish we can reset the session expired time to its initial value and the session continues.

    Well, see, how are you going to do this even if there was a method (which there is sorta... you need to use getMaxInactiveInterval() and getLastAccessedTime() from session to figure it out yourself). What I mean is, how are you going to tell the user. The JSP can't call the browser to tell it anything, and when the user goes to another page, the timer is reset, so it'll never be below that limit after that request.
    Actually, I can think of only one way, and that is to have a JavaScript code on the page and use setTimeout function to show an alert after the needed time expires.

  • If I order an iPhone 5s (UK) online, how much will it take for it to get dispatched? It sayd October, but it doesn't say an approximate date.

    I am currently in the UK and I want to order an iPhone as the small city I live in doesn't have an Apple Store and the nearest one doesn't have them in stock, so I decided to order it as I did last year. However, I need it ASAP and it tells me that the delivery will be in October. Well, October is already tomrrow, so I was wondering whether does anyone know approximately how much time will it take for it to get delivered?
    Thank you!

    I ordered mine 21 sept.
    It still says dispatched October

  • How much time it take to rebuild an index for a table with 20 millions rows

    Hi all,
    i need to rebuild the index of a table containing 20 000 000 row (i don't know why the other people working on this didn't think of rebuilding the index regularly, because i asked and apparently it has never been done :cry: :cry:) i am not a sql developper nor a DBA so i can't mesure how long it take to rebuild the index, does any one have an idea (aproximativly of course :aie:), the other question is there any formula to use in order to calculate how often to rebuild the indexes (i can for example retieve how much rows are delated or inserted daily ...)
    Thanks again
    Taha

    taha wrote:
    :aie: that's why i am asking because i don't know (and to be sure which solution is best)
    so the table is like this (the columns) :
    45 varchar2, 5 timestamp, 30 Number no LOB columns, (15 indexes : 5 unique indexes and that those indexes uses at a maximum 4 columns)15 indexes - 100,000 deletes: this could mean 1,500,000 block visits to maintain index leaf blocks as the table rows are deleted. If you're unlucky this could turn into 1,500,000 physical block read requests; if you're lucky, or the system is well engineered this could be virtually no physical I/O. The difference in time could be huge. At any rate it is likely to be 1,500,000 redo entries at 250 - 300 bytes per entry for a total of about 400MB of redo (so how large are your redo logs and how many log switches are you going to cause).
    yes the tables is used by an application so (update, insert ) can take place at any time
    for the deletion , there is the batch which does a mass delete on the table ( 4 or 5 time each day)
    You haven't answered the question - how long does it take to do a sample batch delete.
    If you can enable SQL tracing, or take a before/after snapshot of v$sesstat or v$session_event for the session as it does the delete then you can get some idea of where the time is going - for all you know it might be spending most of its time waiting for a lock to do away.
    >
    "How many leaf blocks are currently allocated to the index(es) ?" how can i answer to this question ? may be if i check the all_objects table ?
    If you keep your statistics up to date then dba_indexes is a good place, cross-checked with dba_segments, and you can use the dbms_space package for more detail. I have a code sample on my blog which allows you to compare the current size of your indexes with the size they would be if rebuilt at some specific percentage: http://jonathanlewis.wordpress.com/index-sizing/ (It's such good code that Oracle Corp. has copied it into MOS note 989186.1)
    Regards
    Jonathan Lewis

  • How much storage it takes for iso8 update as i have iphoce 5c 8gb

    I have iphone 5c 8gb.
    I need to update to iso8 but my concern is how much memory the update takes.
    Because i got only 5gb space on board, If it takes more than 1.5 to 2 gb then i will leave with no space at all to apps, songs and music.
    Please help me.

    If your ipad has only 797 MB free and it tells you that you need 3.4 GB to update, then you need to begin deleing files, whatever it takes to free up space.
    Consider...
    Delete apps you don't use.
    Delete videos you don't want (these take up a lot of space).
    Do you have a lot of emails stored on the device?
    Are there apps that store data files, like a PDF reader?  If there are a lot of these, you need to delete some.
    The bottom line is that you need to remove data and/or apps on your device to make more storage available.
    But for videos and photos, always sync them to a computer first to archive them.

  • How much time iphone take to restore 10gb

    while connecting to itunes it shows restore so if i off icloud it wil not show?

    taha wrote:
    :aie: that's why i am asking because i don't know (and to be sure which solution is best)
    so the table is like this (the columns) :
    45 varchar2, 5 timestamp, 30 Number no LOB columns, (15 indexes : 5 unique indexes and that those indexes uses at a maximum 4 columns)15 indexes - 100,000 deletes: this could mean 1,500,000 block visits to maintain index leaf blocks as the table rows are deleted. If you're unlucky this could turn into 1,500,000 physical block read requests; if you're lucky, or the system is well engineered this could be virtually no physical I/O. The difference in time could be huge. At any rate it is likely to be 1,500,000 redo entries at 250 - 300 bytes per entry for a total of about 400MB of redo (so how large are your redo logs and how many log switches are you going to cause).
    yes the tables is used by an application so (update, insert ) can take place at any time
    for the deletion , there is the batch which does a mass delete on the table ( 4 or 5 time each day)
    You haven't answered the question - how long does it take to do a sample batch delete.
    If you can enable SQL tracing, or take a before/after snapshot of v$sesstat or v$session_event for the session as it does the delete then you can get some idea of where the time is going - for all you know it might be spending most of its time waiting for a lock to do away.
    >
    "How many leaf blocks are currently allocated to the index(es) ?" how can i answer to this question ? may be if i check the all_objects table ?
    If you keep your statistics up to date then dba_indexes is a good place, cross-checked with dba_segments, and you can use the dbms_space package for more detail. I have a code sample on my blog which allows you to compare the current size of your indexes with the size they would be if rebuilt at some specific percentage: http://jonathanlewis.wordpress.com/index-sizing/ (It's such good code that Oracle Corp. has copied it into MOS note 989186.1)
    Regards
    Jonathan Lewis

  • How many days it takes for the epub file to get approved by apple itunes store?

    Hi,
    We are in a publishing company and now have got some work where we are converting the book to epub. We have all the basic requirement for registering for itunes store. The Printed version of the book is going to be launched on a specific day, wanted to know how many days it will take for the epub file to be approved and be made available on ibookstore provided the files is proper as per apples requirement.
    Kindly suggest.
    Thanks & Regards
    Rishi

    Ok, that's not so good for me.
    But thank you

  • How long does it take for an iphone 4s to get fixed if doesn't call or text

    my phone doest call o text and it has been taken to apple store, it has been a week now and i am starting to wonder how long it is going to take

    Have you tried calling Apple?

  • How much time take unlock

    I have recieved the confirmation from my carrier (sunrise Switzerland) that my iphone will be unlocked in three days.
    Please can you help me and inform how much time will take the unlocking because three days has gone.

    iPhone: Troubleshooting authorised unlock issues
    http://support.apple.com/kb/TS3198

  • Ctios failover. how much time spent to to recover the ctios agent

    on cce 7.5.x    
    using  /load 0  to put agent on not ready after ctios failover. how much time is needed for agent to do a ready request?.
    or using /load 1 (i think is the default behavior) this cause to log out agent. soo How much time must left to do a log in again.
    any ideas?

    This is what SRND Guide of 7.5 says
    When the active CTI Manager Service or PG software fails, the PG JTAPI Gateway/PIM detects an OUT_OF_SERVICE event and induces a failover to the redundant (duplex) PG. Because the redundant PG is logged into the backup Unified CM subscriber CTI Manager Service already, it registers the IP phones and configured dialed numbers or CTI route points automatically. This initialization service takes place at a rate of about 5 devices per second. The agent desktops show them as being logged out or not ready, and a message displays stating that their routing client or peripheral (Unified CM) has gone off-line. (This warning can be turned on or off, depending on the administrator's preference.) All agents and supervisors lose their desktop third-party call control functionality until the failure recovery is complete. The agents and supervisors can recognize this event because call control action buttons on the desktop will gray out, and they will not be able to do anything with the desktop. Any existing calls should remain active without any impact to the caller.
    Regards

  • HT4623 I found an update ios6 in my iphone settings and then I tapped on  install ,but it is going on and nothing is displaying .Only apple logo is displaying  frequently.It has been happening  for 13 hours.my question is how much time it will take to upd

    Can anybody help in my concern below
    I found an update ios6 in my iphone settings and then I tapped on  install ,but it is going on and nothing is displaying .Only apple logo is displaying  frequently.It has been happening  for 13 hours.my question is how much time it will take to update ios

    Read this: iOS 4: Updating your device to iOS 5 or later
    ... oh I think it is a 3gs or a 3
    This makes a difference. What does it say in Settings > General > About?

  • How much time does it usually takes for moderator approval for a post

    How much time does it usually takes for moderator approval for a post?
    I have a post posted on Mar 9 and it is still pending for moderator approval.

    It's impossible for anyone here to say. It could be very quick, or a given book may never appear. As RG said, it's completely up to the publisher in the applicable country.
    Regards.

  • I published my app and it shows us (waiting for review) and how much time it will take to (Ready for sale) ?

    i published my app and it shows us (waiting for review) and how much time it will take to (Ready for sale) ?

    5-10 days or longer.

Maybe you are looking for

  • How to set file names?

    Using TCS 5, RH11, FM12, all patched up, if I set a marker, such as "Filename" in FrameMaker, can RoboHelp use the contents of that marker to set the file name of the HTML file it creates? How? Thoughts? Cheers, Sean

  • Songs not playing in iTunes9 and no sound on computer in general

    After doing the ITunes 9 upgrade when I click on a song it will not play. There is no movement in the progress bar for each song. Also when trying to get media files to play on VLC or Quicktime there is no sound either. Some help would be great. Much

  • Photos from computer have lines running through them on iphone???

    I have had no trouble getting my photos of my cute little baby girl from my computer to my iphone. However it is useless b/c there are weird lines running through all the photos making it impossible to view the photos. I thought this would be a great

  • Recording straight to hard drive

    Some friends of mine what to shoot on a Sony HDV V1U, and record straight to an external hard drive. Is the proper procedure to start FCP on a lap top and capture just like it was from a tape through fire wire or is there a better method for this? Th

  • Live Cache DR Setup

    Dear All, I am planning to make a standy server for Livecache for my SCM system. Server Details is as follows: Scm : SAP SCM 5.10 Lc version :KERNEL 7.7.04 BUILD 037-123-218-794 DBM Server : DBMServer 7.7.04 Build 037-123-218-794 O/s : AIX Database :