INPUT THROUGH Command using Appservers - no relative path!

Stoods

New Member
Using Openedge 10.2B06 - Running on Unix SunOS 5.10

If using the appserver, i make the following call
Code:
INPUT THROUGH VALUE("findme")
then the "findme" program won't be found, and an error is returned.

However, if i do the following
Code:
INPUT THROUGH VALUE("/progs/findme")
then the "findme" program is found.

How do I get the relative paths working for appservers?
We are already using the working directory on the appserver.
I've also tried altering the propath, but this isn't working.

If I log into unix directly using the appserver login, this is working as the directory is picked up from the .profile

Any ideas? Or do I *have* to use the full path for this command?

Cheers -

Mike
 
Would this overwrite the original path or add to it?
If it overwrites it - is there anyway just to "add" to it?
 
If it overwrites wouldn't it simply be solved by %PATH%,CustomPath or CustomPath,%PATH%? (replace %PATH% with $PATH if on *nix).
 
Back
Top