DBA Data[Home] [Help]

PACKAGE: APPS.GL_IMPORT_REFERENCES_PKG

Source


1 PACKAGE GL_IMPORT_REFERENCES_PKG AUTHID CURRENT_USER as
2 /* $Header: gliimrfs.pls 120.2 2005/05/05 01:08:48 kvora noship $ */
3 
4   -- Procedure
5   --   delete_line
6   -- Purpose
7   --   deletes the line
8   --   is unique within the header.
9   -- Arguments
10   --   header_id        The ID of the header
11   --   line_num         The line number to check
12 
13   -- Example
14   --   gl_import_references_pkg.delete_line(2002, 10 );
15   -- Notes
16   --
17 
18 
19    PROCEDURE delete_line(X_header_id NUMBER, X_line_num NUMBER );
20   -- Procedure
21   --   delete_lines
22   -- Purpose
23   --   deletes all the lines
24   --   within the header.
25   -- Arguments
26   --   header_id        The ID of the header
27 
28   -- Example
29   --   gl_import_references_pkg.delete_lines(2002 );
30   -- Notes
31   --
32 
33 
34    PROCEDURE delete_lines (X_header_id NUMBER );
35 
36   --
37   -- Procedure
38   --   delete_header
39   -- Purpose
40   --   Deletes all of the lines for a given header.
41   -- Arguments
42   --   header_id 	The ID of the header
43   -- Example
44   --   gl_import_references_pkg.delete_header(1002);
45   -- Notes
46   --
47    PROCEDURE delete_header(X_header_id NUMBER );
48 
49   --
50   -- Procedure
51   --  delete_batches
52   -- Purpose
53   --  deletes all the lines for a given batch.
54   -- Arguments
55   --   batch_id 	   The ID of the batch
56   -- Example
57   --   gl_import_references_pkg.delete_batch(1002);
58   -- Notes
59   --
60    PROCEDURE delete_batch(X_batch_id	NUMBER);
61 
62 END GL_IMPORT_REFERENCES_PKG;