DBA Data[Home] [Help]

APPS.PSA_BC_XLA_PVT dependencies on FND_MSG_PUB

Line 577: FND_MSG_PUB.initialize;

573: psa_utils.debug_other_string(g_state_level,l_path_name, 'User Id = ' ||p_user_id);
574: psa_utils.debug_other_string(g_state_level,l_path_name, 'User Responsibility Id = ' ||p_user_resp_id);
575:
576: IF (FND_API.to_boolean(p_init_msg_list)) THEN
577: FND_MSG_PUB.initialize;
578: END IF;
579:
580:
581: --

Line 596: fnd_msg_pub.ADD;

592: --
593: IF p_application_id IS NULL THEN
594: fnd_message.set_name('PSA','PSA_BC_PARAMETERS_ERROR');
595: fnd_message.set_token('PARAM_NAME','Application Id');
596: fnd_msg_pub.ADD;
597: RAISE Fnd_Api.G_Exc_Error;
598: END IF;
599:
600: -- Currently the packetid is set to -1 , will change after SLA enhancement for PSA

Line 610: Fnd_Msg_Pub.ADD;

606: ELSE
607: IF (l_bc_mode NOT IN (C_FUNDS_CHECK,C_FUNDS_CHK_FULL,C_FUNDS_RESERVE,C_FUNDS_PARTIAL,C_FUNDS_FORCE_PASS,C_FUNDS_ADVISORY)) THEN
608: Fnd_message.set_name('PSA','PSA_BC_PARAMETERS_ERROR');
609: Fnd_Message.Set_Token('PARAM_NAME','Funds Mode');
610: Fnd_Msg_Pub.ADD;
611: psa_utils.debug_other_msg(p_level => g_error_level,
612: p_full_path => l_path_name,
613: p_remove_from_stack => FALSE);
614: Fnd_file.put_line(fnd_file.log, fnd_message.get);

Line 625: Fnd_Msg_Pub.ADD;

621: ELSE
622: IF (l_override_flag NOT IN (C_YES,C_NO)) THEN
623: Fnd_message.set_name('PSA','PSA_BC_PARAMETERS_ERROR');
624: Fnd_Message.Set_Token('PARAM_NAME','Override Flag');
625: Fnd_Msg_Pub.ADD;
626: psa_utils.debug_other_msg(p_level => g_error_level,
627: p_full_path => l_path_name,
628: p_remove_from_stack => FALSE);
629: Fnd_file.put_line(fnd_file.log, fnd_message.get);

Line 702: Fnd_Msg_Pub.ADD;

698: psa_xla_error('PSA_XLA_NO_R12_UPG_DATE');
699:
700: Fnd_message.set_name('PSA','PSA_BC_XLA_ERROR');
701: Fnd_Message.Set_Token('PARAM_NAME','Profile PSA: R12 Upgrade Date does not have a value');
702: Fnd_Msg_Pub.ADD;
703:
704: Raise FND_API.G_EXC_ERROR;
705: END IF;
706: EXCEPTION

Line 717: Fnd_Msg_Pub.ADD;

713: psa_xla_error('PSA_XLA_INVALID_R12_UPG_DATE');
714:
715: Fnd_message.set_name('PSA','PSA_BC_XLA_ERROR');
716: Fnd_Message.Set_Token('PARAM_NAME','Format for Value in Profile PSA: R12 Upgrade Date should be MM/DD/YYYY HH24:MI:SS');
717: Fnd_Msg_Pub.ADD;
718:
719: Raise FND_API.G_EXC_ERROR;
720: END;
721:

Line 740: Fnd_Msg_Pub.ADD;

736:
737: x_status_code := 'FATAL';
738: Fnd_message.set_name('PSA','PSA_BC_XLA_ERROR');
739: Fnd_Message.Set_Token('PARAM_NAME','No Events to be processed');
740: Fnd_Msg_Pub.ADD;
741: Raise FND_API.G_EXC_ERROR;
742:
743: END IF;
744:

Line 837: --Fnd_Msg_Pub.ADD;

