DBA Data[Home] [Help]

PACKAGE: APPS.GL_JOURNAL_IMPORT_SLA_PKG

Source


1 PACKAGE GL_JOURNAL_IMPORT_SLA_PKG as
2 /* $Header: glujisls.pls 120.2 2005/05/05 01:40:28 kvora ship $ */
3 
4 --
5 -- Package
6 --   GL_JOURNAL_IMPORT_SLA_PKG
7 -- Purpose
8 --   To implement various logic needed for SLA to interact with
9 --   Journal Import
10 -- History
11 --   15-NOV-02	D. J. Ogg	Created
12 --
13 
14   --
15   -- Procedure
16   --   delete_batches
17   -- Purpose
18   --   Rolls back a successful Journal Import run for SLA.  Note
19   --   that this routine only works when run for a batch that was
20   --   created by Journal Import where the Journal Import request
21   --   was submitted by SLA.
22   -- History
23   --   15-NOV-02	D. J. Ogg	Created
24   -- Arguments
25   --   x_je_source_name		Source of data that was imported
26   --   x_group_id		Group id of data that was imported
27   -- Example
28   --   gl_journal_import_sla_pkg.delete_batches('Payables', 1001);
29   -- Notes
30   --
31   PROCEDURE delete_batches(x_je_source_name  VARCHAR2,
32 			   x_group_id        NUMBER);
33 
34   --
35   -- Procedure
36   --   keep_batches
37   -- Purpose
38   --   Rolls back a successful Journal Import run for SLA.  Note
39   --   that this routine only works when run for a batch that was
40   --   created by Journal Import where the Journal Import request
41   --   was submitted by SLA.
42   -- History
43   --   15-NOV-02	D. J. Ogg	Created
44   -- Arguments
45   --   x_je_source_name		Source of data that was imported
46   --   x_group_id		Group id of data that was imported
47   --   start_posting            Indicates whether or not posting should
48   --                            be started if possible.
49   --   data_access_set_id       Data access set to be used during Posting
50   --   req_id                   Request id of the posting run
51   --                            (0 if Posting wasn't submitted or was not
52   --                            submitted successfully)
53   -- Example
54   --   gl_journal_import_sla_pkg.keep_batches('Payables',1001,FALSE,1,reqid);
55   -- Notes
56   --
57   PROCEDURE keep_batches(x_je_source_name             VARCHAR2,
58 		         x_group_id                   NUMBER,
59                          start_posting                BOOLEAN,
60                          data_access_set_id           NUMBER,
61                          req_id            OUT NOCOPY NUMBER);
62 
63 END GL_JOURNAL_IMPORT_SLA_PKG;