DBA Data[Home] [Help]

APPS.QA_SEQUENCE_API dependencies on FND_MSG_PUB

Line 522: fnd_msg_pub.initialize;

518: END IF;
519: */
520:
521: -- initialize fnd message table, this is used by self-service api
522: fnd_msg_pub.initialize;
523:
524: -- Pack all the sequence values in the data collection into plsql table
525: l_row_count := get_all_record_info(p_collection_id,null);
526:

Line 554: fnd_msg_pub.add();

550: EXCEPTION
551: WHEN OTHERS THEN
552: p_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
553: fnd_message.set_name('QA', 'QA_SEQ_GENERATION_ERROR');
554: fnd_msg_pub.add();
555:
556: END generate_seq_for_txn;
557:
558:

Line 2912: fnd_msg_pub.initialize;

2908:
2909: -- Initialize return status to success
2910: p_return_status := fnd_api.g_ret_sts_success;
2911: -- initialize fnd message table, this is used by self-service api
2912: fnd_msg_pub.initialize;
2913:
2914: -- flush off any unnecessary values from sequence message array
2915: g_message_array.DELETE;
2916:

Line 2984: fnd_msg_pub.ADD();

2980: EXCEPTION
2981: WHEN others THEN
2982: p_return_status := fnd_api.g_ret_sts_unexp_error;
2983: fnd_message.set_name('QA', 'QA_SEQ_GENERATION_ERROR');
2984: fnd_msg_pub.ADD();
2985:
2986: END generate_seq_for_txninteg;
2987:
2988: -- Bug 5368983. Added for auditing sequence in OA Txn integ flows.