Soft-code the scheduling of an agent

Is it possible to soft-code the scheduling of an agent?As in, say we create a config document that states the time a particular agent should run so that we do not have to go to the Designer to modify the scheduled time of the agent; i.e. any changes in the schedule can be handled through the config doc.

Subject: sort of…

On the agent document itself, no. But we’ve done something similar where we had a scheduled agent to kick off hourly. Then the first thing in the agent code was to check a profile document and see what time it should actually run (you should put a range). If the timing was in the range, continue, if not, exit.

Subject: Thanks

ya, we came up with sumthin similar toothanks