DBA Data[Home] [Help]

APPS.PA_ACTION_SET_LINE_COND_PKG dependencies on PA_DEBUG

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

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

Line 37: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_LINE_COND_Pkg.insert_row.begin'

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

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

89: EXCEPTION
90: WHEN OTHERS THEN
91: -- Set the excetption Message and the stack
92: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_ACTION_SET_LINE_COND_PKG.Insert_row'
93: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
94: --
95: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
96: RAISE;
97:

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

128: -- Initialize the return status to success
129: x_return_status := FND_API.G_RET_STS_SUCCESS;
130:
131: -- Bug 4403338
132: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
133:
134: --Log Message - 4403338
135: IF l_debug_mode = 'Y' THEN
136: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_LINE_COND_Pkg.update_row.begin'

Line 136: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_LINE_COND_Pkg.update_row.begin'

132: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
133:
134: --Log Message - 4403338
135: IF l_debug_mode = 'Y' THEN
136: PA_DEBUG.write_log (x_module => 'pa.plsql.PA_ACTION_SET_LINE_COND_Pkg.update_row.begin'
137: ,x_msg => 'Beginning of update row'
138: ,x_log_level => 5);
139: END IF;
140:

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

179:
180: WHEN OTHERS THEN
181: -- Set the excetption Message and the stack
182: FND_MSG_PUB.add_exc_msg ( p_pkg_name => 'PA_ACTION_SET_LINE_COND_PKG.update_row'
183: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
184: --
185: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
186: RAISE;
187:

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

215: EXCEPTION
216: WHEN OTHERS THEN
217: -- Set the exception Message and the stack
218: FND_MSG_PUB.add_exc_msg( p_pkg_name => 'PA_ACTION_SET_LINE_COND_PKG.Delete_Row'
219: ,p_procedure_name => PA_DEBUG.G_Err_Stack );
220: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
221: RAISE;
222: END Delete_Row;
223: