DBA Data[Home] [Help]

PACKAGE: APPS.PA_CLIENT_EXTN_PROJ_LIMIT

Source


1 PACKAGE PA_CLIENT_EXTN_PROJ_LIMIT AUTHID CURRENT_USER AS
2 /* $Header: PACEPLTS.pls 120.0.12020000.3 2013/03/25 10:14:39 udshanmu noship $*/
3 
4 /* When you run the PRC:Refresh Project Summary Amounts process
5  this client extension enables users to run this program
6  for specific list of projects provide by client */
7 
8 
9 
10 
11 TYPE proj_list IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
12 
13 /* This function is called  by PA_PROJ_ACCUM_MAIN.proj_refresh
14  procedure invoked by the program
15  PRC:Refresh Project Summary Amounts process to
16  check client extension is enabled or not. */
17 
18 FUNCTION CLIENT_EXTN_ENABLED
19 RETURN VARCHAR2;
20 
21 /* This procedure is used by the client ,where the
22  code to populate the list of projects to be processed by the
23 PRC:Refresh Project Summary Amounts process, is specified */
24 
25 PROCEDURE POPULATE_PROJECT_ID_LIST(p_project_id OUT NOCOPY PROJ_LIST);
26 
27 
28 END PA_CLIENT_EXTN_PROJ_LIMIT;