DBA Data[Home] [Help]

APPS.JTF_RS_IMP_RES_PVT dependencies on FND_MSG_PUB

Line 444: fnd_msg_pub.initialize;

440: RAISE fnd_api.g_exc_unexpected_error;
441: END IF;
442:
443: IF fnd_api.to_boolean(p_init_msg_list) THEN
444: fnd_msg_pub.initialize;
445: END IF;
446:
447: -- initializing the transaction number
448: l_transaction_number := null;

Line 582: fnd_msg_pub.add;

578: IF (p_imp_res_tbl(i).create_salesperson = 'Y') THEN
579: IF p_imp_res_tbl(i).salesperson_number IS NULL THEN
580: fnd_message.set_name('JTF','JTF_RS_NO_SRP_NUM_ENT_FOR_EMP');
581: fnd_message.set_token('P_EMP_NAME',p_imp_res_tbl(i).name);
582: fnd_msg_pub.add;
583: RAISE fnd_api.g_exc_error;
584: ELSE
585: --Create a Salesperson for the Resource Created above
586: JTF_RS_SALESREPS_PUB.CREATE_SALESREP (

Line 922: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);

918: IF fnd_api.to_boolean(p_commit) THEN
919: COMMIT WORK;
920: END IF;
921:
922: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
923:
924: EXCEPTION
925: WHEN fnd_api.g_exc_error THEN
926: ROLLBACK TO import_resources;

Line 929: FND_MSG_PUB.count_and_get (p_count => x_msg_count,

925: WHEN fnd_api.g_exc_error THEN
926: ROLLBACK TO import_resources;
927: x_return_status := fnd_api.g_ret_sts_error;
928: x_transaction_num := NULL;
929: FND_MSG_PUB.count_and_get (p_count => x_msg_count,
930: p_data => x_msg_data);
931: WHEN fnd_api.g_exc_unexpected_error THEN
932: ROLLBACK TO import_resources;
933: x_return_status := fnd_api.g_ret_sts_unexp_error;

Line 935: FND_MSG_PUB.count_and_get (p_count => x_msg_count,

931: WHEN fnd_api.g_exc_unexpected_error THEN
932: ROLLBACK TO import_resources;
933: x_return_status := fnd_api.g_ret_sts_unexp_error;
934: x_transaction_num := NULL;
935: FND_MSG_PUB.count_and_get (p_count => x_msg_count,
936: p_data => x_msg_data);
937: WHEN OTHERS THEN
938: ROLLBACK TO import_resources;
939: fnd_message.set_name ('JTF','JTF_RS_UNEXP_ERROR');

Line 943: FND_MSG_PUB.add;

939: fnd_message.set_name ('JTF','JTF_RS_UNEXP_ERROR');
940: fnd_message.set_token('P_SQLCODE',SQLCODE);
941: fnd_message.set_token('P_SQLERRM',SQLERRM);
942: fnd_message.set_token('P_API_NAME',l_api_name);
943: FND_MSG_PUB.add;
944: x_return_status := fnd_api.g_ret_sts_unexp_error;
945: x_transaction_num := NULL;
946: FND_MSG_PUB.count_and_get (p_count => x_msg_count,
947: p_data => x_msg_data);

Line 946: FND_MSG_PUB.count_and_get (p_count => x_msg_count,

942: fnd_message.set_token('P_API_NAME',l_api_name);
943: FND_MSG_PUB.add;
944: x_return_status := fnd_api.g_ret_sts_unexp_error;
945: x_transaction_num := NULL;
946: FND_MSG_PUB.count_and_get (p_count => x_msg_count,
947: p_data => x_msg_data);
948:
949: END import_resources;
950: