How to know the current Task/Job ID in which a request is waiting for

Hi Team,
Is there any table/view in IDM 7.2 that provides current task/job ID number a request is waiting for?
Even though the last completed phase of the request can be seen from admin UI that only shows the description of the completed steps but not the technical details like task ID/Job ID of the current step.
Knowing the current step/Job ID helps the admin a lot to directly go the step when the request is waiting for long/got failed etc..
Regards,
Venkata Bavirisetty

Hi Matt,
Thanks for your response.
I read few articles in your blog couple of weeks before and they are very much informative.
The information provided in the provisioning queue just shows the task ID and no.of requests (without request nos) waiting in that task.
Basically the question I have mentioned in my previous post is not related to any specific task type. It is like using request no we wanted to know complete request history specially the current task (task ID) at which the request is waiting for.
Regards,
Venkata Bavirisetty

Similar Messages

  • How to know the current patch or version of 11g

    How to know the current version of the 11g with patch info?

    Check this
    http://obi9.blogspot.com/2012/11/determining-current-patch-levels.html
    If helps pls mark

  • How to find the current running jobs.

    Hi All,
    Can u please tell me how can i find the current running jobs in oracle.
    OS : windows
    DB VERSION: 10.2.0.1
    Thanks,
    srini...

    Don't think so..
    For the running jobs ( the ones in flight right now..)
    if you used the scheduler
    select owner , job_name , running_instance, session_id from all_scheduler_running_jobs
    order by owner , job_name
    If you used dbms_job ( you really should the scheduler ...)
    select job, instance, sid from dba_jobs_running
    order by instance, job
    /

  • How to know the current version of SAP

    Hi everybody,
    How can we know the current version of SAP we are working with? Is there any function module for it?
    please let me know.
    thanks in advance,
    regards,
    mounika.

    goto sap...From MENU  System-->Status...it will open a popup..Under component version..the is a click icon...click on it and it will open another popup where u will find details...example...
    SAP_BASIS     620
    SAP_ABA                     620
    SAP_APPL     470
    SAP_HR                     470
    EA-IPPE                     110
    So, basis is on 6.2 & abap gui is on 6.2 where as abap application is on 4.7

  • How to know the current jvm name executable ?

    Hi,
    I should want know what is the current jvm executable, from a java program. For exemple c:\foo\bar\bin\java.exe, or /home/foo/bar/java_1.6/jre/bin/java and other.
    With system properties, I can know java home, version, vendor etc of JVM, but how I can know "bin\java.exe" or other ?
    Thanks.

    Yes.
    I see java.runtime.name=Java(TM) SE Runtime Environment, I see the classpath, I see java.runtime.version=1.6.0_14-b08, I see java.home=/home/herve/java/jdk1.6.0_14/jre, but I don't see the name of java programme.
    For me it is something like {java.home}/bin/java. I don't see that in system properties.

  • How to know the current tab

    Hi everyone,
    Does annyone knows if there is an indicator that indicate you the current tab where you are working in?
    I want my BSP to do different action depending on wich tab the user is in.
    I'm working in the BSP CRMD_BUS2000126 for the activities.
    Thanks!

    This is probably a question better suited to the BSP forum.  I also noticed that your application name starts with CRM.  I'm not familiar with CRM and its particular take on BSP, but I can tell you how I do this in my BSP applications:
    First I use the phtmlb:containerTabStrip to create my tabstrip.  I use an application class attribute to store my selectedIndex (the current selected Tab).
    <phtmlb:containerTabStrip id                    = "TabStrip15"
                              collapsed             = "FALSE"
                              collapsible           = "FALSE"
                              firstVisibleItemIndex = "1"
                              hasContentConnector   = "TRUE"
                              maxVisibleItems       = "5"
                              onCollapse            = "myCollapse"
                              scrollableItems       = "TRUE"
                              selectedIndex         = "<%= application->SELECTED_date2       %>" >
    Now I use MVC, so in my DO_HANDLE_EVENT method of my controller class I trap the tabstrip event and query for the selected tab:
    data: event_id type string.
      event_id = event.
      if htmlb_event is not initial.
        event_id = htmlb_event->id.
      endif.
      data: model type ref to zcl_bsp_m_eqi_selection.
      data: appl type ref to zcl_eq_bsp_eqi.
    ****Get a pointer to the Model Object.
      model ?= get_model( 'MS' ).
    ****Get a Pointer to the application Object
      appl ?= application.
      if event_id cs 'tabstrip15'.
        data: event1 type ref to if_htmlb_data.
        event1 = cl_htmlb_manager=>get_event_ex( request ).
        if event1->event_type eq cl_phtmlb_containertabstrip=>co_phtmlb_event_tab_selected.
          appl->selected_date2 = event1->event_server_name.
        endif.
      endif.

  • How to know the current directory

    Could somebody write me an example to print the current directory I'm working on.
    e.g.
    java A
    d:\My Documents\source\A.java
    Thank you.

    Could somebody write me an example to print the
    current directory I'm working on.
    e.g.
    java A
    d:\My Documents\source\A.java1. This is not a directory
    2. A.class will be run, not A.java
    3. You'Ll never know where your sourcecode is
    4. Where your program thinks it is can be determined using
    new File(".")

  • How to know the current VI is aborted ?

    i hv three VI A.vi is opening B.vi and it opens C.vi,,,,,,, now at one time only 1 VI is  opening at the task bar,,, and even i can go back.
    i have made that program,,,,,, but the problem is ,,, while i m starting from A.vi and ,,, go to C.vi   via B.VI,.,,, and,, after stoping C.vi,.....  if i open A.vi from the folder it is still running(in the running stage),,,, so...........
    i want to add the fuctionality,,, in which, i want to find the event..... when my current VI is aborted i want  the A.vi to be aborted....
    HOW ITS POSSIBLE...
    Waiging for reply,,,
    Manisha
    Attachments:
    C.vi ‏20 KB
    A.vi ‏19 KB
    B.vi ‏27 KB

    Maybe you can tell us what you are trying to achieve. I simply cannot make much sense out of your code.
    At least try to put a small wait in each loop, right now they all spin millions of times doing nothing. Maybe you could use an event structure?  You should also set your buttons to latch when released. Currently, e.g. the "Go back to B" button inside c.vi is set to switch until released, meaning you'll probably run the TRUE case a few thousand times whenever you press the button. Also familiarize yourself with dataflow. You seem to think that you set the boolean flag value before the while loop starts, however LabVIEW does not guarantee that this happens in this order because there is no data dependency.
    What are you trying to do? I am sure there are better ways.
    LabVIEW Champion . Do more with less code and in less time .

  • How to know the current resolution of screen?

    Help me please

    Actually, that's misleading. It's Toolkit.getDefaultToolkit().getScreenSize(). That gets the X x Y pixel count of the screen. Toolkit.getDefaultToolkit().getScreenResolution() gives the DPI of a screen (supposedly).

  • How do you reset your password if you dont know the current password

    Does anyone know how to reset your password if you do not know the current password

    If you have forgotten your Apple ID password: If you forgot your Apple ID password
    If it's your iPhone passcode; then you need to do a restore: Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled

  • Don't know how to calcualte the current page in smartform for second layout

    Hi All ,
       Iam creating an smart form which contains two layout in a single form. I need the page number to be displayed as followes.
    1st layout : 1 of 2
                     2 of 2.
    in 2nd layout 1 of 2.
                        2 0f 2.
    I dont have any issues in printing total number of pages. i dont know how to calculate the current page for the 2nd layout. <<text removed>>
    Edited by: Matt on Jun 25, 2009 5:09 PM - Removed ALL CAPITALS from subject

    Hi,
    Create a New window of Type 'Final Window' and Position it in the layout where u want to display the page numbers.
    Now, create a text element in the window and create the text like below in the text element.
    P1 Page &SFSY-PAGE& of  &SFSY-FORMPAGES(3CZ)&
    &SFSY-PAGE&                            - Current Page No.
    &SFSY-FORMPAGES(3CZ)&         - Total No of Pages.
    Note: dont forget to create the window type as 'Final Window', otherwise it will show ssome junk...
    Hope it helps!!
    Rgds,
    Pavan

  • How do I change the password in iPhone without knowing the current PW?

    I synced my iPhone 4S and know my access password very well, yet the phone tells me it's wrong. I have no access to my data and can't make phone calls as the access is denied.
    How can I retrieve control over my phone again? Is there a way to change the pw without knowing the current one?
       ---- HELP!!!

    LOST PASSCODE
    You may be able to reset the passcode by restoring the device.
    Connect the device to the computer with which you normally sync and open iTunes.
    Note: If iTunes prompts you to enter the passcode, try another computer that you have synced with. Otherwise, go to "If you have never synced your device with iTunes", below.
    Right-click the device in the left column and select Back up.
    When the backup is complete, select Restore.
    When finished, restore from your most recent backup.
    Otherwise read this
    If that doesn’t work  you will need to perform a factory restore to remove it. Or read:
    Enter Wrong passcode
    http://support.apple.com/kb/ht1212

  • How long has the current SPID/Agent Job been running

    I have a SQL Agent Job that has 15 steps. Each step executes the same CLEANUP sproc against a database. STEP1 executes CLEANUP against DB1, STEP2 executes CLEANUP against DB2, etc. These 15 databases all have the exact same schema (that was the design
    decision - not going to change).  The job can run for days. I want to have a MAXMINUTESTORUN configuration (probably set to 4 hours) that the sprocs will check and when that is exceeded the sprocs will nicely terminate and then pick up  again
    the next time. I want to be able to ask in the sproc, how long has the spid/agent job been running. How is the best way to do this?

    Well, the idea for that, 
    the clean up always runs first on the database it never before and then it will run against the database that has oldest 'Lastrun". you can change this logic if you need.
    Using the demo scripts above, try this ...after the scheduling the job.
    1. run the job once..it will run the procedure for testA
    2.check the output of select * from msdb.dbo.cleanupjob
    3. run the job again..it will run the procedure for testB(the reason it picks this is because the cleanup procedure never ran for database testb)
    4.check the output of select * from msdb.dbo.cleanupjob
    5. run the job again..it will run the procedure for testA(the reason it picks this is because the cleanup procedure ran for database testb atleast once and 
    will the pick the  oldest "last run " database)
    6.check the output of select * from msdb.dbo.cleanupjob
    you can also ,,replace this block
    select top 1 @a= databasename from
    (select top 1 1 source,databasename from cleanupjob
    where (lastrun is null)
    union
    select top 1 2 source,databasename from cleanupjob
    where (lastrun in (select min(lastrun) from cleanupjob where lastrun is not null))
    order by source) A
    with 
    select top 1 @a=databasename from msdb.dbo.cleanupjob where isnull(lastrun,'19000101') in (select min(isnull(lastrun,'19000101')) from msdb.dbo.cleanupjob)
    order by id
    Hope it Helps!!

  • How to get to know the current selected service?

    Can anyone tell me how to get the current selected service in MHP? I tried to find one but no result. Can javax.tv.media.MediaSelectControl.getCurrentSelection() gives me the answer?

    servicecontext.getService()

  • How to know the total page number of the standard report

    How to know the total page number of the standard report?
    If I insert a graph, a table, or text into the end of the standard report, how to know how much space is left for the current page?

    Hello Net,
    Unfortunately, we do not have any VIs in LabVIEW that can figure out the number of pages of a standard report. However, with the use of ActiveX calls you can achieve this task. Here are a couple of discussion forums which discuss this:
    Excel Page Numbering with ActiveX:
    http://forums.ni.com/ni/board/message?board.id=170​&message.id=194479&requireLogin=False
    Number Pages in Word Report:
    http://forums.ni.com/ni/board/message?board.id=170​&message.id=162972&requireLogin=False
    There is also great documentation on using ActiveX on msdn. You can search this document for page number objects. Here is a link to this:
     http://msdn2.microsoft.com/en-us/library/aa223048(​office.11).aspx
    Please refer to these links. If you still have questions please feel free to let us know so we can assist you.
    Thank you
    Best Regards,
    Dominic L.

Maybe you are looking for

  • Data Commit throwing an error.

    This is the way I commit data:             protected function btnCommit_clickHandler(event:MouseEvent):void                 baa_data_svc.updt_SBJ(bAA_SBJ);                 data_chngd = false; When I try to re-open the form after a commit (shown above

  • Right speaker no longer works?

    Hey everyone. So the right speaker on my Macbook Pro just stopped working properly. When I go into the system preferences > sound > output and try to just have it come out of the right speaker (instead of having it balanced between the 2), it comes o

  • Zero balance acount

    Dear experts please let me know the zero balance acount shoud be open item maagement or not dipak

  • N86: something's eating internal memory

    Hello there, I own this little good buddy called N86, and now that I have starting getting used to of it, space cruch is the new creepy thing, i have to deal with. This has got 80MB of internal memory (C:, too low), and after 4 months of use, it says

  • TS1718 Rental Video Sound Quality

    I have rented a video through iTunes and the sound quality is poor. Has anyone else had this problem? The sound crackles and the actors words are off time from the movement of their mouths.