DBA Data[Home] [Help]

PACKAGE: APPS.CST_PERIODSUMMARY_PVT

Source


1 PACKAGE CST_PeriodSummary_PVT AUTHID CURRENT_USER AS
2 
3   -- Start of comments
4   -- API name        : WaitOn_Request
5   -- Type            : Private
6   -- Pre-reqs        : None
7   -- Function        : Waits for GL transfer to be completed successfully,
8   --                   updates a period to closed, and submits the period
9   --                   close reconciliation report.
10   --
11   --                   The first two parameters ERRBUF and RETCODE are
12   --                   required to allow this function to be called as
13   --                   an Oracle Applications executable.
14   --
15   -- Parameters      : ERRBUF            OUT NOCOPY VARCHAR2
16   --                   RETCODE           OUT NOCOPY NUMBER
17   --                   p_api_version     IN         NUMBER   Required
18   --                   p_request_id      IN         NUMBER   Required
19   --                   p_org_id          IN         NUMBER   Required
20   --                   p_period_id       IN         NUMBER   Required
21   -- Version         : Current version 1.0
22   --                   Initial version 1.0
23   -- End of comments
24   PROCEDURE WaitOn_Request(
25     ERRBUF            OUT NOCOPY VARCHAR2,
26     RETCODE           OUT NOCOPY NUMBER,
27     p_api_version     IN         NUMBER,
28     p_request_id      IN         NUMBER,
29     p_org_id          IN         NUMBER,
30     p_period_id       IN         NUMBER
31   );
32 
33 END CST_PeriodSummary_PVT;