DBA Data[Home] [Help]

APPS.PA_SCHEDULE_PUB dependencies on PA_DEBUG

Line 84: PA_DEBUG.init_err_stack('PA_SCHEDULE_PUB.update_schedule');

80: --Clear the global PL/SQL message table
81: FND_MSG_PUB.initialize;
82:
83: -- Initialize the Error Stack
84: PA_DEBUG.init_err_stack('PA_SCHEDULE_PUB.update_schedule');
85:
86: -- Issue API savepoint if the transaction is to be committed
87: IF (p_commit = FND_API.G_TRUE) THEN
88: SAVEPOINT SCH_PUB_UPDATE_SCH;

Line 476: PA_DEBUG.init_err_stack('PA_SCHEDULE_PUB.single_update_schedule');

472: -- Initialize the return status to success
473: x_return_status := FND_API.G_RET_STS_SUCCESS ;
474:
475: -- Initialize the Error Stack
476: PA_DEBUG.init_err_stack('PA_SCHEDULE_PUB.single_update_schedule');
477:
478: -- Issue API savepoint if the transaction is to be committed
479: IF p_commit = FND_API.G_TRUE THEN
480: SAVEPOINT SCH_PUB_SINGLE_UPDATE_SCH;

Line 706: PA_DEBUG.init_err_stack('PA_SCHEDULE_PUB.mass_update_schedule');

702: FND_MSG_PUB.initialize;
703: END IF;
704:
705: -- Initialize the Error Stack
706: PA_DEBUG.init_err_stack('PA_SCHEDULE_PUB.mass_update_schedule');
707:
708:
709: ----------------------------------------------------------------------------------------------
710: --

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

3265: -- Storing the status for error handling
3266: l_x_return_status := FND_API.G_RET_STS_SUCCESS;
3267:
3268: -- 2843435
3269: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
3270:
3271: -- 4370082
3272: IF l_debug_mode = 'Y' THEN
3273: pa_debug.set_process('PLSQL','LOG',l_debug_mode);

Line 3273: pa_debug.set_process('PLSQL','LOG',l_debug_mode);

3269: fnd_profile.get('PA_DEBUG_MODE',l_debug_mode);
3270:
3271: -- 4370082
3272: IF l_debug_mode = 'Y' THEN
3273: pa_debug.set_process('PLSQL','LOG',l_debug_mode);
3274: END IF;
3275:
3276: -- End of 2843435
3277:

Line 3345: pa_debug.write_file('CREATE_NEW_CAL_SCHEDULES: '||'LOG', 'msg_count = '||FND_MSG_PUB.Count_Msg);

3341: -- to the report file. Therefore, we have to raise expected errors.
3342: IF l_x_return_status <> FND_API.G_RET_STS_SUCCESS THEN
3343:
3344: IF l_debug_mode = 'Y' THEN
3345: pa_debug.write_file('CREATE_NEW_CAL_SCHEDULES: '||'LOG', 'msg_count = '||FND_MSG_PUB.Count_Msg);
3346: END IF;
3347:
3348: FOR l_counter IN 1..FND_MSG_PUB.Count_Msg LOOP
3349: pa_interface_utils_pub.get_messages ( p_encoded => FND_API.G_FALSE

Line 3354: pa_debug.write_file('CREATE_NEW_CAL_SCHEDULES: '||'LOG', x_msg_data);

3350: ,p_msg_index => l_counter
3351: ,p_data => x_msg_data
3352: ,p_msg_index_out => l_msg_index_out);
3353: IF l_debug_mode = 'Y' THEN
3354: pa_debug.write_file('CREATE_NEW_CAL_SCHEDULES: '||'LOG', x_msg_data);
3355: END IF;
3356: END LOOP;
3357:
3358: RAISE l_exception;