DBA Data[Home] [Help]

APPS.PA_ACTION_SET_LINES_PKG dependencies on PA_DEBUG

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

31: -- Initialize the return status to success
32: x_return_status := FND_API.G_RET_STS_SUCCESS;
33:
34: -- Bug 4403338
35: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
36:
37: --Log Message - 4403338
38: IF l_debug_mode = 'Y' THEN
39: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_Pkg.insert_row.begin'

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

35: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
36:
37: --Log Message - 4403338
38: IF l_debug_mode = 'Y' THEN
39: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_Pkg.insert_row.begin'
40: ,x_msg => 'Beginning of insert row'
41: ,x_log_level => 5);
42: END IF;
43:

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

97: EXCEPTION
98: WHEN OTHERS THEN
99: -- Set the excetption Message and the stack
100: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_ACTION_SET_LINES_PKG.Insert_row'
101: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
102: --
103: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
104: RAISE;
105:

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

139: -- Initialize the return status to success
140: x_return_status := FND_API.G_RET_STS_SUCCESS;
141:
142: -- Bug 4403338
143: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
144:
145: --Log Message - 4403338
146: IF l_debug_mode = 'Y' THEN
147: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_LINES_Pkg.update_row.begin'

Line 147: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_LINES_Pkg.update_row.begin'

143: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
144:
145: --Log Message - 4403338
146: IF l_debug_mode = 'Y' THEN
147: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_LINES_Pkg.update_row.begin'
148: ,x_msg => 'Beginning of update row'
149: ,x_log_level => 5);
150: END IF;
151:

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

194:
195: WHEN OTHERS THEN
196: -- Set the excetption Message and the stack
197: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_ACTION_SET_LINES_PKG.update_row'
198: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
199: --
200: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
201: RAISE;
202:

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

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