call and execute job from dfc

Options

Is there any way to execute a job directly from java dfc.

Regards

Tagged:

Comments

  • A job is simply an object that schedules the execution of the associated method. So you can either update the dm_job.run_now attribute or you can run the method directly using IDfSession.apply method, e.g.

    session.apply(null, "DO_METHOD", args, dataTypes, values);