DBA Data[Home] [Help]

APPS.PA_PRODUCT_INSTALL_UTILS dependencies on PA_DEBUG

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

94: select 'X' from pa_product_functions
95: where object_type = 'AK_REGION'
96: and object_code = p_object_code;
97: Begin
98: pa_debug.Init_err_stack ( 'Validate Object');
99: x_msg_count :=0;
100: x_msg_data:= null;
101: x_return_status:=fnd_api.g_ret_sts_success;
102: x_ret_code:= 'Y' ;

Line 113: --PA_DEBUG.Reset_Err_Stack;

109: PA_UTILS.Add_Message( p_app_short_name => 'PA'
110: ,p_msg_name => 'PA_INV_FUNCTION');
111: x_msg_count := x_msg_count + 1;
112: x_return_status := FND_API.G_RET_STS_ERROR;
113: --PA_DEBUG.Reset_Err_Stack;
114: --close valid_function;
115: --RETURN;
116: end if;
117: close valid_function;

Line 125: --PA_DEBUG.Reset_Err_Stack;

121: PA_UTILS.Add_Message( p_app_short_name => 'PA'
122: ,p_msg_name => 'PA_INV_PROJECT_FUNCTION');
123: x_msg_count := x_msg_count + 1;
124: x_return_status := FND_API.G_RET_STS_ERROR;
125: --PA_DEBUG.Reset_Err_Stack;
126: --close valid_project_function;
127: --RETURN;
128: end if;
129: close valid_project_function;

Line 138: --PA_DEBUG.Reset_Err_Stack;

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

Line 151: /*--PA_DEBUG.Reset_Err_Stack;

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

Line 160: PA_DEBUG.Reset_Err_Stack;

156: end if;
157: if(x_return_status = FND_API.G_RET_STS_ERROR) then
158: x_ret_code := 'N';
159: end if;
160: PA_DEBUG.Reset_Err_Stack;
161: EXCEPTION
162: When others then
163: -- Set the excetption Message and the stack
164: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PRODUCT_INSTALL_UTILS.validate_object'

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

161: EXCEPTION
162: When others then
163: -- Set the excetption Message and the stack
164: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PRODUCT_INSTALL_UTILS.validate_object'
165: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
166: --
167: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
168: x_ret_code := 'N'; -- This is optional depending on the needs
169: END validate_object;

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

178: is
179: l_object_type varchar2(30):='FND_FUNCTION';
180:
181: Begin
182: pa_debug.Init_err_stack ( 'Check function Licensed');
183: x_msg_count :=0;
184: x_msg_data:= null;
185: x_return_status:=fnd_api.g_ret_sts_success;
186: x_ret_code:= 'N' ;

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

202: EXCEPTION
203: When others then
204: -- Set the excetption Message and the stack
205: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PRODUCT_INSTALL_UTILS.check_function_licensed'
206: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
207: --
208: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
209: RAISE; -- This is optional depending on the needs
210: END check_function_licensed;

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

253: is
254: l_object_type varchar2(30):='AK_REGION';
255:
256: Begin
257: pa_debug.Init_err_stack ( 'Check Region Licensed');
258: x_msg_count :=0;
259: x_msg_data:= null;
260: x_return_status:=fnd_api.g_ret_sts_success;
261: x_ret_code:= 'N' ;

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

277: EXCEPTION
278: When others then
279: -- Set the excetption Message and the stack
280: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_PRODUCT_INSTALL_UTILS.check_region_licensed'
281: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
282: --
283: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
284: x_ret_code:= 'N' ;
285: RAISE; -- This is optional depending on the needs