DBA Data[Home] [Help]

PACKAGE: APPS.PJI_REP_WP_DFLT_PARAMS

Source


1 package PJI_REP_WP_DFLT_PARAMS as
2 /*$Header: PJIRX09S.pls 120.0 2005/05/29 12:47:37 appldev noship $*/
3 
4 
5 -- ----------------------------------------------------------------------
6 
7 -- ----------------------------------------------------------------------
8 --   This procedures derives the default values for the listed parameters
9 -- ----------------------------------------------------------------------
10 
11 procedure Derive_Default_Parameters(
12 	p_project_id			in 		number,
13 	p_structure_version_id		in 		number,
14 
15 	x_wbs_element_id		out nocopy 	number,
16 	x_wbs_version_id		out nocopy 	number,
17 	x_rbs_element_id		out nocopy 	number,
18 	x_rbs_version_id		out nocopy 	number,
19 
20 	x_calendar_type			out nocopy 	varchar2,
21 	x_calendar_id			out nocopy 	number,
22 
23 	x_current_version_id		out nocopy 	number,
24 	x_actual_version_id		out nocopy 	number,
25 	x_latest_published_version_id	out nocopy 	number,
26 	x_baselined_version_id		out nocopy 	number,
27 
28 	x_currency_record_type		out nocopy 	number,
29 	x_currency_code			out nocopy 	varchar2,
30 	x_program_flag  		out nocopy 	varchar2,
31 	x_factor_by  			out nocopy 	number,
32 	x_published_version_flag	out nocopy 	varchar2,
33 	x_versioning_enabled_flag	out nocopy 	varchar2,
34 
35 	x_from_period 			out nocopy 	number,
36 	x_to_period 			out nocopy 	number,
37 	x_report_period 		out nocopy 	number,
38 
39 	x_context_margin_mask 		out nocopy 	varchar2,
40 	x_str_editable_flag         out nocopy varchar2,
41 	x_wbs_expansion_lvl		out nocopy number,
42 	x_rbs_expansion_lvl     out nocopy number,
43 	x_return_status 		out nocopy 	varchar2,
44 	x_msg_count 			out nocopy 	number,
45 	x_msg_data 			out nocopy 	varchar2
46 );
47 
48 -- ----------------------------------------------------------------------
49 
50 -- ----------------------------------------------------------------------
51 --   This procedure derives the tip message for view workplan pages
52 -- ----------------------------------------------------------------------
53 
54 procedure Get_Currency_Tip(
55 	p_project_id			in		number,
56 	p_currency_record_type		in		varchar2,
57 	x_tip_message			out nocopy 	varchar2,
58 
59 	x_return_status			out nocopy 	varchar2,
60 	x_msg_count			out nocopy	number,
61 	x_msg_data			out nocopy 	varchar2
62 );
63 
64 -- ----------------------------------------------------------------------
65 
66 end PJI_REP_WP_DFLT_PARAMS;