It sounds like a permissions issue. remedy doesn't just need execute permissions to the file, but also to the path leading up to the file. It also needs write permissions to the output path, but it sounds like you haven't gotten that far yet.
The simplest thing to do is log in as the remedy user and see if you can execute the script using the process command that you are tracking in the filter log. It very well could be that your login shell and remedy's login shell are different. The top of your shell script should have a shebang that tells the system what kind of shell to run from. Something like this: #!/usr/local/bin/ksh If that isn't present, it could be a source of your problem. If it is present and points to a file that doesn't exist, that could be a problem. Also, depending on your script it could be expecting the output file to already exist. Thanks, Steve On Mon, Jun 10, 2013 at 1:59 AM, Karthik <[email protected]> wrote: > ** > does the user through which arsystem.sh is started have necessary rights > to execute the script? > > Regards, > Karthik > > > On 10 June 2013 13:49, Wcandro Roy <[email protected]> wrote: > >> ** Hi, >> >> Thanks for the input. I'm calling the file through an absolute path. The >> platform is Solaris 10. >> >> Regards, >> Swarup >> >> >> On Mon, Jun 10, 2013 at 1:11 PM, Ivan Aranda <[email protected]> wrote: >> >>> Hi, >>> >>> I remember once experienced a problem like that and one of the >>> actions I tried was to call the file script with a relative path and >>> absolute one. Try both of them. >>> Would be useful to know on which platform you're executing the file >>> (UNIX, MS Windows) >>> >>> Cheers, >>> Ivan Aranda >>> >>> >>> _______________________________________________________________________________ >>> UNSUBSCRIBE or access ARSlist Archives at www.arslist.org >>> "Where the Answers Are, and have been for 20 years" >>> >> >> _ARSlist: "Where the Answers Are" and have been for 20 years_ > > > > > -- > - Karthik > _ARSlist: "Where the Answers Are" and have been for 20 years_ > _______________________________________________________________________________ UNSUBSCRIBE or access ARSlist Archives at www.arslist.org "Where the Answers Are, and have been for 20 years"

