DBA Data[Home] [Help]

PACKAGE: APPS.IGI_EXP_AP_INV_PKG

Source


1 PACKAGE IGI_EXP_AP_INV_PKG AUTHID CURRENT_USER as
2 -- $Header: igiexpes.pls 115.6 2002/09/11 14:40:00 mbarrett ship $
3 --
4 -- Bug 1347858
5 -- Variables to be used from triggers on AP_HOLDS_ALL table
6 --
7 
8 	TYPE InvoiceTabType is table of number(15)
9 		index by binary_integer;
10 	TYPE PRTableType is table of varchar2(1)
11 		index by binary_integer;
12 	--
13 	l_TableRow		NUMBER(15) := 0;
14 	l_InvoiceIdTable	InvoiceTabType;
15 	l_UpdatedByTable	InvoiceTabType;
16 
17 PROCEDURE Update_Row(   x_session               NUMBER,
18                         x_third_party_id        NUMBER,
19                         x_site_id               NUMBER,
20                         x_dial_unit_id          NUMBER);
21 
22 END IGI_EXP_AP_INV_PKG;