DBA Data[Home] [Help]

APPS.IGF_SP_ASSIGN_PUB dependencies on FND_API

Line 428: IF NOT fnd_api.compatible_api_call(l_api_version,

424: SAVEPOINT create_stdnt_spnsr_rel_pub;
425:
426: -- Check for the Compatible API call if the versions of the API and the version passed are
427: -- different then raise the unexpected error message
428: IF NOT fnd_api.compatible_api_call(l_api_version,
429: p_api_version,
430: l_api_name,
431: g_pkg_name) THEN
432: RAISE fnd_api.g_exc_unexpected_error;

Line 432: RAISE fnd_api.g_exc_unexpected_error;

428: IF NOT fnd_api.compatible_api_call(l_api_version,
429: p_api_version,
430: l_api_name,
431: g_pkg_name) THEN
432: RAISE fnd_api.g_exc_unexpected_error;
433: END IF;
434:
435: -- If the calling program has passed the parameter for initializing the message list
436: -- then call the Initialize program of the FND_MSG_PUB package

Line 437: IF fnd_api.to_boolean(p_init_msg_list) THEN

433: END IF;
434:
435: -- If the calling program has passed the parameter for initializing the message list
436: -- then call the Initialize program of the FND_MSG_PUB package
437: IF fnd_api.to_boolean(p_init_msg_list) THEN
438: fnd_msg_pub.initialize;
439: END IF;
440:
441: -- Set the return status to success

Line 442: x_return_status := fnd_api.g_ret_sts_success;

438: fnd_msg_pub.initialize;
439: END IF;
440:
441: -- Set the return status to success
442: x_return_status := fnd_api.g_ret_sts_success;
443:
444: -- Obtain the value of manage_accounts in the System Options form
445: -- If it is null, then raise error. For normal processing, the value should
446: -- be 'OTHER' or 'STUDENT_FINANCE'

Line 455: RAISE fnd_api.g_exc_error;

451: l_b_error := TRUE;
452: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
453: fnd_message.set_name('IGS',l_c_message_name);
454: fnd_msg_pub.add;
455: RAISE fnd_api.g_exc_error;
456: END IF;
457: END IF;
458:
459:

Line 668: RAISE fnd_api.g_exc_error;

664: fnd_message.set_token('AWARD_YR_CAL_SEQ',p_awd_ci_sequence_number);
665: fnd_message.set_token('LOAD_CAL_TYPE',p_ld_cal_type);
666: fnd_message.set_token('LOAD_CAL_SEQ',p_ld_ci_sequence_number);
667: fnd_msg_pub.add;
668: RAISE fnd_api.g_exc_error;
669: END IF;
670: ELSE
671: -- If there is no relation then a new Sponsor-Student relation should be created.
672: -- Bug 5217319 Added call to format amount by rounding off to currency precision

Line 686: RAISE fnd_api.g_exc_error;

682: x_min_attendance_type=> NULL);
683: END IF;
684: END IF;
685: ELSE
686: RAISE fnd_api.g_exc_error;
687: END IF;
688:
689: -- If the calling program has passed the parameter for committing the data and there
690: -- have been no errors in calling the balances process, then commit the work

Line 691: IF fnd_api.to_boolean(p_commit) THEN

687: END IF;
688:
689: -- If the calling program has passed the parameter for committing the data and there
690: -- have been no errors in calling the balances process, then commit the work
691: IF fnd_api.to_boolean(p_commit) THEN
692: COMMIT WORK;
693: END IF;
694:
695: fnd_msg_pub.count_and_get(p_count => x_msg_count,

Line 699: WHEN fnd_api.g_exc_error THEN

695: fnd_msg_pub.count_and_get(p_count => x_msg_count,
696: p_data => x_msg_data);
697:
698: EXCEPTION
699: WHEN fnd_api.g_exc_error THEN
700: ROLLBACK TO create_stdnt_spnsr_rel_pub;
701: x_return_status := fnd_api.g_ret_sts_error;
702: fnd_msg_pub.count_and_get( p_count => x_msg_count,
703: p_data => x_msg_data);

Line 701: x_return_status := fnd_api.g_ret_sts_error;

697:
698: EXCEPTION
699: WHEN fnd_api.g_exc_error THEN
700: ROLLBACK TO create_stdnt_spnsr_rel_pub;
701: x_return_status := fnd_api.g_ret_sts_error;
702: fnd_msg_pub.count_and_get( p_count => x_msg_count,
703: p_data => x_msg_data);
704: WHEN fnd_api.g_exc_unexpected_error THEN
705: ROLLBACK TO create_stdnt_spnsr_rel_pub;

Line 704: WHEN fnd_api.g_exc_unexpected_error THEN

700: ROLLBACK TO create_stdnt_spnsr_rel_pub;
701: x_return_status := fnd_api.g_ret_sts_error;
702: fnd_msg_pub.count_and_get( p_count => x_msg_count,
703: p_data => x_msg_data);
704: WHEN fnd_api.g_exc_unexpected_error THEN
705: ROLLBACK TO create_stdnt_spnsr_rel_pub;
706: x_return_status := fnd_api.g_ret_sts_unexp_error;
707: fnd_msg_pub.count_and_get( p_count => x_msg_count,
708: p_data => x_msg_data);

Line 706: x_return_status := fnd_api.g_ret_sts_unexp_error;

702: fnd_msg_pub.count_and_get( p_count => x_msg_count,
703: p_data => x_msg_data);
704: WHEN fnd_api.g_exc_unexpected_error THEN
705: ROLLBACK TO create_stdnt_spnsr_rel_pub;
706: x_return_status := fnd_api.g_ret_sts_unexp_error;
707: fnd_msg_pub.count_and_get( p_count => x_msg_count,
708: p_data => x_msg_data);
709: WHEN OTHERS THEN
710: ROLLBACK TO create_stdnt_spnsr_rel_pub;

Line 711: x_return_status := fnd_api.g_ret_sts_unexp_error;

707: fnd_msg_pub.count_and_get( p_count => x_msg_count,
708: p_data => x_msg_data);
709: WHEN OTHERS THEN
710: ROLLBACK TO create_stdnt_spnsr_rel_pub;
711: x_return_status := fnd_api.g_ret_sts_unexp_error;
712: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
713: fnd_msg_pub.add_exc_msg(g_pkg_name,
714: l_api_name);
715: END IF;