DBA Data[Home] [Help]

APPS.IGS_FI_GEN_004 dependencies on FND_API

Line 554: x_return_status := FND_API.G_RET_STS_SUCCESS;

550: -- assessment from todo process igs_fi_ss_acct_payment.finp_calc_fees_todo
551: -- (IGSFI63B.pls) to experience a lock from the todo reference table.
552:
553: -- Initialize return status
554: x_return_status := FND_API.G_RET_STS_SUCCESS;
555:
556: -- Initialize the repeat variable
557: rpt_load_cal_type := 'NULL';
558: rpt_load_ci_sequence_number := 0;

Line 585: RAISE fnd_api.g_exc_error;

581: -- Code to add to stack has been added as part of 2734512
582: fnd_message.set_name('IGS',l_message);
583: igs_ge_msg_stack.add;
584: x_msg_data := l_message;
585: RAISE fnd_api.g_exc_error;
586: END IF;
587: ELSE
588: l_fee_cal_type := p_fee_cal_type;
589: l_fee_ci_sequence_number := p_fee_ci_sequence_number;

Line 618: RAISE FND_API.G_EXC_ERROR;

614: fnd_message.set_token('ALT_CD', igs_fi_prc_fee_ass.g_v_load_alt_code);
615: END IF;
616: igs_ge_msg_stack.add;
617: x_msg_data := l_message_name;
618: RAISE FND_API.G_EXC_ERROR;
619: ELSE
620: -- If call is success, action off child record
621: igs_pe_std_todo_ref_pkg.update_row(
622: x_rowid => lp_todo_ref_rec.rowid,

Line 647: WHEN FND_API.G_EXC_ERROR THEN

643: rpt_load_cal_type := lp_todo_ref_rec.cal_type;
644: rpt_load_ci_sequence_number:= lp_todo_ref_rec.ci_sequence_number;
645:
646: EXCEPTION
647: WHEN FND_API.G_EXC_ERROR THEN
648: ROLLBACK;
649: x_return_status := FND_API.G_RET_STS_ERROR;
650: RETURN;
651: WHEN OTHERS THEN

Line 649: x_return_status := FND_API.G_RET_STS_ERROR;

645:
646: EXCEPTION
647: WHEN FND_API.G_EXC_ERROR THEN
648: ROLLBACK;
649: x_return_status := FND_API.G_RET_STS_ERROR;
650: RETURN;
651: WHEN OTHERS THEN
652: x_return_status := FND_API.G_RET_STS_ERROR;
653: RETURN;

Line 652: x_return_status := FND_API.G_RET_STS_ERROR;

648: ROLLBACK;
649: x_return_status := FND_API.G_RET_STS_ERROR;
650: RETURN;
651: WHEN OTHERS THEN
652: x_return_status := FND_API.G_RET_STS_ERROR;
653: RETURN;
654: END;
655: END LOOP; -- End of the loop for the child record
656:

Line 663: x_return_status := fnd_api.g_ret_sts_error;

659: EXCEPTION
660: WHEN OTHERS THEN
661: ROLLBACK;
662: l_msg_data := 'IGS_GE_UNHANDLED_EXCEPTION';
663: x_return_status := fnd_api.g_ret_sts_error;
664: fnd_file.put_line(fnd_file.log,substr(sqlerrm,1,300));
665:
666: END finp_prc_fa_ref_todo; -- end of local procedure
667:

Line 738: RAISE fnd_api.g_exc_error;

734: p_ret_ci_sequence_number => l_n_load_ci_seq_num,
735: p_message_name => l_v_message) = FALSE THEN
736: fnd_message.set_name ('IGS', l_v_message);
737: igs_ge_msg_stack.add;
738: RAISE fnd_api.g_exc_error;
739: END IF;
740: ELSE
741: l_v_load_cal_type := NULL;
742: l_n_load_ci_seq_num := NULL;

Line 770: IF l_return_status = fnd_api.g_ret_sts_error THEN

766: WHEN OTHERS THEN
767: fnd_file.put_line(fnd_file.log,SUBSTR(SQLERRM,1,300));
768: END;
769:
770: IF l_return_status = fnd_api.g_ret_sts_error THEN
771: -- Bug# 2734512, Added following message handling
772: igs_ge_msg_stack.conc_exception_hndl;
773: IF (l_msg_data IS NULL) THEN
774: fnd_msg_pub.count_and_get( p_count => l_n_msg_count,