DBA Data[Home] [Help]

APPS.PA_ACTION_SETS_PKG dependencies on PA_DEBUG

Line 46: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

42: -- Initialize the return status to success
43: x_return_status := FND_API.G_RET_STS_SUCCESS;
44:
45: -- Bug 4403338
46: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
47:
48: --Log Message: 4403338
49: IF l_debug_mode = 'Y' THEN
50: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_Pkg.insert_row.begin'

Line 50: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_Pkg.insert_row.begin'

46: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
47:
48: --Log Message: 4403338
49: IF l_debug_mode = 'Y' THEN
50: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_Pkg.insert_row.begin'
51: ,x_msg => 'Beginning of insert row'
52: ,x_log_level => 5);
53: END IF;
54:

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

132: EXCEPTION
133: WHEN OTHERS THEN
134: -- Set the excetption Message and the stack
135: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_ACTION_SETS_PKG.Insert_row'
136: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
137: --
138: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
139: RAISE;
140:

Line 182: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);

178: -- Initialize the return status to success
179: x_return_status := FND_API.G_RET_STS_SUCCESS;
180:
181: -- Bug 4403338
182: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
183:
184: --Log Message: 4403338
185: IF l_debug_mode = 'Y' THEN
186: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SETS_Pkg.update_row.begin'

Line 186: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SETS_Pkg.update_row.begin'

182: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
183:
184: --Log Message: 4403338
185: IF l_debug_mode = 'Y' THEN
186: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SETS_Pkg.update_row.begin'
187: ,x_msg => 'Beginning of update row'
188: ,x_log_level => 5);
189: END IF;
190:

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

230: EXCEPTION
231: WHEN OTHERS THEN
232: -- Set the excetption Message and the stack
233: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_ACTION_SETS_PKG.update_row'
234: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
235: --
236: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
237: RAISE;
238:

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

267: EXCEPTION
268: WHEN OTHERS THEN
269: -- Set the exception Message and the stack
270: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_ACTION_SETS_PKG.Delete_Row'
271: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
272: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
273: RAISE;
274: END Delete_Row;
275: