DBA Data[Home] [Help]

APPS.XDP_APPLICATION dependencies on XDP_ADAPTER_REG

Line 127: FROM xdp_adapter_reg xar, xdp_fes fe

123:
124: CURSOR c_getAdapterInfoAll IS
125: SELECT xar.channel_name, fe.fulfillment_element_name, xar.adapter_display_name,
126: xar.fe_id, xar.adapter_status, xar.process_id
127: FROM xdp_adapter_reg xar, xdp_fes fe
128: WHERE xar.adapter_status not in (XDP_ADAPTER.pv_statusStopped,
129: XDP_ADAPTER.pv_statusStoppedError,
130: XDP_ADAPTER.pv_statusTerminated,
131: XDP_ADAPTER.pv_statusNotAvailable,

Line 208: -- in XDP_ADAPTER_REG table accordingly

204: IF StopOptions = 'NORMAL' then
205:
206: -- Stop adapter instance
207: -- Following package with also update the adapter instance entry
208: -- in XDP_ADAPTER_REG table accordingly
209: -- and will submit a admin request if required i.e. if the
210: -- Adapter cannot be locked
211:
212: FND_FILE.put_line(FND_FILE.log,'Attempting to stop adapter '||

Line 245: -- in XDP_ADAPTER_REG table accordingly

241: -- elsif StopOptions = 'ABORT' then
242: else
243: -- Stop adapter instance in abbort mode
244: -- and also update the adapter instance entry
245: -- in XDP_ADAPTER_REG table accordingly
246:
247: FND_FILE.put_line(FND_FILE.log,'Attempting to stop adapter '||
248: v_AdapterData.adapter_display_name||
249: ' in abort mode');

Line 428: -- * XDP_ADAPTER_REGISTRATION table else TRUE

424: -- * INPUTS : None
425: -- * OUTPUTS: None
426: -- * RETURNS: FALSE if adapters and controller cannot be stoppped at this moment i.e. either
427: -- * atleast one adapter instance is BUSY or some process has acquired lock on the
428: -- * XDP_ADAPTER_REGISTRATION table else TRUE
429: -- *
430: -- * This function gracefully shuts down the adapter instances and the controller.
431: -- *
432: -- * Called by: Administration scripts used to shutdown application gracefully.

Line 963: FROM xdp_adapter_reg xar, xdp_fes xfe

959:
960: CURSOR c_getAdapterInfoAll IS
961: SELECT xar.channel_name, xfe.fulfillment_element_name,
962: xar.adapter_display_name, xar.startup_mode, xar.fe_id, xar.adapter_status
963: FROM xdp_adapter_reg xar, xdp_fes xfe
964: WHERE xar.adapter_status in (XDP_ADAPTER.pv_statusStopped,
965: XDP_ADAPTER.pv_statusStoppedError,
966: XDP_ADAPTER.pv_statusTerminated,
967: XDP_ADAPTER.pv_statusDeactivated,