DBA Data[Home] [Help]

APPS.AP_AID_TABLE_HANDLER_PKG dependencies on AP_AID_TABLE_HANDLER_PKG

Line 1: PACKAGE BODY AP_AID_TABLE_HANDLER_PKG as

1: PACKAGE BODY AP_AID_TABLE_HANDLER_PKG as
2: /* $Header: apaidthb.pls 120.10 2008/01/23 15:33:06 schamaku ship $ */
3:
4: -------------------------------------------------------------------
5: PROCEDURE CHECK_UNIQUE (

Line 19: current_calling_sequence := 'AP_AID_TABLE_HANDLER_PKG.CHECK_UNIQUE<-'||

15:
16: BEGIN
17: -- Update the calling sequence
18:
19: current_calling_sequence := 'AP_AID_TABLE_HANDLER_PKG.CHECK_UNIQUE<-'||
20: p_Calling_Sequence;
21:
22: debug_info := 'Select from ap_invoice_distributions';
23:

Line 214: current_calling_sequence := 'AP_AID_TABLE_HANDLER_PKG.Insert_Row<-'

210: BEGIN
211:
212: -- Update the calling sequence
213:
214: current_calling_sequence := 'AP_AID_TABLE_HANDLER_PKG.Insert_Row<-'
215: ||p_Calling_Sequence;
216:
217: -- Check for uniqueness of the distribution line number
218:

Line 219: AP_AID_TABLE_HANDLER_PKG.CHECK_UNIQUE(

215: ||p_Calling_Sequence;
216:
217: -- Check for uniqueness of the distribution line number
218:
219: AP_AID_TABLE_HANDLER_PKG.CHECK_UNIQUE(
220: p_Rowid,
221: p_Invoice_Id,
222: p_Invoice_Line_Number,
223: p_Distribution_Line_Number,

Line 224: 'AP_AID_TABLE_HANDLER_PKG.Insert_Row');

220: p_Rowid,
221: p_Invoice_Id,
222: p_Invoice_Line_Number,
223: p_Distribution_Line_Number,
224: 'AP_AID_TABLE_HANDLER_PKG.Insert_Row');
225:
226: debug_info := 'Open cursor C2';
227: OPEN C2;
228: debug_info := 'Fetch cursor C2';

Line 704: current_calling_sequence := 'AP_AID_TABLE_HANDLER_PKG.Update_Row<-'

700: BEGIN
701:
702: -- Update the calling sequence
703:
704: current_calling_sequence := 'AP_AID_TABLE_HANDLER_PKG.Update_Row<-'
705: ||p_Calling_Sequence;
706:
707: -- Check for uniqueness of the distribution line number
708:

Line 709: AP_AID_TABLE_HANDLER_PKG.CHECK_UNIQUE(

705: ||p_Calling_Sequence;
706:
707: -- Check for uniqueness of the distribution line number
708:
709: AP_AID_TABLE_HANDLER_PKG.CHECK_UNIQUE(
710: p_Rowid,
711: p_Invoice_Id,
712: p_Invoice_Line_Number,
713: p_Distribution_Line_Number,

Line 714: 'AP_AID_TABLE_HANDLER_PKG.Update_Row');

710: p_Rowid,
711: p_Invoice_Id,
712: p_Invoice_Line_Number,
713: p_Distribution_Line_Number,
714: 'AP_AID_TABLE_HANDLER_PKG.Update_Row');
715:
716: debug_info := 'Update ap_invoice_distributions';
717:
718:

Line 878: current_calling_sequence := 'AP_AID_TABLE_HANDLER_PKG.Delete_Row<-'

874: BEGIN
875:
876: -- Update the calling sequence
877:
878: current_calling_sequence := 'AP_AID_TABLE_HANDLER_PKG.Delete_Row<-'
879: ||p_Calling_Sequence;
880:
881: SELECT invoice_distribution_id, invoice_id
882: INTO l_invoice_distribution_id, l_invoice_id

Line 913: END AP_AID_TABLE_HANDLER_PKG;

909: APP_EXCEPTION.RAISE_EXCEPTION;
910:
911: END Delete_Row;
912:
913: END AP_AID_TABLE_HANDLER_PKG;