DBA Data[Home] [Help]

APPS.IBY_PAYMENT_DOC_PUB_PKG dependencies on FND_MSG_PUB

Line 112: FND_MSG_PUB.initialize;

108: print_debuginfo(l_module_name, 'Void Date::'||p_void_date,G_LEVEL_STATEMENT);
109:
110: x_return_status := FND_API.G_RET_STS_SUCCESS;
111: /* Initializing Message Stack */
112: FND_MSG_PUB.initialize;
113:
114: BEGIN
115: select payment_instruction_id,
116: first_available_document_num,

Line 129: fnd_msg_pub.add;

125: EXCEPTION
126: WHEN NO_DATA_FOUND THEN
127:
128: fnd_message.set_name('IBY', 'IBY_INV_PMT_DOC');
129: fnd_msg_pub.add;
130:
131: print_debuginfo(l_module_name, 'Error:: Invalid Payment Document',G_LEVEL_STATEMENT);
132:
133: RAISE fnd_api.g_exc_error;

Line 146: fnd_msg_pub.add;

142:
143: if(l_pmt_instruction_id is NOT NULL) then
144: fnd_message.set_name('IBY', 'IBY_PMT_DOC_LOCKED');
145: fnd_message.set_Token('INSTR_ID', l_pmt_instruction_id);
146: fnd_msg_pub.add;
147:
148: print_debuginfo(l_module_name, 'Payment Document '||p_payment_document_id ||
149: 'is locked by Instruction -'||l_pmt_instruction_id,G_LEVEL_STATEMENT);
150:

Line 158: fnd_msg_pub.add;

154: if(p_from_doc_num 155: p_to_doc_num>l_last_avail_num) then
156:
157: fnd_message.set_name('IBY', 'IBY_INV_DOC_NUMS');
158: fnd_msg_pub.add;
159:
160: print_debuginfo(l_module_name, 'Provided document numbers are OUT OF RANGE',G_LEVEL_STATEMENT);
161:
162: RAISE fnd_api.g_exc_error;

Line 178: fnd_msg_pub.add;

174: and document_use in ('SPOILED', 'ISSUED', 'UNUSED_VOIDED', 'SETUP', 'VOID' , 'OVERFLOW', 'PRINTED'));
175:
176: if(l_used =1) then
177: fnd_message.set_name('IBY', 'IBY_PMT_DOC_NUM_USED');
178: fnd_msg_pub.add;
179:
180: print_debuginfo(l_module_name, 'USED DOCS: One or more document numbers are already used',G_LEVEL_STATEMENT);
181:
182: RAISE fnd_api.g_exc_error;

Line 210: fnd_msg_pub.add;

206:
207:
208: if(l_used =1) then
209: fnd_message.set_name('IBY', 'IBY_DOC_NUM_USED');
210: fnd_msg_pub.add;
211:
212: print_debuginfo(l_module_name, 'PMTS: One or more document numbers are already used',G_LEVEL_STATEMENT);
213:
214: RAISE fnd_api.g_exc_error;

Line 302: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,

298: x_return_status := fnd_api.g_ret_sts_error;
299:
300: print_debuginfo('Exception : ' || SQLERRM,G_LEVEL_STATEMENT);
301:
302: fnd_msg_pub.count_and_get(p_encoded => fnd_api.g_false,
303: p_count => x_msg_count,
304: p_data => x_msg_data);
305:
306: END void_pmt_doc_numbers;