DBA Data[Home] [Help]

APPS.WIP_MASSLOAD_PUB dependencies on WIP_OSP

Line 234: if((wip_osp.po_req_created( l_wdj_wip_entity_id,

230: WIP_CONSTANTS.RESCHED_EAM_JOB,
231: WIP_CONSTANTS.RESCHED_JOB) ;
232:
233: if (l_wjsi_new_status_type IN (WIP_CONSTANTS.RELEASED,WIP_CONSTANTS.HOLD)) then
234: if((wip_osp.po_req_created( l_wdj_wip_entity_id,
235: null,
236: l_wdj_organization_id,
237: null,
238: WIP_CONSTANTS.DISCRETE

Line 240: /*Bug 16529960: wip_osp.release_validation and its subsequencial call CREATE_REQUISITION does not have any exception handling and also it is not returning any error messages .

236: l_wdj_organization_id,
237: null,
238: WIP_CONSTANTS.DISCRETE
239: ) = FALSE) or l_wdj_old_status_type in (WIP_CONSTANTS.UNRELEASED)) then
240: /*Bug 16529960: wip_osp.release_validation and its subsequencial call CREATE_REQUISITION does not have any exception handling and also it is not returning any error messages .
241: And CREATE_REQUISITION will throw exception by callingAPP_EXCEPTION.RAISE_EXCEPTION when validation failed, which is not handled here. So add the exception handing block */
242: begin
243: wip_osp.release_validation(l_wdj_wip_entity_id,
244: l_wdj_organization_id,

Line 243: wip_osp.release_validation(l_wdj_wip_entity_id,

239: ) = FALSE) or l_wdj_old_status_type in (WIP_CONSTANTS.UNRELEASED)) then
240: /*Bug 16529960: wip_osp.release_validation and its subsequencial call CREATE_REQUISITION does not have any exception handling and also it is not returning any error messages .
241: And CREATE_REQUISITION will throw exception by callingAPP_EXCEPTION.RAISE_EXCEPTION when validation failed, which is not handled here. So add the exception handing block */
242: begin
243: wip_osp.release_validation(l_wdj_wip_entity_id,
244: l_wdj_organization_id,
245: NULL) ;
246: exception
247: when others then

Line 250: wip_logger.log('calling wip_osp.release_validation failed in wip_massload_pub.massLoadJobs', l_retStatus);

246: exception
247: when others then
248: x_errorMsg := fnd_message.get;
249: if (l_logLevel <= wip_constants.trace_logging) then
250: wip_logger.log('calling wip_osp.release_validation failed in wip_massload_pub.massLoadJobs', l_retStatus);
251: end if;
252: raise fnd_api.g_exc_unexpected_error;
253: end;
254: end if ;