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
101: AR Transactions are not locked at this point */
102:
103: IF (g_batch_status = 'SELECTED') OR (g_batch_status='ERROR') 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 694: IF NOT FUN_NET_ARAP_PKG.update_batch_status('REVERSING') THEN

690: END IF;
691:
692: /* Update Batch Status to Reversing */
693: fun_net_util.Log_String(g_state_level,l_path,'Updating batch status');
694: IF NOT FUN_NET_ARAP_PKG.update_batch_status('REVERSING') THEN
695: RAISE FND_API.G_EXC_ERROR;
696: END IF;
697:
698: /* Reverse the Checks for the AP Invoices in the given batch */

Line 729: FUN_NET_ARAP_PKG.Set_Agreement_Status(

725: IF l_return_status = FND_API.G_FALSE THEN
726: RAISE FND_API.G_EXC_ERROR;
727: END IF;
728: fun_net_util.Log_String(g_state_level,l_path,'Updating agreement status to N');
729: FUN_NET_ARAP_PKG.Set_Agreement_Status(
730: x_batch_id => p_batch_id,
731: x_agreement_id => l_agreement_id,
732: x_mode => 'UNSET',
733: x_return_status => l_return_status);

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

750: UPDATE fun_net_batches
751: SET batch_status_code = 'REVERSED'
752: WHERE batch_id = p_batch_id;
753:
754: /*IF NOT FUN_NET_ARAP_PKG.update_batch_status('REVERSED') THEN
755:
756: RAISE FND_API.G_EXC_ERROR;
757: END IF; */
758: