DBA Data[Home] [Help]

APPS.QA_SEQUENCE_API dependencies on FND_API

Line 467: p_return_status := FND_API.G_RET_STS_SUCCESS;

463: -- CLOSE c;
464: -- END IF;
465:
466: -- Initialize return status to success
467: p_return_status := FND_API.G_RET_STS_SUCCESS;
468:
469: --
470: -- Bug 5228667
471: -- Commented out this check because although

Line 522: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

518: update_record(l_row_count);
519:
520: EXCEPTION
521: WHEN OTHERS THEN
522: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
523: fnd_message.set_name('QA', 'QA_SEQ_GENERATION_ERROR');
524: fnd_msg_pub.add();
525:
526: END generate_seq_for_txn;

Line 572: p_return_status := FND_API.G_RET_STS_SUCCESS;

568: -- CLOSE c;
569: -- END IF;
570:
571: -- Initialize return status to success
572: p_return_status := FND_API.G_RET_STS_SUCCESS;
573:
574: IF get_eres_profile() AND eres_resubmit(p_txn_header_id,null) THEN
575:
576: -- eRes is enabled and same records are resubmitted.

Line 607: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

603: EXCEPTION
604: WHEN OTHERS THEN
605: -- Bug 3160651. If any error happens, should return error
606:
607: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
608:
609: END generate_seq_for_DDE;
610:
611: FUNCTION get_all_record_info(p_collection_id NUMBER,

Line 2856: p_return_status := fnd_api.g_ret_sts_success;

2852: 'Generating sequence for collection_id = ' || p_collection_id);
2853: END IF;
2854:
2855: -- Initialize return status to success
2856: p_return_status := fnd_api.g_ret_sts_success;
2857: -- initialize fnd message table, this is used by self-service api
2858: fnd_msg_pub.initialize;
2859:
2860: -- flush off any unnecessary values from sequence message array

Line 2928: p_return_status := fnd_api.g_ret_sts_unexp_error;

2924: commit;
2925:
2926: EXCEPTION
2927: WHEN others THEN
2928: p_return_status := fnd_api.g_ret_sts_unexp_error;
2929: fnd_message.set_name('QA', 'QA_SEQ_GENERATION_ERROR');
2930: fnd_msg_pub.ADD();
2931:
2932: END generate_seq_for_txninteg;