You can take any Splunk saved search and tell it to use a script to create a ticket in a system (such as Remedy) based on the search results.
To do this, set up your saved search, put it on a schedule, and set the action to trigger a shell script you've written whenever the number of events you're interested in is> 0.
Put your script (not the Remedy script) in /opt/splunk/bin/scripts.
This script should call the Java program that Remedy uses to generate tickets and pass it data from the Splunk alert.
Splunk alerts support the following variables:
The following example script passes the reason the script was triggered, a link to the saved search, and the path to the search results file into the ticket that the generateRemedyTicket Remedy script creates when it's run.
#! /bin/sh /usr/bin/java /var/run/generateRemedyTicket $5 $6 $8
Watch Will Hayes walk through the process in this video.