Identify batch jobs

Hi All, 

is there a log or any other way to find out the process models configured with timer event in start node ?

Thanks!!

  Discussion posts and replies are publicly visible

Parents
  • It doesn't help you now, but adding one or more tags into the Description attribute of a Process Model will help you find these the next time around and you can conduct a search across the Process Name/Description.

  • ...but just had another thought. You can export the process models (add them all to a package, export and download it). Then unzip the downloaded file and use a tool that can search inside the individual process model XML files. You should be looking for something like this:

    <pre-triggers>
                <timer-trigger index="0">
                  <persistentId>0001e7ec-4f0c-8000-1cd1-7f0000014e7a</persistentId>
                  <name><![CDATA[Timer_1]]></name>
                  <desc/>
                  <rules/>
                  <schedule absoluteDelay="false"
                    isAbsoluteOrRelative="true" isRecurring="false">
                    <interval>
                      <minutes>5</minutes>
                    </interval>
                  </schedule>
                </timer-trigger>
              </pre-triggers>

Reply
  • ...but just had another thought. You can export the process models (add them all to a package, export and download it). Then unzip the downloaded file and use a tool that can search inside the individual process model XML files. You should be looking for something like this:

    <pre-triggers>
                <timer-trigger index="0">
                  <persistentId>0001e7ec-4f0c-8000-1cd1-7f0000014e7a</persistentId>
                  <name><![CDATA[Timer_1]]></name>
                  <desc/>
                  <rules/>
                  <schedule absoluteDelay="false"
                    isAbsoluteOrRelative="true" isRecurring="false">
                    <interval>
                      <minutes>5</minutes>
                    </interval>
                  </schedule>
                </timer-trigger>
              </pre-triggers>

Children