DBA Data[Home] [Help]

APPS.AP_AIL_TABLE_HANDLER_PKG dependencies on AP_AIL_TABLE_HANDLER_PKG

Line 1: PACKAGE BODY AP_AIL_TABLE_HANDLER_PKG as

1: PACKAGE BODY AP_AIL_TABLE_HANDLER_PKG as
2: /* $Header: apilnthb.pls 120.13 2008/01/23 15:40:24 schamaku ship $ */
3:
4: -------------------------------------------------------------------
5:

Line 19: current_calling_sequence := 'AP_AIL_TABLE_HANDLER_PKG.CHECK_UNIQUE<-'

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

Line 235: current_calling_sequence := 'AP_AIL_TABLE_HANDLER_PKG.Insert_Row<-'

231:
232: BEGIN
233: -- Update the calling sequence
234:
235: current_calling_sequence := 'AP_AIL_TABLE_HANDLER_PKG.Insert_Row<-'
236: ||p_Calling_Sequence;
237:
238: -- Check for uniqueness of the distribution line number
239:

Line 240: AP_AIL_TABLE_HANDLER_PKG.CHECK_UNIQUE(

236: ||p_Calling_Sequence;
237:
238: -- Check for uniqueness of the distribution line number
239:
240: AP_AIL_TABLE_HANDLER_PKG.CHECK_UNIQUE(
241: p_Rowid,
242: p_Invoice_Id,
243: p_Line_Number,
244: 'AP_AIL_TABLE_HANDLER_PKG.Insert_Row');

Line 244: 'AP_AIL_TABLE_HANDLER_PKG.Insert_Row');

240: AP_AIL_TABLE_HANDLER_PKG.CHECK_UNIQUE(
241: p_Rowid,
242: p_Invoice_Id,
243: p_Line_Number,
244: 'AP_AIL_TABLE_HANDLER_PKG.Insert_Row');
245:
246: -- Figure out NOCOPY the dist_match_type (not passed from invoice w/b)
247:
248: IF (p_rcv_transaction_id IS NOT NULL AND

Line 1675: current_calling_sequence := 'AP_AIL_TABLE_HANDLER_PKG.Update_Row<-'

1671: debug_info VARCHAR2(100);
1672: BEGIN
1673: -- Update the calling sequence
1674:
1675: current_calling_sequence := 'AP_AIL_TABLE_HANDLER_PKG.Update_Row<-'
1676: ||p_Calling_Sequence;
1677:
1678: -- Check for uniqueness of the distribution line number
1679:

Line 1680: AP_AIL_TABLE_HANDLER_PKG.CHECK_UNIQUE(

1676: ||p_Calling_Sequence;
1677:
1678: -- Check for uniqueness of the distribution line number
1679:
1680: AP_AIL_TABLE_HANDLER_PKG.CHECK_UNIQUE(
1681: p_Rowid,
1682: p_Invoice_Id,
1683: p_Line_Number,
1684: 'AP_AIL_TABLE_HANDLER_PKG.Update_Row');

Line 1684: 'AP_AIL_TABLE_HANDLER_PKG.Update_Row');

1680: AP_AIL_TABLE_HANDLER_PKG.CHECK_UNIQUE(
1681: p_Rowid,
1682: p_Invoice_Id,
1683: p_Line_Number,
1684: 'AP_AIL_TABLE_HANDLER_PKG.Update_Row');
1685:
1686: debug_info := 'Update ap_invoice_lines_all';
1687:
1688: UPDATE AP_INVOICE_LINES_ALL

Line 1890: current_calling_sequence := 'AP_AIL_TABLE_HANDLER_PKG.Delete_Row<-' ||

1886: l_invoice_distribution_id NUMBER;
1887: BEGIN
1888: -- Update the calling sequence
1889:
1890: current_calling_sequence := 'AP_AIL_TABLE_HANDLER_PKG.Delete_Row<-' ||
1891: p_Calling_Sequence;
1892:
1893: debug_info := 'Delete from child entity ap_invoice_distributions_all';
1894: --Bugfix:4670908

Line 1924: END AP_AIL_TABLE_HANDLER_PKG;

1920: APP_EXCEPTION.RAISE_EXCEPTION;
1921:
1922: END Delete_Row;
1923:
1924: END AP_AIL_TABLE_HANDLER_PKG;