833: psa_utils.debug_other_string(g_state_level,l_path_name, 'ERROR returned in SLA Accounting Engine API');
834: l_overall_success := FALSE;
835: --Fnd_message.set_name('PSA','PSA_BC_XLA_ERROR');
836: --Fnd_Message.Set_Token('PARAM_NAME',l_errbuf);
837: --Fnd_Msg_Pub.ADD;
838: -- update the psa_bc_xla_events_gt event records to
839: -- XLA_ERROR status
840: UPDATE psa_bc_xla_events_gt
841: SET result_code = 'XLA_ERROR';

Line 1011: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE

1007: EXCEPTION
1008:
1009: WHEN FND_API.G_EXC_ERROR THEN
1010: x_return_status := FND_API.G_RET_STS_ERROR ;
1011: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE
1012: ,p_count => x_msg_count
1013: ,p_data => x_msg_data);
1014: psa_utils.debug_other_string(g_error_level,l_path_name,'EXCEPTION: '|| SQLERRM(sqlcode));
1015: psa_utils.debug_other_string(g_error_level,l_path_name,'Error in budgetary_control Procedure' );

Line 1021: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE

1017:
1018: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1019: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1020: psa_utils.debug_other_string(g_unexp_level,l_path_name, 'Unexpected Error'|| sqlerrm);
1021: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE
1022: ,p_count => x_msg_count
1023: ,p_data => x_msg_data);
1024:
1025: psa_utils.debug_other_string(g_unexp_level,l_path_name,'ERROR: Unexpected Error in budgetary_control Procedure' );

Line 1029: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN

1025: psa_utils.debug_other_string(g_unexp_level,l_path_name,'ERROR: Unexpected Error in budgetary_control Procedure' );
1026: pa_gms_tieback_api;
1027: WHEN OTHERS THEN
1028: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1029: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
1030: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, 'PSA_BC_XLA_PVT');
1031: END IF;
1032: psa_utils.debug_unexpected_msg(G_PKG_NAME);
1033: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE

Line 1030: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, 'PSA_BC_XLA_PVT');

1026: pa_gms_tieback_api;
1027: WHEN OTHERS THEN
1028: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
1029: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
1030: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, 'PSA_BC_XLA_PVT');
1031: END IF;
1032: psa_utils.debug_unexpected_msg(G_PKG_NAME);
1033: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE
1034: ,p_count => x_msg_count

Line 1033: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE

1029: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_unexp_error) THEN
1030: FND_MSG_PUB.add_exc_msg(G_PKG_NAME, 'PSA_BC_XLA_PVT');
1031: END IF;
1032: psa_utils.debug_unexpected_msg(G_PKG_NAME);
1033: FND_MSG_PUB.count_and_get(p_encoded => FND_API.G_FALSE
1034: ,p_count => x_msg_count
1035: ,p_data => x_msg_data);
1036: psa_utils.debug_other_string(g_excep_level,l_path_name,'EXCEPTION: '|| SQLERRM(sqlcode));
1037: psa_utils.debug_other_string(g_excep_level,l_path_name,'Error in budgetary_control Procedure' );

Line 1301: FND_MSG_PUB.ADD;

1297: OUT l_ret_code;
1298: IF (l_ret_code = 'F') THEN
1299: psa_utils.debug_other_string(g_error_level,l_path_name, 'PA Integration API Failed');
1300: FND_MESSAGE.SET_NAME('PA', 'PA_BC_FUND_CHK_FAIL');
1301: FND_MSG_PUB.ADD;
1302: RAISE FND_API.G_EXC_ERROR;
1303: ELSE
1304: psa_utils.debug_other_string(g_state_level,l_path_name, 'PA Integration API Successful');
1305: END IF;

Line 1348: FND_MSG_PUB.ADD;

1344: OUT l_ret_code;
1345: IF (l_ret_code = 'F') THEN
1346: psa_utils.debug_other_string(g_state_level,l_path_name, 'GMS Integration API Failed');
1347: FND_MESSAGE.SET_NAME('GMS', 'GMS_FUNDS_CHECK_FAILED');
1348: FND_MSG_PUB.ADD;
1349: RAISE FND_API.G_EXC_ERROR;
1350: ELSE
1351: psa_utils.debug_other_string(g_state_level,l_path_name, 'GMS Integration API Successful');
1352: END IF;