DBA Data[Home] [Help]

APPS.XDP_ADAPTER_CORE_DB dependencies on DBMS_JOB

Line 187: dbms_job.remove(l_jobID);

183: l_jobID number := -1;
184: begin
185: l_jobID := Get_Job_Id_For_Request (p_RequestID);
186:
187: dbms_job.remove(l_jobID);
188:
189: delete from xdp_adapter_admin_reqs where request_id = p_RequestID;
190:
191: end RemoveAdapterAdminReq;

Line 1065: -- Delete all occurences of the requests and dbms_jobs for the adapter from the

1061: WHEN NO_DATA_FOUND THEN
1062: NULL;
1063: END;
1064:
1065: -- Delete all occurences of the requests and dbms_jobs for the adapter from the
1066: -- XDP_ADAPTER_ADMIN_REQS table if present
1067: --
1068: for v_AdapterReq in c_GetAdapterAdminReqs loop
1069: RemoveAdapterAdminReq (p_RequestID => v_AdapterReq.request_id);