DBA Data[Home] [Help]

APPS.QA_SEQUENCE_API dependencies on FND_MSG_PUB

Line 492: fnd_msg_pub.initialize;

488: END IF;
489: */
490:
491: -- initialize fnd message table, this is used by self-service api
492: fnd_msg_pub.initialize;
493:
494: -- Pack all the sequence values in the data collection into plsql table
495: l_row_count := get_all_record_info(p_collection_id,null);
496:

Line 524: fnd_msg_pub.add();

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;
527:
528:

Line 2858: fnd_msg_pub.initialize;

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
2861: g_message_array.DELETE;
2862:

Line 2930: fnd_msg_pub.ADD();

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;
2933:
2934: -- Bug 5368983. Added for auditing sequence in OA Txn integ flows.