DBA Data[Home] [Help]

APPS.FUN_NET_CANCEL_PKG dependencies on FUN_NET_ARAP_PKG

Line 104: FUN_NET_ARAP_PKG.unlock_ap_pymt_schedules(

100: /* Unlock AP Transactions if the Batch Status = SELECTED OR SUSPENDED OR ERROR
101: AR Transactions are not locked at this point */
102: --Bug: 8342419
103: IF (g_batch_status = 'SELECTED') OR (g_batch_status='ERROR') OR (g_batch_status='SUSPENDED')THEN
104: FUN_NET_ARAP_PKG.unlock_ap_pymt_schedules(
105: p_batch_id => p_batch_id,
106: x_return_status => x_return_status);
107: END IF;
108:

Line 261: FUN_NET_ARAP_PKG.Set_Agreement_Status(

257:
258: /* Check Agreement Status and unset the in process flag so that
259: agreement can be used again */
260:
261: FUN_NET_ARAP_PKG.Set_Agreement_Status(
262: x_batch_id => p_batch_id,
263: x_agreement_id => l_agreement_id,
264: x_mode => 'UNSET',
265: x_return_status => l_return_status);

Line 725: IF NOT FUN_NET_ARAP_PKG.update_batch_status('REVERSING') THEN

721: END IF;
722:
723: /* Update Batch Status to Reversing */
724: fun_net_util.Log_String(g_state_level,l_path,'Updating batch status');
725: IF NOT FUN_NET_ARAP_PKG.update_batch_status('REVERSING') THEN
726: RAISE FND_API.G_EXC_ERROR;
727: END IF;
728:
729: /* Reverse the Checks for the AP Invoices in the given batch */

Line 760: FUN_NET_ARAP_PKG.Set_Agreement_Status(

756: IF l_return_status = FND_API.G_FALSE THEN
757: RAISE FND_API.G_EXC_ERROR;
758: END IF;
759: fun_net_util.Log_String(g_state_level,l_path,'Updating agreement status to N');
760: FUN_NET_ARAP_PKG.Set_Agreement_Status(
761: x_batch_id => p_batch_id,
762: x_agreement_id => l_agreement_id,
763: x_mode => 'UNSET',
764: x_return_status => l_return_status);

Line 785: /*IF NOT FUN_NET_ARAP_PKG.update_batch_status('REVERSED') THEN

781: UPDATE fun_net_batches
782: SET batch_status_code = 'REVERSED'
783: WHERE batch_id = p_batch_id;
784:
785: /*IF NOT FUN_NET_ARAP_PKG.update_batch_status('REVERSED') THEN
786:
787: RAISE FND_API.G_EXC_ERROR;
788: END IF; */
789: