DBA Data[Home] [Help]

APPS.AP_MATCHING_UTILS_PKG dependencies on APP_EXCEPTION

Line 158: app_exception.raise_exception;

154: fnd_message.set_name('SQLAP','AP_DEBUG');
155: fnd_message.set_token('ERROR',SQLERRM);
156: fnd_message.set_token('DEBUG_INFO',debug_info);
157: End if;
158: app_exception.raise_exception;
159:
160: END Initialize;
161:
162: Procedure Get_Num_PO_Dists (

Line 262: app_exception.raise_exception;

258: AND line_type_lookup_code NOT IN ('RETAINAGE','PREPAY');
259:
260: Exception
261: WHEN OTHERS THEN
262: app_exception.raise_exception;
263:
264: End Get_Recpt_Dist_Qty_Billed;
265:
266: /*-------------------------------------------------------------------------

Line 907: App_Exception.Raise_Exception;

903: If (Invoice_Lines_Cur%ISOPEN) Then
904: Close Invoice_Lines_Cur;
905: End if;
906: END IF;
907: App_Exception.Raise_Exception;
908:
909: END Match_Invoice_Line;
910:
911: --Added the following new procedure for Amount-Based Matching Project

Line 931: app_exception.raise_exception;

927:
928:
929: EXCEPTION
930: WHEN OTHERS THEN
931: app_exception.raise_exception;
932:
933: END Get_Recpt_Dist_Amt_Billed;
934:
935: Function Get_Avail_Dist_Corr_Amount (

Line 1645: APP_EXCEPTION.RAISE_EXCEPTION;

1641: ||', P_LAST_UPDATE_LOGIN = '||P_LAST_UPDATE_LOGIN);
1642:
1643: FND_MESSAGE.SET_TOKEN('DEBUG_INFO',l_debug_info);
1644:
1645: APP_EXCEPTION.RAISE_EXCEPTION;
1646: END Ap_Recoup_Invoice_Line;
1647:
1648:
1649: FUNCTION Get_Inv_Line_Recouped_Amount(P_Invoice_Id IN NUMBER,

Line 2276: APP_EXCEPTION.RAISE_EXCEPTION;

2272: ' X_Invoice_Id = '||TO_CHAR(P_Invoice_id)
2273: ||', X_Invoice_Line_Number = '||TO_CHAR(P_Invoice_Line_Number));
2274: FND_MESSAGE.SET_TOKEN('DEBUG_INFO',l_debug_info);
2275: END IF;
2276: APP_EXCEPTION.RAISE_EXCEPTION;
2277:
2278: END Match_To_Rcv_Shipment_Line;
2279:
2280:

Line 2471: APP_EXCEPTION.RAISE_EXCEPTION;

2467: FND_MESSAGE.SET_TOKEN('PARAMETERS',
2468: ' p_rcv_shipment_line_id = '||TO_CHAR(p_rcv_shipment_line_id));
2469: FND_MESSAGE.SET_TOKEN('DEBUG_INFO',l_debug_info);
2470: END IF;
2471: APP_EXCEPTION.RAISE_EXCEPTION;
2472:
2473: END;
2474:
2475: --Introduced below procedure for bug#10062826

Line 2626: APP_EXCEPTION.RAISE_EXCEPTION;

2622: ' p_line_location_id = '||TO_CHAR(p_line_location_id) ||
2623: ' ,l_po_distribution_id = ' || l_po_distribution_id);
2624: FND_MESSAGE.SET_TOKEN('DEBUG_INFO',l_debug_info);
2625: END IF;
2626: APP_EXCEPTION.RAISE_EXCEPTION;
2627:
2628: END Is_Proj_Exp_Item_Date_Valid;
2629:
2630: END AP_MATCHING_UTILS_PKG;