I am trying to solve following task: fully automatic work of PDS.
1. I am downloading from FTP to Avaya PDS calling files, then I put them to Avaya via hosttopds. 2. Then I go to Editor and run Sellections. After running sellection, job using this selection is ready to start. 3. After job finishes, automatically reports are generated via pdstohost, then I put them on FTP resource.
How to make #2 automatic? Is there a command in command line that will verify and run a selection? After that I suppose I could start a job with config_ed?
Thanks Robert
From: Moscow | Registered: Oct 2009
| IP: Logged |
You can use callsel binary or another way to install service pack 1 (at least) and use auto_start job (it run's selection and also run job)
From: Moscow | Registered: Jun 2008
| IP: Logged |
posted
#! /bin/ksh . $SHELL_ENVFILE # ---------------------------------------------------------------------------- # Created By Stephen Vieau # 06/28/2009 clear print "\n\nStarting record selection" echo echo " Do you want to proceed (Y/N)?" read answer if test "$answer" != "Y" -a "$answer" != "y"; then exit 0; fi clear
clear print "Record selection complete, All hail Stephen, press enter key to agree." read anykey5 clear
#Starting Job for customer print "\n\nStarting Jobs," echo echo " Do you want to proceed (Y/N)?" read answer if test "$answer" != "Y" -a "$answer" != "y"; then exit 0; fi clear config_ed outbound jobname -b config_ed outbound jobname -b config_ed outbound jobname -b config_ed outbound jobname -b config_ed outbound jobname -b config_ed outbound jobname -b print "all done, hit enter to continue" read answer
-------------------- South West Business Corp - I am the Corba commander.
From: san antonio | Registered: Apr 2009
| IP: Logged |