DBA Data[Home] [Help]

APPS.BIS_ACTUAL_PUB dependencies on BIS_UTILITIES_PVT

Line 32: BIS_UTILITIES_PVT.resequence_dim_levels

28:
29: -- mdamle 01/15/2001 - Resequence the dimensions levels for product teams still using Org and Time
30: IF (l_target_level_rec.org_level_id IS NOT NULL) AND
31: (l_target_level_rec.time_level_id IS NOT NULL) THEN
32: BIS_UTILITIES_PVT.resequence_dim_levels
33: (p_target_level_rec
34: ,'N'
35: ,l_target_level_rec
36: ,x_error_tbl);

Line 52: BIS_UTILITIES_PVT.reseq_ind_dim_level_values(

48: -- mdamle 01/12/2001 Resequence the dimensions levels for product teams still using Org and Time
49: IF (x_Indicator_Region_Tbl.COUNT > 0) THEN
50: l_indicator_region_tbl := x_Indicator_Region_Tbl;
51: FOR l_count IN 1..l_indicator_region_tbl.COUNT LOOP
52: BIS_UTILITIES_PVT.reseq_ind_dim_level_values(
53: l_indicator_region_tbl(l_count)
54: ,'R'
55: ,x_Indicator_Region_Tbl(l_count)
56: ,x_Error_tbl

Line 96: BIS_UTILITIES_PVT.RESEQ_ACTUAL_DIM_LEVEL_VALUES

92: -- mdamle 01/15/2001 - Resequence the dimensions levels for product teams still using Org and Time
93: IF (l_actual_rec.org_level_value_id IS NOT NULL) AND
94: (l_actual_rec.time_level_value_id IS NOT NULL) THEN
95: l_actual_rec_p := l_actual_rec;
96: BIS_UTILITIES_PVT.RESEQ_ACTUAL_DIM_LEVEL_VALUES
97: (p_dim_values_rec => l_actual_rec_p
98: ,p_sequence_dir => 'N'
99: ,x_dim_values_rec => l_actual_rec
100: ,x_error_tbl => x_error_tbl);

Line 130: BIS_UTILITIES_PVT.Add_Error_Message

126: when others then
127: --dbms_output.put_line('PUB 3 Exception');
128: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
129: l_error_tbl := x_error_tbl;
130: BIS_UTILITIES_PVT.Add_Error_Message
131: ( p_error_msg_id => SQLCODE
132: , p_error_description => SQLERRM
133: , p_error_proc_name => G_PKG_NAME||'.Create_Actual'
134: , p_error_table => l_error_tbl

Line 173: BIS_UTILITIES_PVT.reseq_actual_dim_level_values(

169: -- mdamle 01/15/2001 - Resequence the dimensions levels for product teams still using Org and Time
170: IF (l_actual_rec.org_level_value_id IS NOT NULL) AND
171: (l_actual_rec.time_level_value_id IS NOT NULL) THEN
172: l_actual_rec_p := l_actual_rec;
173: BIS_UTILITIES_PVT.reseq_actual_dim_level_values(
174: l_actual_rec_p
175: ,'N'
176: ,l_Actual_Rec
177: ,x_error_tbl

Line 193: BIS_UTILITIES_PVT.reseq_actual_dim_level_values (

189:
190: l_actual_rec_p := x_Actual_Rec;
191:
192: -- mdamle 01/12/2001 Resequence the dimensions levels for product teams still using Org and Time
193: BIS_UTILITIES_PVT.reseq_actual_dim_level_values (
194: l_actual_rec_p
195: ,'R'
196: ,x_Actual_Rec
197: ,x_error_tbl