Automic Workload Automation

 View Only
  • 1.  Extracting Event information from Database

    Posted Jun 28, 2020 11:09 PM
    Hi Team,

    We are trying to extract the event information. Kindly help us with the query to extract the information.

    Regards,
    Baskaran K J


  • 2.  RE: Extracting Event information from Database
    Best Answer

    Posted Jul 06, 2020 03:08 PM

    This returns JSCH scheduling rules;

    select oh_client as client
          , oh_name           as SCHEDULE
          , jpp_object       as OBJECT
          , JPP_ErlstStTime  as STARTTIME
          , jppc_calekeyname as CALENDAR
       from oh
          inner join jpp 
             on oh_idnr = jpp_oh_idnr
          left outer join jppc 
             on jppc_jpp_lnr = jpp_lnr and jppc_oh_idnr = oh_idnr
      where oh_otype = 'JSCH' and oh_deleteflag = 0 and oh_client = 100
      order by 4,3,5;​


    ------------------------------
    Pete Wirfs
    SAIF Corporation
    Salem Oregon USA
    ------------------------------



  • 3.  RE: Extracting Event information from Database

    Posted Jan 05, 2022 08:30 AM
    hi,

    I am looking for exactly this script but for time events

    I can't see in which table this information is located
    any idea ?