I'm trying to transfer jobs between users on the same environment. There's way too many steps and intracate details to manually set them up... so...
jobdump -d -o Job -v UserName GHSNT\JoSchmo -v JobName AM220MTHLY| tee d:\tmp\jobdump.AM220MTHLY.dmp
jobload -m UserName GHSNT\JoSchmo GHSNT\JoeCool d:\tmp\jobdump.AM220MTHLY.dmp
Should return:
Validation mode.
Job UserName=GHSNT\JoeCool JobName=AM220MTHLY
Then after that, I need to add a -c to the command to actually write to the database
jobload -c -m UserName GHSNT\JoSchmo GHSNT\JoeCool d:\tmp\jobdump.AM220MTHLY.dmp
Updated Job UserName=GHSNT\JoeCool JobName=AM220MTHLY
But now user JoeCool cannot run the job... I can see it listed just fine in InforOS in the JobList but it has disappeard
from JoeCool's list to execute. Is there something that I'm missing?