Registering commands for use as jobs

To register a new command to be used as a job:

  1. Enter the command into the SCHCMD database table using an SQL statement similar to the following:
    insert into SCHCMD (schcmd_id, storeent_id, pathinfo) values (100, 0, 
    'CommandName')
    

    where 'CommandName' is the name of the command that executes this job.

Important: Ensure that storeent_id is set to 0 to avoid problems migrating staging data to production.

If you want this job to be available on a store level, associate it with a task command.

Feedback