DBA Data[Home] [Help]

PACKAGE: APPS.PA_RESOURCE_MAPPING

Source


1 PACKAGE PA_RESOURCE_MAPPING AS
2 /* $Header: PARSMAPS.pls 120.1 2005/09/08 05:26:54 appldev noship $ */
3 
4 
5 /* This variable will tell if the map_resource_list is called from actuals or not */
6 g_called_process varchar2(20) := 'PLAN';
7   /*--------------------------------------------------------------
8      This API assumes that the temporary table pa_res_list_map_tmp
9      has been populated with planning transactions that need to be
10 	 mapped to a planning resource
11   --------------------------------------------------------------*/
12   PROCEDURE map_resource_list (
13     p_resource_list_id IN NUMBER,
14      p_project_id   IN NUMBER, --bug#3576766
15 	x_return_status  OUT NOCOPY VARCHAR2,
16 	x_msg_count      OUT NOCOPY NUMBER,
17 	x_msg_data       OUT NOCOPY VARCHAR2
18   ) ;
19 
20   /*---------------------------------------------------------
21      Returns the format precedence for every resource class
22   ---------------------------------------------------------*/
23   PROCEDURE get_format_precedence (
24       p_resource_class_id   IN NUMBER,
25       p_res_format_id       IN NUMBER,
26       x_format_precedence   OUT NOCOPY /* file.sql.39 change */ NUMBER,
27       x_return_status       OUT NOCOPY /* file.sql.39 change */ VARCHAR2,
28       x_msg_code            OUT NOCOPY /* file.sql.39 change */ VARCHAR2 );
29 
30 END; --end package pa_resource_mapping