DBA Data[Home] [Help]

APPS.WIP_CHANGE_STATUS dependencies on FND_API

Line 80: if(x_returnStatus <> fnd_api.g_ret_sts_success) then

76:
77: wip_logger.entryPoint(p_procName => 'WIP_CHANGE_STATUS.INSERT_PERIOD_BALANCES',
78: p_params => l_params,
79: x_returnStatus => x_returnStatus);
80: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
81: raise fnd_api.g_exc_unexpected_error;
82: end if;
83: end if;
84:

Line 81: raise fnd_api.g_exc_unexpected_error;

77: wip_logger.entryPoint(p_procName => 'WIP_CHANGE_STATUS.INSERT_PERIOD_BALANCES',
78: p_params => l_params,
79: x_returnStatus => x_returnStatus);
80: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
81: raise fnd_api.g_exc_unexpected_error;
82: end if;
83: end if;
84:
85:

Line 353: if(x_returnStatus <> fnd_api.g_ret_sts_success) then

349:
350: wip_logger.entryPoint(p_procName => 'WIP_CHANGE_STATUS.RELEASE',
351: p_params => l_params,
352: x_returnStatus => x_returnStatus);
353: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
354: raise fnd_api.g_exc_unexpected_error;
355: end if;
356: end if;
357:

Line 354: raise fnd_api.g_exc_unexpected_error;

350: wip_logger.entryPoint(p_procName => 'WIP_CHANGE_STATUS.RELEASE',
351: p_params => l_params,
352: x_returnStatus => x_returnStatus);
353: if(x_returnStatus <> fnd_api.g_ret_sts_success) then
354: raise fnd_api.g_exc_unexpected_error;
355: end if;
356: end if;
357:
358: /* Bug 13003859(FP of bug#12849554) when changing from on hold to release/complete, we want INSERT_PERIOD_BALANCES only inserting wpb for current acct period only to prevent backdated txn*/

Line 517: raise fnd_api.g_exc_unexpected_error;

513:
514: -- Bug 15945996
515: IF (WIP_WS_TIME_ENTRY.IS_CLOCK_PENDING(P_wip_entity_id,null)<>'N') THEN
516: FND_MESSAGE.SET_NAME('WIP','WIP_PENDING_CLOCKS');
517: raise fnd_api.g_exc_unexpected_error;
518: END IF;
519: /* IF (WIP_WS_TIME_ENTRY.IS_JOB_ON(P_wip_entity_id)='Y') THEN
520: FND_MESSAGE.SET_NAME('WIP','WIP_PENDING_JOB_ON');
521: raise fnd_api.g_exc_unexpected_error;

Line 521: raise fnd_api.g_exc_unexpected_error;

517: raise fnd_api.g_exc_unexpected_error;
518: END IF;
519: /* IF (WIP_WS_TIME_ENTRY.IS_JOB_ON(P_wip_entity_id)='Y') THEN
520: FND_MESSAGE.SET_NAME('WIP','WIP_PENDING_JOB_ON');
521: raise fnd_api.g_exc_unexpected_error;
522: END IF;*/
523:
524: UPDATE WIP_DISCRETE_JOBS
525: SET STATUS_TYPE = WIP_CONSTANTS.HOLD,