How to record who run a runbook and with some parameters?

Hello,
I would like to record who run the runbook and with some parameters.
There is some option build in at Orchestrator that will give me that info?
Thanks!

Hi,
Logging is not really the best Choice, like Stefan mentioned, SQL Database will grow very fast.
For the Input Parameters, you can add a Textfile Activity to write your own Lofgile.
To get the User, which has startet teh Runbook, you Need to query the SQL Server, but i created a Runbook for that, so you Need to Invoke my Runbook in your Runbook, and you will receive the User which started the Runbook
RB can be found here:
https://gallery.technet.microsoft.com/Get-User-Informations-c3e64d6e
Seidl Michael | http://www.techguy.at | twitter.com/techguyat |
facebook.com/techguyat |
youtube.com/techguyat

Similar Messages

  • HT4623 How to switch Philippines store to update and purchase some of my application

    How to switch Philippines store to update and purchase some of my application

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3. Tap on your Apple ID
    4.Tap "View Apple ID"
    5. Enter your user name and password.
    6. Tap "Country/Region."
    7. Tap "Change Country/Region"
    8. Select the country/region where you are located; re-select country/region even if it is correct
    9. Tap "Done".
    Note: If the change doesn't take effect, sign out of account and sign in again.

  • How to get users from Organizational Unit and with worker's subgroup

    Hi
    I am looking for a f. module to get the list of users from specific Organizational Unit and with specific worker's subgroup.
    I found f. module SWI_GET_USERS_OF_ORG_UNIT but it seems not working and only returns the users, how can I narrow the selection to get only from specific worker's subgroup?
    Thank you

    Hi,
    Try with FM RH_STRUC_GET with following parameters:
    ACT_OTYPE = O
    ACT_OBJID = worker's subgroup
    ACT_WEGID = SBESX
    Most important is to specify OBJID as the workers's subgroup, values for the others parameters may vary.
    Cheers.

  • Use hyperlink to open another page , and pass some parameters to that page

    Hi
    Thank you for reading my post.
    How i can use hyperlink to open another jsp file in a new window meanwhile pass some parameters to it.
    for example i need something like this :
    http://127.0.0.1:8080/myProj/faces/Viewmessage.jsp?messageID=10
    i can not use session bean because i must open that in a new window and use hyperlink not Action
    Thank you

    I tried the following in the equivalent of your Viewmessage (page bean):
            ExternalContext eContext = FacesContext.getCurrentInstance().getExternalContext();
            String text = "Parameters: ";
            Iterator it = eContext.getRequestParameterNames();
            Map requestParams = eContext.getRequestParameterMap();
            while (it.hasNext()) {
                String key = (String)it.next();
                String value = (String)requestParams.get(key);
                text += "; " + key + " = " + value;
            staticText1.setText(text);That works as expected when you reach that new page via a hyper link.
    The session object is also the same as in your `old' window. So be careful about synchronization!
    I hope this helps.
    -- Marco

  • How to create an interactive alv report in which some parameters

    hi all,
    i want to create an interactive alv report in which some parameters in selection screen
    & when fill those & press f8 then an alv list display will show & when user double click on
    any row then those contents get shown in header details of module pool program  which call by
      tcode mentioned in same alv .And same an interactive alv report used for change & display.
    please help me give me some code same as  required above.
    ketan
    abap consultant.
    Edited by: ketan pande on Feb 14, 2009 6:09 AM

    Hi Ketan,
    Please find Sample Code.
    TYPE-POOLS:slis.
    DATA:
      w_carrid TYPE scarr-carrid,
      it_fieldcat TYPE slis_t_fieldcat_alv,
      fs_fieldcat LIKE LINE OF it_fieldcat,
      it_eventcat TYPE slis_t_event,
      fs_eventcat LIKE LINE OF it_fieldcat.
    DATA:
      t_spfli LIKE STANDARD TABLE OF spfli,
      fs_spfli LIKE LINE OF t_spfli,
      t_sflight LIKE STANDARD TABLE OF sflight,
      fs_sflight LIKE LINE OF t_sflight.
    SELECT-OPTIONS:
      s_carrid FOR w_carrid.
    START-OF-SELECTION.
      SELECT * FROM spfli INTO TABLE t_spfli WHERE carrid IN s_carrid.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program      = sy-repid
          i_callback_user_command = 'PICK'
          i_structure_name        = 'SPFLI'
        TABLES
          t_outtab                = t_spfli
        EXCEPTIONS
          program_error           = 1
          OTHERS                  = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *&      Form  PICK
    FORM pick USING command LIKE sy-ucomm
                    selfield TYPE slis_selfield.
      READ TABLE t_spfli INTO fs_spfli INDEX selfield-tabindex.
      CASE command.
        WHEN '&IC1'.
          SELECT * FROM sflight
          INTO TABLE t_sflight
         WHERE carrid = fs_spfli-carrid
           and connid = fs_spfli-connid.
          CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
           EXPORTING
             i_program_name               = sy-repid
           I_INTERNAL_TABNAME           =
             i_structure_name             = 'SFLIGHT'
           I_CLIENT_NEVER_DISPLAY       = 'X'
           I_INCLNAME                   =
           I_BYPASSING_BUFFER           =
           I_BUFFER_ACTIVE              =
            CHANGING
              ct_fieldcat                  = it_fieldcat
           EXCEPTIONS
             inconsistent_interface       = 1
             program_error                = 2
             OTHERS                       = 3
          IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
          CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
           EXPORTING
           I_INTERFACE_CHECK              = ' '
           I_BYPASSING_BUFFER             =
           I_BUFFER_ACTIVE                = ' '
             i_callback_program             = sy-repid
           I_CALLBACK_PF_STATUS_SET       = ' '
           I_CALLBACK_USER_COMMAND        = ' '
           I_STRUCTURE_NAME               =
           IS_LAYOUT                      =
             it_fieldcat                    = it_fieldcat
           IT_EXCLUDING                   =
           IT_SPECIAL_GROUPS              =
           IT_SORT                        =
           IT_FILTER                      =
           IS_SEL_HIDE                    =
           I_DEFAULT                      = 'X'
           I_SAVE                         = ' '
           IS_VARIANT                     =
            it_events                      = it_eventcat
           IT_EVENT_EXIT                  =
           IS_PRINT                       =
           IS_REPREP_ID                   =
           I_SCREEN_START_COLUMN          = 0
           I_SCREEN_START_LINE            = 0
           I_SCREEN_END_COLUMN            = 0
           I_SCREEN_END_LINE              = 0
           IR_SALV_LIST_ADAPTER           =
           IT_EXCEPT_QINFO                =
           I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
         IMPORTING
           E_EXIT_CAUSED_BY_CALLER        =
           ES_EXIT_CAUSED_BY_USER         =
            TABLES
              t_outtab                       = t_sflight
          EXCEPTIONS
            program_error                  = 1
            OTHERS                         = 2
          IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
      ENDCASE.
    ENDFORM.                    "pick
    Hope this will Be Helpful
    Thanks
    Kalyan

  • 5th gen Nano playing songs slower and with some digital "noise"

    Recently I have notice my 5th gen Nano playing songs slowere and with digital "noise" when out speed walking with the pedometer on...anyone experience this and know what could be causing it?

    I'm also having this issue. It started on Friday. It slowed down my music towards the middle of the song and if I change the song it is OK for a bit and then it gets the digital noise and slows down again. I have no idea what is causing it. My ipod is less than a year old. I'm going to try and reset it tomorrow I think. The trouble is driving me NUTS.

  • How can I re-run the SMC and EFI driver updaters ?

    When I bought my iMac Intel 20" in mid-2006, I immediately had a problem with the video driver when the computer woke up from sleep : the screen was badly flickering.
    After lengthy talks with Apple, I was sent two updaters (one for the SMC and one for EFI) which solved the problem. Just to make sure, I deactivated completely the energy saver.
    No problem for two years and a half.
    Last night, for a reason unknown to me, the computer went into sleep mode and when it woke up, the whole screen was flickering and had vertical lines in it, despite having up-to-date SMC and EFI drivers.
    Assuming that they had been corrupted, I wanted to re-run the updaters. But the computer refuses, saying that it is not needed.
    So, my question is "HOW CAN I FORCE A RE-RUN" OF THE SMC AND EFI UPDATERS ?"
    I have tried everything else, resetting the PRAM, resetting the SMC, tinkering with the monitor settings. But nothing works.
    I believe that running again the updaters is the only possibility left, but they are up-to-date
    Here is a summary of the iMac system info :
    iMac (20-inch, Early 2006) IM41.0055.B08 (EFI 1.1) 1.1f5 (SMC 1.0).
    Many thanks in advance for any suggestions
    Patrice
    PS : I have tried to contact the "experts" at Apple Support but, because my machine is two years old, they want me to buy time to ask this question from them, despite the fact that the problem stems clearly from a faulty design at the beginning of the iMac life, and that the knowledge base says that there is no unresolved issue presently with this model !
    Well, the problem is still there after two years and I only avoided it by deactivating the energy saver.
    But Apple never mentioned how to force running an updater if the machine does not want to ...

    You can restore a backup only by using the iOS Setup Assistant.
    iOS: Back up and restore your iOS device with iCloud or iTunes

  • Who runs this company and where are they hiding?

    How is it that Verizon has no problem taking your money.......but has no desire to give back what is yours?  I returned something for $265.00 almost a year ago and no credit has yet to be seen.  I have had my service turned off several times and also the $5.00 late fee.  No one.... I mean NO ONE  that I have talked with which includes managers on the phone and managers in the store can handle this problem.  However I keep getting those harassing phone calls and texts about my service being turned off.  I am so tired of being harassed by Verizon not to mention all the time they have taken out of my schedule and my life to stay on the phone to figure things out.  It has been a year gone by and they want me to hold on the phone will they attempt to figure this out....WHO has this kind of time?  How many times do you have to tell someone a story to get things done?  They are harassing me over something that is their mistake......they need to be held accountable and quit harassing people and fix their issues.  Where are the people that wear the pants in this company?  That is who I want to talk to.  Not someone who has no authority to help a customer who is right and they are the ones WRONG.

    I am sorry to learn that you have some unresolved billing concerns Terrina! Your satisfaction & billing accuracy are paramount to us! Please reply to the direct message that I sent you and I will review your account for accuracy
    AntonioC_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Re: how can record video+audio on j2me and java also?

    You can capture video similar to the way you capture audio or images.
    Player p = Manager.createPlayer("capture://video");After you have the player you can get the RecordControl and VideoControl
    recordControl = (RecordControl) p.getControl("RecordControl");
    videoControl = (VideoControl) (p.getControl("VideoControl"));You can get the content type from the record control. Use rc.startRecord(); to begin the record process.
    There are some steps you will need to fill in, such as prefetching, setting the display location, etc. The snippets above should be enough for you to start your research though.

    You can capture video similar to the way you capture audio or images.
    Player p = Manager.createPlayer("capture://video");After you have the player you can get the RecordControl and VideoControl
    recordControl = (RecordControl) p.getControl("RecordControl");
    videoControl = (VideoControl) (p.getControl("VideoControl"));You can get the content type from the record control. Use rc.startRecord(); to begin the record process.
    There are some steps you will need to fill in, such as prefetching, setting the display location, etc. The snippets above should be enough for you to start your research though.

  • How can I parse email activation link and do some action?

    I have som email activation link
    http://localhost:8085/application/activate.jsf?id=10&key=35435454654654654646
    I want when user clicked on this url ,
    automatically do action in bean and activate his account or not.
    I receive parameters key and id from requestParameterMap, but I do not want put on the page commandLink and do action after clicking on it.
    key = (String) FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap().get("key");
        id = (String) FacesContext.getCurrentInstance().getExternalContext()
                .getRequestParameterMap().get("id");
        How can I do this?
    I have some method activation () and I want run it after receiving key and uid ,
    May be I need phase listener? If yes, can you provide simple example.

    I'm afraid you'll have to use some kind of action listener; that's how jsf commandLink and commandButtons are design to work
    OR
    you could achieve your goal by writing a servlet mapped to the url . capture your request parameters and do the activation in your servlet.

  • How to print out document list items (and with all comments!)

    Hi all,
    I am wondering how to get a good printout of document lists.
    In a web application I have some document list items and the users are adding many comments in it, so that the document list item doenst show all in the initial view, but scroll buttons to navigate up and down.
    I was surprised to read that the standard print functionality doesnt support document items.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/43/68ce8391886e47e10000000a422035/content.htm
    How can I print out a list of all document list items with all comments?
    Ist there a workaround?
    thanks in advance for sharing your experiences, br, Michael

    Thanks guys for trying to help me...
    Gabriel, I not wanna do "a lot of trix" to get this out of iCal when it should be solved by iCal (from my point of view).
    Dancing Brook, Yes I hope we will see that in the future. I am convinced that there is many of us out there who want to see that function in iCal, even if they not really missed it yet.
    I have already sent a request to iCal feedback (hope they noted). Maybe they will if we are many doing so...

  • Run DB Verify and has some files corrupt. Need help

    In our system, after we run the DB Verify and two data files have the following message:
    Page 254582 is marked media corrupt
    Page 254583 is marked software corrupt
    Page 254584 is marked software corrupt
    Page 254585 is marked software corrupt
    Page 254586 is marked software corrupt
    Page 254587 is marked software corrupt
    A few questions:
    What is the difference between the 'media corrupt'and 'software corrupt'?
    How to verify if the data is really corrupted or not?
    If is corrupted, is possible to repair it?
    How to recover from this?
    In general, what are the procedures after finding files are currupted?
    Thanks for advises.

    While I think that Mylenium and Dec9 have solved your problem with installation, here is a CHECKLIST on installing most Adobe programs, that might also help.
    Good luck,
    Hunt

  • How to open a report without refreshing  and sending some param value

    we have a summary report which has links to the detail report.For example the summary report has data like
    Countries        EmployeeCount
    UK                5
    US                6
    China                7
    Total                18
    When we click on China it must show the Employees whose country is China (detail report) When we click on Total it shows Employee of all countries UK,US,China...
    Now when we run the summary report online say at 5:10 it shows the staus of countries at 5:10.Say the report is open while an employee of china is moved from China to Uk.But when we open the detail report it shows China count as 6 which should actually be 7 according to the summary report run time.
    A similar problem exist when we schedule the report .When we schedule the summary report and detail report at same time..And then try to open the scheduled instance of detail report from summary scheduled instance ,It only works fine if no parameter is passed to openDocument url.
    Say suppose I click China on summary report the Value China should be passed to detail report as Country.But whenever we try to open a scheduled instance of Detail Report along with a parameter using openDocument Url.It refreshes the whole data even though refresh is set to 'N'.So the scheduled data is lost..Even if we try for Drillfilters in detail Report we cannot set it at runtime using open document Url.

    Mihail - I detailed a couple of approaches here: Re: Application Link
    Scott

  • Query to Find what SQL Server services running, what status and with what service account

    I need to check what SQL Server services are running(engine,agent,IS,AS,RS,browser and Full text) and what is the present status and what service accounts are been used by them on several servers in a single shot.
    Could any one help me in finding a good script for the same.

    I have been looking for the same thing, the issue I am running into is finding the Actual Service Name.  I know this question is old, and I personally do not understand the reply. 
    so Far I have the following:
    DECLARE @ServiceAcount NVARCHAR(128);
    SET @Service = 'No Return Value'
    --MsDtsServer100 (SSIS)
    EXEC master.dbo.xp_regread
    'HKEY_LOCAL_MACHINE',
    'SYSTEM\CurrentControlSet\services\MsDtsServer100',
    'ObjectName',
    @ServiceAccount OUTPUT;
    SELECT @ServiceAccount;
    I am still looking for the correct service naming for Analysis Services, Distributed Replaay Client, Distributed Replay Controller

  • How can I review my plugs ins, and disable some if needed?

    I notice that in the Windows Task Manager 'Processes' tab that my plugin-container from time to time uses quite a bit of CPU resources as well as memory. Is there a way to review my plug ins and then disable/remove/uninstall some if I wish?

    Troubleshooting Plugins
    * https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins
    Check and tell if its working.

Maybe you are looking for

  • Can I add a second monitor to my MacBook Air notebook and use both monitors simultaneously?

    Can I add a second monitor to my MacBook Air notebook and use both monitors simultaneously?  For example, have a spreadsheet open on the notebook monitor while the second monitor is displaying an architectural drawing?

  • How to make my Aluminum Casing Look new again

    How can I clean up my physical appearence of my mac so as to make it look all new and shiny. There are sever ***** and dents which I can open it up and smooth it out, but there are some scratches and spots where the paint has rubbed of and I want to

  • Automatically start iTunes when iPhone is connected

    How do I change the setting on my iphone 4 to tell itunes to automatically start when the phone is connected? The option is greyed out.

  • Recovery Partition Drive Letter

    Hello, I will be adding a drive from my old computer to my new Pavilion Desktop.  The drive from my old computer is already named 'D' and I would prefer to keep the drive letter the same so I don't have to change existing file references. Can I renam

  • Nokia 5300, problem with mic

    Dont know what happened, got a phone of my friend but he problem is that the microphone is not working when talking to someone. For example, I have made a small test, phoned other phone and the other caller could not hear me, I heard him but I could