DBA Data[Home] [Help]

APPS.PA_PRODUCT_INSTALL_UTILS dependencies on PA_DEBUG

Line 125: pa_debug.Init_err_stack ( 'Validate Object');

121: select 'X' from pa_product_functions
122: where object_type = 'AK_REGION'
123: and object_code = p_object_code;
124: Begin
125: pa_debug.Init_err_stack ( 'Validate Object');
126: x_msg_count :=0;
127: x_msg_data:= null;
128: x_return_status:=fnd_api.g_ret_sts_success;
129: x_ret_code:= 'Y' ;

Line 140: --PA_DEBUG.Reset_Err_Stack;

136: PA_UTILS.Add_Message( p_app_short_name => 'PA'
137: ,p_msg_name => 'PA_INV_FUNCTION');
138: x_msg_count := x_msg_count + 1;
139: x_return_status := FND_API.G_RET_STS_ERROR;
140: --PA_DEBUG.Reset_Err_Stack;
141: --close valid_function;
142: --RETURN;
143: end if;
144: close valid_function;

Line 152: --PA_DEBUG.Reset_Err_Stack;

148: PA_UTILS.Add_Message( p_app_short_name => 'PA'
149: ,p_msg_name => 'PA_INV_PROJECT_FUNCTION');
150: x_msg_count := x_msg_count + 1;
151: x_return_status := FND_API.G_RET_STS_ERROR;
152: --PA_DEBUG.Reset_Err_Stack;
153: --close valid_project_function;
154: --RETURN;
155: end if;
156: close valid_project_function;

Line 165: --PA_DEBUG.Reset_Err_Stack;

161: PA_UTILS.Add_Message( p_app_short_name => 'PA'
162: ,p_msg_name => 'PA_INV_AK_REGION');
163: x_msg_count := x_msg_count + 1;
164: x_return_status := FND_API.G_RET_STS_ERROR;
165: --PA_DEBUG.Reset_Err_Stack;
166: --close valid_region;
167: --RETURN;
168: end if;
169: close valid_region;

Line 178: /*--PA_DEBUG.Reset_Err_Stack;

174: PA_UTILS.Add_Message( p_app_short_name => 'PA'
175: ,p_msg_name => 'PA_INV_PROJECT_REGION');
176: x_msg_count := x_msg_count + 1;
177: x_return_status := FND_API.G_RET_STS_ERROR;
178: /*--PA_DEBUG.Reset_Err_Stack;
179: --close valid_project_function;
180: --RETURN;*/
181: end if;
182: close valid_product_region;

Line 187: PA_DEBUG.Reset_Err_Stack;

183: end if;
184: if(x_return_status = FND_API.G_RET_STS_ERROR) then
185: x_ret_code := 'N';
186: end if;
187: PA_DEBUG.Reset_Err_Stack;
188: EXCEPTION
189: When others then
190: -- Set the excetption Message and the stack
191: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PRODUCT_INSTALL_UTILS.validate_object'

Line 192: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

188: EXCEPTION
189: When others then
190: -- Set the excetption Message and the stack
191: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PRODUCT_INSTALL_UTILS.validate_object'
192: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
193: --
194: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
195: x_ret_code := 'N'; -- This is optional depending on the needs
196: END validate_object;

Line 209: pa_debug.Init_err_stack ( 'Check function Licensed');

205: is
206: l_object_type varchar2(30):='FND_FUNCTION';
207:
208: Begin
209: pa_debug.Init_err_stack ( 'Check function Licensed');
210: x_msg_count :=0;
211: x_msg_data:= null;
212: x_return_status:=fnd_api.g_ret_sts_success;
213: x_ret_code:= 'N' ;

Line 233: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

229: EXCEPTION
230: When others then
231: -- Set the excetption Message and the stack
232: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PRODUCT_INSTALL_UTILS.check_function_licensed'
233: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
234: --
235: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
236: RAISE; -- This is optional depending on the needs
237: END check_function_licensed;

Line 284: pa_debug.Init_err_stack ( 'Check Region Licensed');

280: is
281: l_object_type varchar2(30):='AK_REGION';
282:
283: Begin
284: pa_debug.Init_err_stack ( 'Check Region Licensed');
285: x_msg_count :=0;
286: x_msg_data:= null;
287: x_return_status:=fnd_api.g_ret_sts_success;
288: x_ret_code:= 'N' ;

Line 308: ,p_procedure_name => PA_DEBUG.G_Err_Stack );

304: EXCEPTION
305: When others then
306: -- Set the excetption Message and the stack
307: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PRODUCT_INSTALL_UTILS.check_region_licensed'
308: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
309: --
310: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
311: x_ret_code:= 'N' ;
312: RAISE; -- This is optional depending on the needs