Hello
I am able to run following job when I don't add argument to python script and I know page item (:P13_ID) has value set (displayed), can somebody help how to pass variable to scheduler ?
from log I am seeing variable name itself not variable content.
working when I give hard coded value in the place of bind variable.
BEGIN
DBMS_SCHEDULER.CREATE_JOB (
job_name => 'SendAdhocemail',
job_type => 'EXECUTABLE',
job_action =>'python Send_Adhocemails.py :P13_ID ',
enabled => TRUE
);
END;
Thanks
A