DBA Data[Home] [Help]

PACKAGE: APPS.IGI_ITR

Source


1 PACKAGE IGI_ITR AUTHID CURRENT_USER AS
2 -- $Header: igiitrgs.pls 120.3.12000000.1 2007/09/12 10:31:09 mbremkum ship $
3 --
4 TYPE BatchTabType IS TABLE of NUMBER(15) INDEX by BINARY_INTEGER;
5 --
6 l_Action        NUMBER(15) := 0;
7 --
8 l_TableRow      binary_integer := 0;
9 l_BatchIdTable  BatchTabType;
10 --
11 procedure SUBMIT
12 (p_it_header_id number,/* igig_itr_encumbrance_allowed char , */
13  p_status_flag in out NOCOPY number, p_status_message in out NOCOPY VARCHAR2);
14 --
15 PROCEDURE action (p_action NUMBER);
16 --
17 PROCEDURE set_batches (p_batch_id NUMBER);
18 --
19 PROCEDURE process_batches;
20 --
21 PROCEDURE control ( p_interface_run_id NUMBER
22                   , p_group_id         NUMBER
23                   , p_set_of_books_id  NUMBER
24                   , p_status_code    IN OUT NOCOPY NUMBER
25                   , p_status_message IN OUT NOCOPY VARCHAR2 );
26 --
27 procedure ACCEPT
28 (p_it_header_id number
29 ,p_it_line_num number
30 ,p_igig_itr_encumbrance_allowed char
31 ,p_group_id number
32 ,p_status_code in out NOCOPY number
33 ,p_status_message in out NOCOPY char
34 );
35 
36 procedure REJECT
37 (p_it_header_id number
38 ,p_it_line_num number
39 ,p_group_id number
40 ,p_status_code in out NOCOPY number
41 ,p_status_message in out NOCOPY char
42 );
43 
44 procedure STATUS( p_batch_id number);
45 --
46 END IGI_ITR;