I am a .net C# developer and having limited knowledge in autosys script.
We have a monthly file feed(csv).. Comes once in a month .. sometimes twice in a month. My requirement is to run a job which will monitor this file and move to a different directory.
Something I have tried.
/* ----------------- mygroup-feed-myjob ----------------- */
insert_job: mygroup-feed-myjob job_type: b
owner: myowner
permission: gx,wx
alarm_if_fail: 1
group: mygroup
application: mygroup-feed
/* ----------------- mygroup-feed-myjob-f ----------------- */
insert_job: mygroup-feed-myjob-f job_type: f
box_name: mygroup-feed-myjob
machine: mymachine
owner: myowner
permission: gx,wx
description: "File watcher for myjob feed"
watch_file: $$(mygroup-nas)\DropZone\myfile.csv
watch_interval: 60
alarm_if_fail: 1
group: mygroup
application: mygroup-feed
/* ----------------- mygroup-feed-myjob-m ----------------- */
insert_job: mygroup-feed-myjob-m job_type: c
box_name: mygroup-feed-myjob
command: $$(mygroup-app)\bin\Mover.exe /c myjob /f $$(mygroup-nas)\DropZone\myfile.csv
machine: mymachine
owner: myowner
permission: gx,wx
condition: s(mygroup-feed-myjob-f)
description: "Move myjob feed file job into feed directory"
std_out_file: >>$$(mygroup-nas)\Log\Autosys\$$(gen-sysdate-yyyy)$$(gen-sysdate-mm)$$(gen-sysdate-dd)\mygroup-feed-myjob.log
std_err_file: >>$$(mygroup-nas)\Log\Autosys\$$(gen-sysdate-yyyy)$$(gen-sysdate-mm)$$(gen-sysdate-dd)\mygroup-feed-myjob.log
alarm_if_fail: 1
group: mygroup
application: mygroup-feed
Problem with this one, It's working fine when I force start the job .. but not triggering on file arrival. .
So practically when it's in SU (Success) status , it's not triggering any job run even I drop the file in that location..I want to trigger the job every time there is a file ..Can someone please help... Probably it's a small trick but I am still learning.