DBA Data[Home] [Help]

APPS.WF_LDAP dependencies on DBMS_JOB

Line 749: DBMS_JOB.Submit(

745:
746: l_job := to_number(NULL);
747: l_rundate := to_date(null);
748:
749: DBMS_JOB.Submit(
750: job=>l_job,
751: what=>'declare err boolean; begin err := WF_LDAP.synch_changes; end;',
752: next_date=>nvl(l_rundate, sysdate),
753: interval=>to_date(null)

Line 762: DBMS_JOB.Interval(

758: <= sysdate) then
759: wf_core.raise('WFE_LATER_INTERVAL');
760: end if;
761:
762: DBMS_JOB.Interval(
763: job=>l_job,
764: interval=>'Wf_Setup.JobNextRunDate('||to_char(l_job)||','||
765: to_char(l_day)||','||
766: to_char(l_hour)||','||

Line 773: DBMS_JOB.Run(

769: );
770:
771: -- force it to run the first time
772: if (l_rundate is null) then
773: DBMS_JOB.Run(
774: job=>l_job
775: );
776: end if;
777: